/* Configurações Globais */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f7f4ec; /* Cor de fundo padrão (bege claro) */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Fonte similar a "Juana" */
}

/* Estilos das Seções */
section {
    padding: 60px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box; /* Garante que o padding não quebre o layout */
}

/* ==================================== */
/* Seção 1: Hero */
/* ==================================== */
.hero-section {
    color: #ffffff;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('background-1.png'); /* SEU FUNDO */
    background-size: cover;
    background-position: center;
    padding: 30px 5%;
    position: relative;
}

.hero-logo {
    width: 200px;
    height: auto;
    position: absolute;
    top: 30px;
    left: 5%;
}

.hero-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 80px;
}

.hero-content {
    max-width: 45%;
    text-align: left;
    padding-right: 30px;
    box-sizing: border-box;
}

.hero-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 2.0rem;
    line-height: 1.6;
}

.hero-photo-container {
    max-width: 53%;
    text-align: right;
}

.hero-photo {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* ==================================== */
/* Seção 4: Patrícia Russo */
/* ==================================== */
#patricia-section {
    color: #333;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f7f4ec;
    padding: 30px 5%;
    position: relative;
    /* Background em linha no HTML */
}

.patricia-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.patricia-content {
    max-width: 50%;
    text-align: left;
    padding-right: 30px;
    box-sizing: border-box;
}
#patricia-section h2 {
    font-size: 2.5rem;
    color: #a99269;
    margin-bottom: 20px;
}
#patricia-section p {
    font-size: 1.1rem;
    line-height: 1.7;
}
#patricia-section ul {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    text-align: left;
    display: block;
}
#patricia-section li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
#patricia-section li::before {
    content: '✓';
    color: #a99269;
    position: absolute;
    left: 0;
}

.patricia-photo-container {
    max-width: 48%;
    text-align: right;
}

.patricia-photo {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* ==================================== */
/* Seção 2: O que é (Centralizada) */
/* ==================================== */
.content-section {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}
.content-section h2 {
    font-size: 2.5rem;
    color: #1e592d;
    margin-bottom: 20px;
}
.content-section ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}
.content-section li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.content-section li::before {
    content: '✓';
    color: #a99269;
    position: absolute;
    left: 0;
}


/* ==================================== */
/* Seção 3: "Você se identifica?" */
/* ==================================== */
.features-section {
    color: #1e592d;
    background-color: #a99269;
    /* Background em linha no HTML */
}
.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #1e592d;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: Montserrat, sans-serif;
    width: 250px;
}
.feature-footer {
    font-size: 1.2rem;
    font-weight: bold;
}

/* ==================================== */
/* Seção 5: Depoimentos */
/* ==================================== */
.testimonials-section {
    background-color: #f7f4ec;
     /* Background em linha no HTML */
}
.testimonials-section h2 {
    font-size: 2.5rem;
    color: #f0dc99;
    margin-bottom: 40px;
}
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.testimonial {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.testimonial-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}
.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}
.testimonial strong {
    display: block;
    font-size: 1.1rem;
    color: #a99269;
}
.testimonial span {
    font-size: 0.9rem;
    color: #777;
}

/* ==================================== */
/* Seção 6: Rodapé */
/* ==================================== */
.footer-section {
    background-color: #f9e1b5;
    color: #1e592d;
     /* Background em linha no HTML */
}
.footer-section h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 20px 0;
}
.footer-section h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}
.footer-section p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 1.1rem;
}


/* ==================================== */
/* Botão do WhatsApp (BASE) */
/* ==================================== */
.btn-whatsapp {
    display: inline-block;
    color: #333; /* Cor de texto padrão */
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.btn-whatsapp:hover {
    transform: scale(1.00);
}

/* ==================================== */
/* CLASSES PARA TEXTURAS DOS BOTÕES */
/* ==================================== */

.btn-texture-hero {
    background-image: url('textura-hero.png');
    /* background-color removido */
    color: #1e592d;
}

.btn-texture-oquee {
    background-image: url('textura-oquee.png');
    /* background-color removido */
    color: #f9e1b5;
}

.btn-texture-patricia {
    background-image: url('textura-hero.png'); /* Usando textura-hero como exemplo */
    background-color: transparent; /* <-- ADICIONE ESTA LINHA */
    color: #1e592d;
}

.btn-texture-rodape {
    background-image: url('textura-oquee.png'); /* Usando textura-oquee como exemplo */
    /* background-color removido */
    color: #f9e1b5;
}

/* A classe .dark não é mais necessária para estilo */
.btn-whatsapp.dark {
   /* Estilos específicos para botões .dark, se houver, além da textura */
}

.feature-item {
    display: flex; /* Alinha imagem e texto */
    flex-direction: column; /* Imagem em cima, texto embaixo */
    align-items: center; /* Centraliza horizontalmente */
    text-align: center; /* Centraliza o texto */
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #1e592d; 
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: Montserrat, sans-serif;
    width: 250px;
    box-sizing: border-box; /* Garante padding correto */
}

.feature-icon {
    width: 237px; /* Largura do ícone */
    height: 104px; /* Altura do ícone */
    margin-bottom: 15px; /* Espaço entre o ícone e o texto */
    object-fit: contain; /* Garante que o ícone não estique */
}

/* ==================================== */
/* ---- AJUSTES PARA CELULAR ---- */
/* ==================================== */
@media (max-width: 768px) {

    /* Hero no Celular */
    .hero-logo {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto 30px auto;
        display: block;
    }
    .hero-main-container {
        flex-direction: column;
        margin-top: 0;
    }
    .hero-photo-container {
        max-width: 85%;
        margin-bottom: 30px;
        order: 2; /* <-- MUDANÇA AQUI: Foto aparece DEPOIS */
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
        order: 1; /* <-- MUDANÇA AQUI: Texto aparece PRIMEIRO */
        margin-bottom: 30px; /* Adiciona espaço abaixo do texto antes da foto */
    }

    /* Seção Patrícia no celular */
    .patricia-main-container {
        flex-direction: column;
        margin-top: 0;
    }
    .patricia-photo-container {
        max-width: 85%;
        margin-bottom: 30px;
        order: 1; /* Foto PRIMEIRO */
    }
    .patricia-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
        order: 2; /* Texto DEPOIS */
    }
    #patricia-section ul {
        display: inline-block;
    }

    /* Redução de fontes no celular */
    .hero-section h2 {
        font-size: 1.8rem; /* <-- MUDANÇA AQUI: Tamanho do H2 (menor) */
    }
    .hero-section p {
        font-size: 2.0rem; /* <-- MUDANÇA AQUI: Tamanho do P (maior) */
    }
    /* Mantém os outros títulos como estavam */
     #patricia-section h2 {
        font-size: 2rem; 
    }
     #patricia-section p {
        font-size: 1.1rem; 
    }
    .content-section h2, .features-section h2, .testimonials-section h2, .footer-section h2 {
        font-size: 2rem;
    }
}