:root {
    /* Color Palette */
    --bege-claro: #FDFBF7;
    --bege-escuro: #F3EAE1;
    --rosa-antigo: #C89F9C;
    --rosa-escuro: #A57371;
    --dourado-suave: #D4AF37;
    --branco-quente: #FFFCF8;
    --texto-principal: #332B2B;
    --texto-secundario: #5F5656;
    
    /* Typography */
    --font-titulo: 'Playfair Display', serif;
    --font-texto: 'Inter', sans-serif;
    
    /* Spacings & Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition-suave: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-texto);
    color: var(--texto-principal);
    background-color: var(--bege-claro);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px; /* compensar botão fixo mobile */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulo);
    font-weight: 500;
    color: var(--texto-principal);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--texto-secundario);
}

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

ul {
    list-style: none;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-suave);
}

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

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

/* Organic Divider */
.organic-divider {
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 60 Q 300 0 600 60 T 1200 60 L 1200 0 L 0 0 Z" fill="%23F3EAE1"/></svg>') no-repeat center;
    background-size: cover;
    margin-top: -1px;
}

.organic-divider.reverse {
    transform: rotate(180deg);
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 60" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 60 Q 300 0 600 60 T 1200 60 L 1200 0 L 0 0 Z" fill="%23FDFBF7"/></svg>') no-repeat center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-texto);
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-suave);
    border: none;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background: linear-gradient(135deg, var(--rosa-antigo), var(--rosa-escuro));
    color: var(--branco-quente);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 159, 156, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--branco-quente);
    border: 1px solid var(--branco-quente);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary.dark {
    color: var(--rosa-escuro);
    border-color: var(--rosa-escuro);
}

.btn-secondary.dark:hover {
    background-color: rgba(165, 115, 113, 0.05);
}

.btn-checkout {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco-quente);
    padding: 6rem 0 4rem;
    overflow: hidden;
    background-color: var(--bege-escuro);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: blur(3px) brightness(1.1);
    transform: scale(1.05);
}

.hero-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 251, 247, 0.75) 0%, rgba(200, 159, 156, 0.4) 50%, rgba(212, 175, 55, 0.15) 100%);
    box-shadow: inset 180px 0 180px -50px rgba(253, 251, 247, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-headline {
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--texto-principal);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.8);
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--texto-principal);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
}

.identificacao-box {
    background: rgba(253, 251, 247, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.micro-benefits-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
}

.micro-benefits-horizontal li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--texto-principal);
    font-weight: 600;
    line-height: 1.4;
}

.icon-rose {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
    color: var(--rosa-escuro);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.btn-large {
    padding: 1.25rem 2.5rem !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    max-width: 450px !important;
    border-radius: 50px !important;
    letter-spacing: 0.5px;
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(200, 159, 156, 0.7) !important;
    transform: translateY(-3px) !important;
}

.micro-prova-social {
    font-size: 0.85rem;
    color: var(--texto-principal);
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.75rem;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    margin-top: 3rem;
    color: var(--texto-principal);
    opacity: 0.8;
}

.animate-bounce {
    animation: bounce 2s infinite;
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 5px rgba(255,255,255,0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* --- Section Identificação --- */
.identificacao {
    background-color: var(--bege-escuro);
}

.identificacao-lista {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

.identificacao-item {
    display: flex;
    align-items: center;
    background: var(--branco-quente);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 3px solid var(--rosa-antigo);
}

.identificacao-icon {
    width: 28px;
    height: 28px;
    color: var(--rosa-escuro);
    margin-right: 1rem;
    flex-shrink: 0;
}

.identificacao-item p {
    margin: 0;
    color: var(--texto-principal);
    font-size: 1.05rem;
    font-weight: 500;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.section-subtitle.highlight {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--rosa-escuro);
    margin-top: 1rem;
    font-style: italic;
    font-family: var(--font-titulo);
}

.frase-forte {
    font-size: 1.35rem;
    font-family: var(--font-titulo);
    color: var(--rosa-escuro);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* --- Section Quebra de Crença --- */
.quebra-crenca {
    background-color: var(--bege-claro);
}

.quebra-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.quebra-item {
    background: var(--branco-quente);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
    text-align: center;
    transition: var(--transition-suave);
    border-bottom: 3px solid transparent;
}

.quebra-item:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--rosa-antigo);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.quebra-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 159, 156, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--rosa-escuro);
}

.quebra-icon svg {
    width: 26px;
    height: 26px;
}

.quebra-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.quebra-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Section VSL --- */
.vsl {
    background-color: var(--bege-escuro);
}

.vsl-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
}

/* --- Método --- */
.metodo {
    background-color: var(--bege-claro);
}

.passos-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.passo-item {
    display: flex;
    background: var(--branco-quente);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    align-items: center;
    gap: 1.5rem;
}

.passo-numero {
    width: 50px;
    height: 50px;
    background: var(--rosa-antigo);
    color: var(--branco-quente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.passo-textos {
    text-align: left;
}

.passo-textos h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.passo-textos p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* --- Criadora --- */
.criadora {
    background-color: var(--rosa-antigo);
    color: var(--branco-quente);
}

.criadora h2 {
    color: var(--branco-quente);
}

.criadora-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.foto-dani {
    width: 400px;
    height: 400px;
    border-radius: 100%;
    background-size: 250%;
    background-position: center 15%;
    background-repeat: no-repeat;
    margin: auto;
    display: block;
}

.criadora-foto {
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.criadora-texto {
    text-align: left;
}

.criadora-texto p {
    color: var(--bege-claro);
    font-size: 1rem;
    line-height: 1.7;
}

.metricas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.metrica-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metrica-valor {
    font-family: var(--font-titulo);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dourado-suave);
    min-width: 60px;
}

.metrica-desc {
    font-size: 0.9rem;
    color: var(--bege-claro);
    line-height: 1.2;
}

.btn-criadora {
    background: var(--branco-quente);
    color: var(--rosa-escuro);
}

.btn-criadora:hover {
    background: var(--bege-claro);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* --- Recebimentos e Bônus --- */
.recebimentos {
    background-color: var(--bege-escuro);
}

.lista-recebimentos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.lista-recebimentos li {
    display: flex;
    align-items: center;
    background: var(--branco-quente);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.lista-recebimentos svg {
    width: 24px;
    height: 24px;
    color: var(--rosa-antigo);
    margin-right: 1rem;
    flex-shrink: 0;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bonus-card {
    background: linear-gradient(135deg, #fff, var(--bege-claro));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: 'BÔNUS';
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--dourado-suave);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
}

.bonus-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dourado-suave);
    margin: 0 auto 1rem;
}

/* --- Oferta --- */
.oferta {
    background-color: var(--branco-quente);
}

.preco-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    max-width: 500px;
    margin: 0 auto;
    border-top: 5px solid var(--rosa-antigo);
}

.preco-card h3 {
    font-size: 1.35rem;
    margin-bottom: 2rem;
}

.preco-valores {
    margin-bottom: 2rem;
    text-align: center;
}

.preco-anterior {
    font-size: 1.125rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    display: block;
}

.preco-label {
    font-size: 1rem;
    color: var(--texto-secundario);
    display: block;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.preco-parcela {
    font-family: var(--font-titulo);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rosa-escuro);
    line-height: 1.2;
    display: block;
}

.preco-avista {
    font-size: 1rem;
    color: var(--texto-secundario);
    display: block;
    margin-top: 0.5rem;
}

.lista-beneficios-oferta {
    text-align: left;
    margin-bottom: 2rem;
}

.lista-beneficios-oferta li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.lista-beneficios-oferta svg {
    color: #4CAF50;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* --- Garantia --- */
.garantia {
    background-color: var(--bege-escuro);
}

.selo-garantia {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--dourado-suave);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.selo-garantia svg {
    width: 50px;
    height: 50px;
}

.garantia p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* --- FAQ --- */
.faq-section {
    background-color: var(--branco-quente);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-titulo);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--texto-principal);
    text-align: left;
    gap: 1rem;
    transition: var(--transition-suave);
}

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

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--rosa-antigo);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 0 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--texto-secundario);
    line-height: 1.7;
}

/* --- Botão Fixo Mobile --- */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: pulseGlow 2s ease-in-out infinite;
}

.mobile-cta a {
    color: white;
    text-decoration: none;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 -4px 30px rgba(231, 76, 60, 0.5); }
}

/* --- Footer --- */
.footer {
    background-color: #2C2626;
    color: var(--bege-claro);
    padding: 3rem 0;
}

.footer-msg {
    font-family: var(--font-titulo);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--rosa-antigo);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.6);
}

/* --- Responsive (Desktop) --- */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .mobile-cta {
        display: none;
    }

    .hero-headline {
        font-size: 3.2rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: auto;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .identificacao-lista {
        max-width: 650px;
    }
    
    .quebra-grid {
        flex-direction: row;
        max-width: 900px;
    }

    .quebra-item {
        flex: 1;
    }

    .passos-grid {
        max-width: 800px;
    }
    
    .criadora-layout {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .foto-dani {
        width: 200px;
        height: 200px;
    }
    
    .metricas {
        flex-direction: row;
        gap: 2rem;
    }
    
    .bonus-grid {
        flex-direction: row;
        justify-content: center;
    }
    
    .bonus-card {
        flex: 1;
        max-width: 350px;
    }

    .preco-card {
        padding: 3rem 2.5rem;
    }

    .preco-parcela {
        font-size: 3rem;
    }
}
