/* Variáveis de Cores e Fontes */
:root {
    --color-ivory: #FAF5EF;
    --color-terracotta: #A55651;
    --color-terracotta-dark: #7A3E3A;
    --color-nude-rosado: #DDB8B4;
    --color-espresso: #2E2622;
    --font-headline: 'Fraunces', serif;
    --font-body: 'Jost', sans-serif;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #111; /* Cor de fundo caso a imagem demore a carregar */
    color: var(--color-ivory);
}

/* Header (Navegação) */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 5%;
    z-index: 100;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .header {
        justify-content: flex-start;
        padding: 32px 10%;
    }
}

.logo {
    height: 160px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo {
        height: 128px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 40px 5%;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4), 0 12px 24px -8px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 10%;
        align-items: center;
    }
}

/* Carrossel de Fundo */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
    transform: scale(1);
    will-change: transform, opacity;
}

@media (max-width: 767px) {
    .carousel-slide {
        background-position: 50% 30%; /* Foco na parte superior (rostos) em telas menores */
    }
    .desktop-slide {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mobile-slide {
        display: none !important;
    }
}

/* Slide Ativo */
.carousel-slide.active {
    opacity: 1;
    transform: scale(1.08); /* Efeito Ken Burns sutil */
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Gradiente escuro de baixo pra cima + terracota semi-transparente ~30% */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    ),
    rgba(122, 62, 58, 0.3); /* #7A3E3A em ~30% */
}

/* Conteúdo do Hero */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        align-items: flex-start;
        text-align: left;
    }
}

.hero-text {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-text {
        gap: 32px;
        align-items: flex-start;
    }
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-ivory);
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 4rem;
    }
}

.hero-subheadline {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-ivory);
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 1.25rem;
    }
}

.hero-bottom-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.hero-cta {
    display: inline-block;
    background-color: var(--color-terracotta);
    color: var(--color-ivory);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: var(--color-terracotta-dark);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 24px;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .stat-item {
        gap: 12px;
    }
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--color-ivory);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 5rem;
    }
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #C08A86;
    line-height: 1.2;
    text-align: left;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 1rem;
    }
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(192, 138, 134, 0.4);
}

@media (min-width: 768px) {
    .stat-divider {
        height: 80px;
    }
}

/* Acessibilidade: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .carousel-slide {
        transition: none !important;
        transform: scale(1) !important;
    }
    .fade-in {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Seção Validação */
.validacao {
    background-color: #FDF6F3;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.validacao::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background-image: url('assets/Simbolo_Andrea.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .validacao {
        padding: 140px 10%;
    }
}

.validacao-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.validacao-title {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-espresso);
    text-align: center;
    max-width: 800px;
}

@media (min-width: 768px) {
    .validacao-title {
        font-size: 2.5rem;
    }
}

.validacao-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

@media (min-width: 992px) {
    .validacao-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        align-items: start;
    }
    .card-offset {
        transform: translateY(-24px);
    }
}

.validacao-card {
    background-color: rgba(250, 245, 239, 0.5); /* #FAF5EF com 50% de opacidade */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(192, 138, 134, 0.3); /* Terracota suave 30% */
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 12px 32px -12px rgba(122, 62, 58, 0.12);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease-out, background-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .validacao-card {
        background-color: rgba(250, 245, 239, 0.15); /* Mais transparente no mobile */
        backdrop-filter: blur(4px); /* Menos blur para ver a foto */
        -webkit-backdrop-filter: blur(4px);
    }
}

.validacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-nude-rosado));
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media (min-width: 992px) {
    .validacao-card:hover {
        background-color: var(--color-ivory);
        transform: translateY(-8px);
        box-shadow: 0 24px 48px -12px rgba(122, 62, 58, 0.18), 0 0 24px 0 rgba(192, 138, 134, 0.1);
        border-color: rgba(192, 138, 134, 0.5); /* 50% opacidade */
    }
    
    .validacao-card:hover::before {
        opacity: 1;
    }
    
    .validacao-card.card-offset:hover {
        transform: translateY(-32px);
    }
}

.card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(221, 184, 180, 0.3); /* Nude rosado at 30% */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    transition: background-color 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.validacao-card:hover .card-icon {
    background-color: rgba(192, 138, 134, 0.25); /* Terracota suave at 25% */
    transform: scale(1.08);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-espresso);
    line-height: 1.2;
}

.card-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(46, 38, 34, 0.8);
}

.validacao-closing {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-terracotta);
    text-align: center;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .validacao-closing {
        font-size: 2.25rem;
    }
}

/* Animações de Scroll Reveal com scale */
.fade-in-scale {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.validacao-title.fade-in-scale { transition-delay: 0s; }
.validacao-grid .validacao-card:nth-child(1) { transition-delay: 0.12s; }
.validacao-grid .validacao-card:nth-child(2) { transition-delay: 0.24s; }
.validacao-grid .validacao-card:nth-child(3) { transition-delay: 0.36s; }
.validacao-closing.fade-in-scale { transition-delay: 0.6s; }

@media (min-width: 992px) {
    .card-offset.fade-in-scale.visible {
        transform: translateY(-24px) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-scale {
        transition: opacity 0.5s ease !important;
        transition-delay: 0s !important;
    }
    
    .fade-in-scale {
        transform: translateY(0) scale(1) !important;
    }
    
    @media (min-width: 992px) {
        .card-offset.fade-in-scale,
        .validacao-card.card-offset:hover {
            transform: translateY(-24px) scale(1) !important;
        }
    }
    
    .validacao-card:hover {
        transform: none !important;
    }
}

/* Seção Sobre a Doula - Efeito Scroll Imagem Crescente */
.sobre-doula-wrapper {
    position: relative;
    width: 100%;
    /* Altura maior para permitir rolagem e engatilhar a animação sticky */
    height: 250vh; 
    background-color: var(--color-terracotta); /* #A55651 */
    z-index: 10;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.15), 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sobre-doula-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-terracotta); /* #A55651 */
    color: #FDF6F3;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.whatsapp-fab.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.whatsapp-fab:hover {
    background-color: #20BA5A;
    transform: translateY(-4px) scale(1.05);
}

.whatsapp-fab svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 767px) {
    .whatsapp-fab {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-fab svg {
        width: 28px;
        height: 28px;
    }
}

.doula-bg-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Variável atualizada via JS com base no scroll */
    --clip-radius: 60px; 
    clip-path: circle(var(--clip-radius) at 32% 22%);
    will-change: clip-path;
}

@media (max-width: 767px) {
    .doula-bg-photo {
        clip-path: circle(var(--clip-radius) at 32% 22%);
        object-position: 40% center; /* Puxa a foto para a direita */
    }
}

.doula-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(165, 86, 65, 0.5); /* Terracota com 50% de opacidade */
    z-index: 2;
    clip-path: circle(var(--clip-radius) at 32% 22%);
    will-change: clip-path;
}

@media (max-width: 767px) {
    .doula-bg-overlay {
        clip-path: circle(var(--clip-radius) at 32% 22%);
    }
}

.sobre-doula-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sobre-doula-title {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: #FDF6F3;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .sobre-doula-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .sobre-doula-title {
        font-size: 3rem;
    }
}

.sobre-doula-intro {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(253, 246, 243, 0.9);
    text-align: center;
    max-width: 650px;
    margin-bottom: 64px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 767px) {
    .sobre-doula-intro {
        font-size: 1rem;
        margin-bottom: 48px;
        line-height: 1.4;
    }
}

.sobre-doula-pilares {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (min-width: 992px) {
    .sobre-doula-pilares {
        width: 100%;
        margin-left: 0;
        padding: 0;
        overflow-x: visible;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
}

.pilar-bloco {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    max-width: 350px;
}

.pilar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pilar-num {
    position: absolute;
    top: -30px;
    left: 50%;
    font-family: var(--font-headline);
    font-size: 5rem;
    color: #FDF6F3;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

@media (min-width: 768px) {
    .pilar-num {
        font-size: 7rem;
        top: -50px;
    }
}

/* Animação específica pro número */
.fade-in-num {
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.fade-in-num.visible {
    opacity: 0.25;
    transform: translate(-50%, 0);
}

@media (min-width: 768px) {
    .fade-in-num.visible {
        opacity: 0.15;
    }
}

.pilar-icon {
    width: 48px;
    height: 48px;
    color: #FDF6F3;
    margin-bottom: 24px;
}

.pilar-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pilar-title {
    font-family: var(--font-headline);
    font-weight: 500;
    font-size: 1.5rem;
    color: #FDF6F3;
    margin-bottom: 12px;
}

.pilar-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(253, 246, 243, 0.9);
}

.pilar-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(253, 246, 243, 0.3);
    margin: 48px 0;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 767px) {
    .pilar-num {
        font-size: 3.5rem;
        top: -15px;
    }
    .pilar-icon {
        margin-bottom: 8px;
        width: 32px;
        height: 32px;
    }
    .pilar-title {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }
    .pilar-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    .pilar-divider {
        margin: 32px 0;
    }
}

@media (min-width: 992px) {
    .pilar-divider {
        width: 1px;
        height: auto;
        min-height: 120px;
        margin: 0 24px;
        align-self: stretch;
    }
}

/* Hover effects for Desktop */
@media (min-width: 992px) {
    .pilar-bloco:hover + .pilar-divider,
    .pilar-divider:has(+ .pilar-bloco:hover) {
        background-color: rgba(253, 246, 243, 0.8);
        box-shadow: 0 0 12px rgba(253, 246, 243, 0.5);
    }
    
    .pilar-bloco:hover .pilar-icon svg {
        transform: scale(1.1) rotate(3deg);
    }
    
    .pilar-bloco:hover .fade-in-num.visible {
        opacity: 0.3;
        transition: opacity 0.4s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pilar-icon svg {
        transition: none !important;
    }
    .pilar-bloco:hover .pilar-icon svg {
        transform: none !important;
    }
    .fade-in-num {
        transition: opacity 0.5s ease !important;
        transform: translate(-50%, 0) !important;
    }
}

/* Frase de Destaque */
.highlight-quote {
    background-color: var(--color-terracotta);
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.highlight-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 40%),
                      radial-gradient(circle at bottom left, rgba(255,255,255,0.05) 0%, transparent 30%);
    pointer-events: none;
}

.quote-container {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.quote-icon {
    width: 48px;
    height: 48px;
    color: rgba(250, 245, 239, 0.3); /* ivory with low opacity */
    transform: rotate(180deg);
}

.quote-text {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-ivory);
    text-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .highlight-quote {
        padding: 120px 10%;
    }
    
    .quote-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 8px;
    }

    .quote-text {
        font-size: 2.75rem;
    }
}

@media (min-width: 992px) {
    .quote-text {
        font-size: 3.25rem;
        line-height: 1.3;
    }
}

/* Seção Conheça a Andrea */
.conheca {
    background-color: var(--color-ivory);
    padding: 100px 5%;
    position: relative;
    z-index: 5;
}

.conheca-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.conheca-fotos {
    width: 100%;
    position: relative;
    gap: 0;
}

.conheca-fotos::after {
    content: '';
    display: block;
    height: 60vh;
}

.foto-sticky {
    position: sticky;
    transition: filter 0.3s ease;
    width: 100%;
}

.foto-frame {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(46, 38, 34, 0.2);
    background-color: #FFFFFF;
    border: 12px solid #FFFFFF;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.foto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* Rotações base (mobile) */
.frame-1 { transform: rotate(-2deg); }
.frame-2 { transform: rotate(3deg); }
.frame-3 { transform: rotate(-1.5deg); }

.foto-1 {
    top: 15vh;
    height: calc(60vh + 30px);
    z-index: 1;
}

.foto-2 {
    top: calc(15vh + 15px);
    height: calc(60vh + 15px);
    margin-top: 60vh;
    z-index: 2;
}

.foto-3 {
    top: calc(15vh + 30px);
    height: 60vh;
    margin-top: 60vh;
    z-index: 3;
}

.conheca-texto-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.conheca-title {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-espresso);
    margin-bottom: 32px;
    line-height: 1.2;
}

.conheca-bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(46, 38, 34, 0.85);
    margin-bottom: 40px;
}

.conheca-bio p {
    margin: 0;
}

.conheca-bio strong {
    font-weight: 500;
    color: var(--color-terracotta);
    font-size: 1.25rem;
}

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

@media (min-width: 992px) {
    .conheca {
        padding: 140px 10% 350px; /* Padding extra para absorver o texto longo fixo sem sobrepor a próxima seção */
    }

    .conheca-container {
        flex-direction: row;
        align-items: flex-start;
        gap: 80px;
    }
    
    .conheca-fotos {
        flex: 1;
    }
    
    .foto-1 {
        top: 25vh;
        height: calc(60vh + 60px);
    }
    
    .foto-2 {
        top: calc(25vh + 30px);
        height: calc(60vh + 30px);
    }
    
    .foto-3 {
        top: calc(25vh + 60px);
    }

    /* Rotações estilo "jogadas" (desktop) */
    .frame-1 {
        transform: rotate(-4deg) translateX(-10px);
    }
    
    .frame-2 {
        transform: rotate(5deg) translateX(15px) translateY(10px);
    }
    
    .frame-3 {
        transform: rotate(-3deg) translateX(-5px) translateY(20px);
    }
    
    /* Efeito de interatividade ao passar o mouse */
    .foto-sticky:hover .foto-frame {
        transform: scale(1.03) rotate(0deg);
        box-shadow: 0 32px 64px -12px rgba(46, 38, 34, 0.4);
        z-index: 10;
    }
    
    .conheca-texto-container {
        flex: 1;
        position: sticky;
        top: 25vh;
        height: calc(60vh + 60px); /* Alinhado ao final da última foto */
        padding-bottom: 0;
    }

    .conheca-title {
        font-size: 2.25rem;
    }
    
    .conheca-bio {
        font-size: 1.25rem;
    }
}

/* Seção Como Funciona */
.como-funciona {
    background-color: #FDF6F3; /* Rosé empoeirado bem diluído */
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background Orbs para profundidade */
.como-funciona-bg-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(165, 86, 65, 0.2); /* Terracota mais visível e espalhado */
    top: 10%;
    left: 20%;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: rgba(221, 184, 180, 0.4); /* Nude rosado forte */
    bottom: 10%;
    right: 20%;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

@media (min-width: 768px) {
    .como-funciona {
        padding: 140px 10%;
    }
}

.como-funciona-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.como-funciona-title {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-espresso);
    text-align: center;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .como-funciona-title {
        font-size: 2.5rem;
        margin-bottom: 120px;
    }
}

.timeline-wrapper {
    width: 100%;
    position: relative;
}

.timeline-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 40px;
    column-gap: 24px;
    position: relative;
}

.timeline-svg {
    position: relative;
    z-index: 0;
}

.desktop-svg { display: none; }

.mobile-svg { 
    display: block; 
    grid-column: 1;
    grid-row: 1 / -1;
    width: 2px;
    height: 100%;
    justify-self: center;
}

.timeline-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.1s linear;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-ring {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-terracotta);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease;
}

.marker-circle {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-terracotta);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease, box-shadow 0.4s ease;
    transform: scale(0.5);
    opacity: 0.3;
}

.timeline-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.15); /* Mais transparente para deixar o fundo vazar */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(165, 86, 65, 0.1), inset 0 0 0 1px rgba(255,255,255,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(165, 86, 65, 0.08);
}

.timeline-step-num {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-terracotta);
    margin-bottom: 12px;
    background: rgba(165, 86, 65, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.timeline-step-title {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-espresso);
    margin-bottom: 12px;
}

.timeline-step-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(46, 38, 34, 0.85);
}

/* Placements no Grid Mobile */
.step-1-marker { grid-column: 1; grid-row: 1; }
.step-1-content { grid-column: 2; grid-row: 1; align-self: center; }

.step-2-marker { grid-column: 1; grid-row: 2; }
.step-2-content { grid-column: 2; grid-row: 2; align-self: center; }

.step-3-marker { grid-column: 1; grid-row: 3; }
.step-3-content { grid-column: 2; grid-row: 3; align-self: center; }

/* Desktop Grid */
@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr auto 1fr;
        row-gap: 0;
        column-gap: 32px;
        align-items: center;
        justify-items: center;
    }

    .mobile-svg { display: none; }
    
    .desktop-svg {
        display: block;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: 2px;
        align-self: center;
    }

    .timeline-card {
        padding: 32px 24px;
    }

    .step-1-marker { grid-column: 1; grid-row: 2; }
    .step-1-content { grid-column: 1; grid-row: 1; align-self: end; padding-bottom: 40px; max-width: 340px; }

    .step-2-marker { grid-column: 2; grid-row: 2; }
    .step-2-content { grid-column: 2; grid-row: 3; align-self: start; padding-top: 40px; max-width: 340px; }

    .step-3-marker { grid-column: 3; grid-row: 2; }
    .step-3-content { grid-column: 3; grid-row: 1; align-self: end; padding-bottom: 40px; max-width: 340px; }
}

/* Estados ativos acionados por JS */
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.timeline-marker.active .marker-ring {
    animation: pulseRing 2s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}
.timeline-marker.active .marker-circle {
    transform: scale(1.2);
    opacity: 1;
    background-color: var(--color-terracotta);
    box-shadow: 0 0 20px rgba(165, 86, 65, 0.6);
}
.timeline-content.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .orb { animation: none !important; }
    .timeline-path {
        stroke-dashoffset: 0 !important;
        transition: none !important;
    }
    .marker-circle, .marker-ring, .timeline-content, .timeline-card {
        transition: opacity 0.5s ease !important;
        transform: none !important;
    }
    .marker-ring { transform: scale(1.5) !important; }
}

/* Seção Depoimentos */
.depoimentos {
    background-color: var(--color-nude-rosado); /* Quebrando a sequência de cores claras */
    padding: 100px 5% 120px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    box-shadow: 0 -20px 50px rgba(46, 38, 34, 0.15), 0 20px 50px rgba(46, 38, 34, 0.15); /* Sombreado em cima e embaixo */
}

.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.depoimentos-title {
    font-size: 2.5rem;
    font-family: var(--font-headline);
    color: var(--color-espresso);
    text-align: center;
}

@media (min-width: 768px) {
    .depoimentos-title {
        font-size: 3.5rem;
    }
}

.depoimentos-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 60px 20px;
    /* Esconde barra de rolagem mas permite o scroll */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.depoimentos-carousel::-webkit-scrollbar {
    display: none;
}

.depoimento-card {
    flex: 0 0 90%;
    max-width: 700px;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .depoimento-card {
        flex: 0 0 70%;
    }
}

@media (min-width: 992px) {
    .depoimento-card {
        flex: 0 0 48%; /* Máximo de dois por tela */
    }
}

/* Estilo Cartão Mural */
.polaroid {
    background-color: #FFFFFF;
    padding: 32px 24px;
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(46, 38, 34, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

@media (min-width: 768px) {
    .polaroid {
        align-items: center;
        padding: 40px 32px;
    }
}

/* Durex / Fita simulada */
.polaroid::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 60px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.polaroid:hover {
    transform: scale(1.05) rotate(0deg) translateY(-10px) !important;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(46, 38, 34, 0.25);
}

.polaroid-img-wrapper {
    width: 140px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0;
    /* Mini polaroid colada no cartão */
    border: 6px solid #FFFFFF;
    border-bottom: 20px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: rotate(-3deg);
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.1) contrast(1.05); /* Toque nostálgico sutil */
}

.polaroid-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
    width: 100%;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-espresso);
    font-style: italic;
    opacity: 0.9;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.depoimento-texto.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.btn-leia-mais {
    background: none;
    border: none;
    color: var(--color-terracotta);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    margin-top: -8px;
    text-align: left;
    align-self: flex-start;
    transition: opacity 0.3s ease;
}

.btn-leia-mais:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.depoimento-nome {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    color: var(--color-terracotta);
    text-align: right;
    margin-top: auto;
}

/* Rotações alternadas simulando quadro de avisos */
.polaroid-1 { transform: rotate(-3deg); }
.polaroid-2 { transform: rotate(2deg) translateY(10px); }
.polaroid-3 { transform: rotate(-2deg) translateY(-5px); }
.polaroid-4 { transform: rotate(4deg) translateY(15px); }

/* Seção Perguntas Frequentes (FAQ) */
.faq {
    background-color: #FDF6F3;
    padding: 100px 5% 120px;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-title {
    font-size: 2.5rem;
    font-family: var(--font-headline);
    color: var(--color-espresso);
    text-align: center;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 3.5rem;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid rgba(46, 38, 34, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-espresso);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.25rem;
    }
}

.faq-question:hover {
    color: var(--color-terracotta);
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--color-terracotta);
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Transforma o + em x */
}

.faq-item.active .faq-question {
    color: var(--color-terracotta);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-content {
    padding-bottom: 32px;
}

.faq-answer-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(46, 38, 34, 0.85);
    margin: 0;
}

@media (min-width: 768px) {
    .faq-answer-content p {
        font-size: 1.125rem;
    }
}

/* Footer */
.footer {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    padding: 80px 5% 40px;
    font-family: var(--font-body);
    position: relative;
    z-index: 10;
    box-shadow: 0 -20px 50px rgba(46, 38, 34, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-logo-col {
    max-width: 400px;
}

.footer-logo {
    max-width: 240px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1); /* makes the logo white */
}

.footer-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-heading {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
