/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: black;
}

/* Header e Navegação */
header {
    background-color: black;
    box-shadow: 0 2px 5px rgba(224,190,82,0.1);
    padding: 1rem 0;
    border-bottom: 1px solid rgb(224,190,82);
}

nav {
    padding: 1rem;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.2s;
}

nav a:hover {
    background-color: rgba(224,190,82,0.1);
    color: rgb(224,190,82);
}

nav a.active {
    background-color: rgb(224,190,82);
    color: black;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    background-color: black;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

/* Cards de Gatos */
.gatos-grid, .matrizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
    background-color: black;
}

.gato-card, .matriz-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(224,190,82,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(224,190,82,0.2);
}

.gato-card:hover, .matriz-card:hover {
    transform: translateY(-5px);
}

.gato-card img, .matriz-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gato-card h2, .matriz-card h2 {
    padding: 1rem;
    font-size: 1.2rem;
    color: white;
}

.gato-card p, .matriz-card p {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.matriz-info {
    padding: 1rem;
    background-color: #1a1a1a;
    margin-top: 1rem;
    color: white;
}

.btn-interesse {
    display: block;
    background-color: rgb(224,190,82);
    color: white;
    text-align: center;
    padding: 0.8rem;
    text-decoration: none;
    margin: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-interesse:hover {
    background-color: rgb(201,171,74);
}

/* Formulário de Contato */
.form-contato {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-enviar {
    background-color: rgb(224,190,82);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-enviar:hover {
    background-color: rgb(201,171,74);
}

/* Seção Sobre */
.sobre {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: black;
    color: white;
    margin-top: 3rem;
    border-top: 1px solid rgb(224,190,82);
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: fixed;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: black;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 90;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        font-size: 1.2rem;
    }

    /* Animação do menu hambúrguer */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Ajuste do logo em mobile */
    .logo-container {
        padding: 0.5rem 1rem;
    }

    .logo-container img {
        max-height: 60px;
    }

    .gatos-grid, .matrizes-grid {
        grid-template-columns: 1fr;
    }

    .form-contato {
        padding: 1rem;
    }
}

/* Cards de Gatos */
.caracteristicas-gato {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.caracteristica-bloco {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.caracteristica-bloco i {
    color: rgb(224,190,82);
    font-size: 1rem;
}

/* Página de Detalhes do Gato */
#detalhes-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.gato-detalhes-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.gato-foto-container {
    position: relative;
    height: 100%;
}

.gato-foto-grande {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.detalhes-content {
    padding: 2rem;
}

.descricao-gato {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: #666;
}

.detalhes-lista {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.detalhes-lista li {
    margin-bottom: 0.5rem;
    color: #555;
}

.pais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.acoes-container {
    text-align: center;
    margin: 1rem 0;
}

#pais-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#pais-container h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.matriz-card h3 {
    background-color: rgb(224,190,82);
    color: white;
    padding: 0.5rem;
    text-align: center;
    margin: 0;
}

.gato-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gato-link:hover {
    opacity: 0.9;
}

.gato-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: fixed;
    right: 1rem;
    top: 1.5rem;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: rgb(224,190,82);
    transition: all 0.3s ease;
}

/* Animação do menu hambúrguer */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Ajuste do logo em mobile */
.logo-container {
    padding: 0.5rem 1rem;
}

.logo-container img {
    max-height: 60px;
} 