html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   1. VARIÁVEIS DE DESIGN & PALETA DE CORES (HARMONIA MAGENTA/VINHO)
   ========================================================================== */
:root {
    /* Cores Principais (Baseadas no tom do top/shorts da Sabrina) */
    --primary-magenta: #9C1D59;
    --primary-hover: #7E1345;
    --magenta-light: #FDE8F1;
    --magenta-glow: rgba(156, 29, 89, 0.15);
	--primary-green: #2F675A;
    --green-hover: #224E44;
    --green-glow: rgba(47, 103, 90, 0.25);
    
    /* Cores Neutras & Apoio */
    --bg-page: #FAFAF8;
    --bg-card: #FFFFFF;
    --text-dark: #1F2421;
    --text-muted: #5A6572;
    --border-color: #E2E8F0;
    
    /* Destaques de Status */
    --success-green: #2E7D32;
    --success-bg: #E8F5E9;
    --danger-red: #C62828;
    --danger-bg: #FFEBEE;
    
    /* Tipografia */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Efeitos */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 20px rgba(156, 29, 89, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   ANIMAÇÃO DOS BADGES FLUTUANTES
   ========================================================================== */

/* Aplica a animação de flutuação aos cards */
.floating-badge {
    animation: floatBadge 4s ease-in-out infinite;
}

/* Desfasa o tempo do segundo badge para que flutuem de forma desencontrada (mais natural) */
.badge-bottom {
    animation-delay: 2s;
}

/* Movimento suave subindo e descendo */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   2. RESET & ESTILOS BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 600;
}

p {
    color: var(--text-muted);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.text-container {
    max-width: 760px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
}

.highlight-magenta {
    color: var(--primary-magenta);
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   3. BOTÕES E COMPONENTES DE AÇÃO
   ========================================================================== */
.btn-primary {
    display: inline-block;
	background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-hover) 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 25px var(--green-glow);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 25px var(--magenta-glow);
    transition: var(--transition);
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-magenta) 0%, var(--primary-magenta) 100%);
    box-shadow: 0 12px 30px rgba(47, 103, 90, 0.35);
}

.btn-hero {
    width: 100%;
    max-width: 420px;
}

.btn-large {
    font-size: 1.25rem;
    padding: 20px 48px;
    width: 100%;
    max-width: 480px;
}

/* ==========================================================================
   4. HEADER & HERO SECTION
   ========================================================================== */
/* Fundo 100% branco para o topo */
.site-header {
    background: linear-gradient(180deg, var(--magenta-light) 25%, transparent 70%);
    padding-bottom: 60px;
}

/* Botão padrão: Preenchido com a cor roxa/magenta */
.nav-cta-btn {
    background: var(--primary-magenta);
    border: 2px solid var(--primary-magenta);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

/* Hover: Fundo transparente mantendo a borda e o texto roxos */
.nav-cta-btn:hover {
    background: transparent;
    color: var(--primary-magenta);
}

.top-nav {
    padding: 20px 0;
    border-bottom: 1px solid rgba(156, 29, 89, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--primary-magenta);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-cta-btn {
    background: transparent;
    border: 2px solid var(--primary-magenta);
    color: var(--primary-magenta);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: var(--primary-magenta);
    color: #FFF;
}

.hero-section {
    padding-top: 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--magenta-light);
    color: var(--primary-magenta);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-magenta);
    border-radius: 50%;
    display: inline-block;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-highlights {
    margin-bottom: 30px;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.check-icon {
    color: var(--primary-magenta);
    font-weight: bold;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Card de Imagem da Sabrina */
.hero-image-card {
    position: relative;
    background: radial-gradient(circle, var(--magenta-light) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-img {
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--magenta-light);
}

.badge-top {
    top: 10%;
    left: -20px;
}

.badge-bottom {
    bottom: 8%;
    right: -20px;
}

.badge-icon {
    font-size: 1.4rem;
}

.badge-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   5. O ESPELHO & A SOLUÇÃO
   ========================================================================== */
.mirror-section {
    background-color: #FFFFFF;
}

.mirror-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.pain-points {
    margin: 30px 0;
}

.pain-points li {
    background-color: var(--bg-page);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-magenta);
    color: var(--text-muted);
}

.pain-points strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-magenta);
    line-height: 1.5;
}

.solution-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--magenta-light) 100%);
}

.eyebrow {
    color: var(--primary-magenta);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.solution-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   6. FILTRO DE QUALIFICAÇÃO
   ========================================================================== */
.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.filter-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.filter-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.filter-card.is-for {
    border-top: 5px solid var(--success-green);
}

.filter-card.not-for {
    border-top: 5px solid var(--danger-red);
}

.filter-card ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.filter-card ul li strong {
    color: var(--text-dark);
}

.icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.icon.check {
    background-color: var(--success-bg);
    color: var(--success-green);
}

.icon.cross {
    background-color: var(--danger-bg);
    color: var(--danger-red);
}

/* ==========================================================================
   7. GRID 2X2 - TUDO O QUE VAI RECEBER
   ========================================================================== */
.journey-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.journey-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-magenta);
    box-shadow: var(--shadow-card);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-magenta);
    background-color: var(--magenta-light);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.bonus-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    background-color: var(--primary-magenta);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.journey-card h3 {
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
}

.journey-card p {
    font-size: 0.95rem;
}

/* ==========================================================================
   8. AUTORIDADE & PROVA SOCIAL (FOTOS RESPONSIVAS)
   ========================================================================== */
.authority-section {
    background: radial-gradient(circle, var(--magenta-light), transparent 70%);
}

/* Remove o fundo rosa delimitado da foto para integrar 100% com a seção */
.expert-photo {
    background-color: transparent;
    box-shadow: none;
}

.authority-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}


.authority-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.authority-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Depoimentos - Grid Flexível e Balanceado */
.testimonials-grid.grid-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas de tamanho igual por linha */
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 10px 0 20px 0;
}

.testimonial-img {
    width: 100%;
    height: 280px; /* Altura maior para dar destaque e presença às fotos */
    object-fit: grid;
    border-radius: 20px;
    border: 3px solid #FFFFFF;
    background-color: #FFFFFF;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
    cursor: pointer;
}

/* Efeito flutuante elegante ao passar o mouse */
.testimonial-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(156, 29, 89, 0.2);
    border-color: var(--primary-magenta);
}

/* Responsividade: Adapta o grid para telas menores sem quebrar a proporção */
@media (max-width: 900px) {
    .testimonials-grid.grid-photos {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha em tablets */
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .testimonials-grid.grid-photos {
        grid-template-columns: 1fr; /* 1 por linha em celulares */
    }
    .testimonial-img {
        height: 340px;
    }
}

/* ==========================================================================
   9. OFERTA PRINCIPAL & FAQ
   ========================================================================== */
.cta-section {
    background: linear-gradient(180deg, var(--bg-page) 0%, var(--magenta-light) 100%);
}

.cta-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--primary-magenta);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px 0;
}

.price-box {
    margin: 30px 0;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-muted);
    display: block;
}

.main-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-magenta);
    font-family: var(--font-heading);
    line-height: 1;
    margin: 10px 0;
}

.cash-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.guarantee-box h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.guarantee-box p {
    font-size: 0.85rem;
}

/* FAQ Accordion */
.faq-section {
    background-color: #FFFFFF;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

details {
    background: var(--bg-card);
    transition: var(--transition);
}

details[open] {
    background: var(--bg-page);
}

summary {
    padding: 20px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.4rem;
    color: var(--primary-magenta);
    transition: var(--transition);
}

details[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

footer {
    padding: 30px 0;
    background-color: var(--text-dark);
    color: #A0AEC0;
    font-size: 0.85rem;
}

/* ==========================================================================
   10. ANIMAÇÕES & REAÇÕES AO SCROLL
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   11. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .hero-highlights {
        display: inline-block;
        text-align: left;
    }

    .btn-hero {
        margin: 0 auto;
    }

    .floating-badge {
        display: none;
    }

    .authority-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expert-photo {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .filter-grid, 
    .grid-2x2 {
        grid-template-columns: 1fr;
    }

    .grid-photos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .main-price {
        font-size: 2.8rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-cta-btn {
        display: none;
    }
}