/* ============================================
   BASE (reset, header, menu de 3 pontinhos, botão do WhatsApp)
   Esse bloco é repetido em todos os CSS de página,
   como pedido — não há um CSS principal compartilhado.
   ============================================ */
:root {
    --rose: #cf9d92;
    --rose-light: #e3bcb2;
    --sage: #8b957f;
    --sage-light: #a7b096;
    --bg: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: #fff;
    overflow-x: hidden;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

.header-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.icon-link {
    color: #fff;
    display: flex;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.icon-link:hover {
    opacity: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    opacity: 0.8;
    padding-bottom: 4px;
    transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active-link {
    color: var(--rose-light);
    opacity: 1;
}

.nav-links a.active-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--rose);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* Responsivo: cabeçalho e botão flutuante em telas pequenas */
@media (max-width: 480px) {
    header {
        padding: 16px 18px;
    }

    .logo {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .header-right {
        gap: 10px;
    }

    .icon-link svg {
        width: 18px;
        height: 18px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 0.68rem;
        letter-spacing: 0.4px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Breakpoint intermediário (tablets e telas médias) para o header
   nao pular direto do tamanho desktop para o mobile */
@media (max-width: 900px) {
    header {
        padding: 18px 28px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    header {
        padding: 16px 20px;
    }

    .logo {
        font-size: 17px;
    }

    .header-right {
        gap: 14px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.72rem;
        letter-spacing: 0.6px;
    }
}

/* Telas muito pequenas (celulares antigos/estreitos) */
@media (max-width: 360px) {
    header {
        padding: 14px 14px;
    }

    .logo {
        font-size: 13px;
    }

    .header-right {
        gap: 8px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }

    .icon-link svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   BOTÕES (compartilhados: agenda / secundário)
   ============================================ */
.btn-agenda,
.btn-secundario {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.btn-agenda {
    background-color: #fff;
    color: #000;
}

.btn-agenda:hover {
    background-color: transparent;
    color: #fff;
}

.btn-secundario {
    color: #fff;
    background: transparent;
}

.btn-secundario:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 480px) {
    .btn-agenda,
    .btn-secundario {
        padding: 14px 24px;
        font-size: 0.92rem;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Animação de entrada (fade + slide, leve)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   SOBRE — Banner
   ============================================ */
.sobre-hero {
    position: relative;
    min-height: 56vh;
    min-height: 56svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center top; /* MUDANÇA CHAVE AQUI */
    padding: 160px 30px 90px;
}

.sobre-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 45%, rgba(10,10,10,0.95) 100%),
        radial-gradient(120% 90% at 50% 20%, rgba(0,0,0,0.15), rgba(0,0,0,0.65));
}

.sobre-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.sobre-hero-content .kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose-light);
    margin-bottom: 16px;
}

.sobre-hero-content h1 {
    font-size: clamp(1.7rem, 5vw + 0.6rem, 2.6rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.sobre-hero-content p {
    font-size: clamp(0.95rem, 2vw + 0.5rem, 1.15rem);
    opacity: 0.9;
}

/* ============================================
   SOBRE — Perfis (Luiza / Davi)
   ============================================ */
.perfis-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.perfil {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
}

.perfil-invertido {
    grid-template-columns: 1fr 320px;
}

.perfil-invertido .perfil-foto {
    order: 2;
}

.perfil-foto {
    position: relative;
    border-radius: 14px;
    padding: 10px;
    background: linear-gradient(150deg, var(--rose) 0%, rgba(255,255,255,0.06) 35%, var(--sage) 100%);
}

.perfil-foto::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    z-index: 0;
}

.perfil-foto img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top; /* <--- AQUI ESTÁ A CORREÇÃO */
    border-radius: 9px;
    display: block;
    box-shadow: 0 20px 45px rgba(0,0,0,0.55);
    transition: transform 0.6s ease;
}

.perfil-foto:hover img {
    transform: scale(1.035);
}

.perfil-texto h2 {
    font-size: clamp(1.4rem, 3vw + 0.6rem, 1.8rem);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.perfil-cargo {
    display: inline-block;
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rose-light);
    border: 1px solid rgba(207, 157, 146, 0.5);
    background: rgba(207, 157, 146, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.perfil-texto p:not(.perfil-cargo) {
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 750px) {
    .perfis-section {
        padding: 70px 25px;
        gap: 64px;
    }

    .perfil,
    .perfil-invertido {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .perfil-foto,
    .perfil-invertido .perfil-foto {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
    }

    .perfil-texto {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   SOBRE — Tagline e FAQ
   ============================================ */
.tagline-section {
    position: relative;
    padding: 70px 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.tagline-section::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--rose);
    opacity: 0.4;
    line-height: 1;
}

.tagline-section p {
    font-size: clamp(1.1rem, 2.5vw + 0.6rem, 1.4rem);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 30px 140px;
    text-align: center;
}

.faq-section h2 {
    font-size: clamp(1.6rem, 3.5vw + 0.6rem, 2.2rem);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    margin-bottom: 50px;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 18px 24px;
    transition: border-color 0.3s, background 0.3s;
}

.faq-item[open] {
    border-color: rgba(207, 157, 146, 0.45);
    background: rgba(207, 157, 146, 0.06);
}

.faq-item summary {
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: normal;
    margin-left: 20px;
    color: var(--rose-light);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 16px;
    line-height: 1.6;
    opacity: 0.85;
}

.faq-cta {
    display: inline-block;
}

@media (max-width: 600px) {
    .sobre-hero {
        padding: 130px 20px 60px;
    }

    .perfis-section,
    .faq-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-section {
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .faq-item {
        padding: 14px 18px;
    }

    .tagline-section {
        padding: 55px 22px;
    }
}
