:root {
    /* --- PALETA DE CORES PREMIUM --- */
    /* Principal: Verde Esmeralda (Saúde, Resultado, Confiança) */
    --primary-dark: #064e3b;
    /* Emerald 900 - Textos fortes */
    --primary: #059669;
    /* Emerald 600 - Elementos principais */
    --primary-light: #d1fae5;
    /* Emerald 100 - Fundos suaves */
    --primary-fade: #ecfdf5;
    /* Emerald 50 - Fundos muito suaves */

    /* Destaque: Laranja Vibrante (Ação, Urgência) */
    --cta: #ea580c;
    /* Orange 600 */
    --cta-hover: #c2410c;
    /* Orange 700 */
    --cta-light: #ffedd5;
    /* Orange 100 */

    /* Neutros (Leitura e Estrutura) */
    --text-main: #111827;
    /* Gray 900 - Quase preto */
    --text-body: #374151;
    /* Gray 700 - Leitura confortável */
    --text-muted: #6b7280;
    /* Gray 500 - Detalhes */
    --bg-body: #f9fafb;
    /* Gray 50 - Off-white premium */
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    /* Gray 200 */

    /* --- TIPOGRAFIA --- */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* --- LAYOUT & ESPAÇAMENTO --- */
    --container-width: 640px;
    /* Foco total em leitura vertical (mobile-first) */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* --- SOMBRAS (Efeito de Profundidade) --- */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-float: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-cta: 0 4px 14px 0 rgba(234, 88, 12, 0.39);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

section {
    padding: 3.5rem 0;
}

/* --- UTILITÁRIOS --- */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-cta {
    color: var(--cta);
}

.font-bold {
    font-weight: 700;
}

.bg-white {
    background-color: var(--bg-white);
}

.hidden {
    display: none !important;
}

/* --- BOTÕES (CTA) --- */
.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-cta);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.25rem;
    text-transform: none;
    letter-spacing: normal;
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto;
    text-decoration: none;
}

.btn-minimal:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animação Pulse Suave */
@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(234, 88, 12, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

.pulse {
    animation: pulse-soft 2s infinite;
}

/* --- PRODUCT HERO (NEW) --- */
.product-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    /* Mobile-first height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2rem 1.5rem;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Brand Overlay: Dark Green Gradient */
    background: linear-gradient(to bottom, rgba(6, 78, 59, 0.4), rgba(6, 78, 59, 0.9));
    z-index: 1;
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--cta);
    /* Brand Orange */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-cta);
    border: none;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-sub-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary-light);
    /* Light Green Text */
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* --- HERO SECTION (A VERDADE) --- */
.hero-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdf4 100%);
    border-bottom: 1px solid var(--primary-light);
}

.hero-eyebrow {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-headline {
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-headline span {
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-light) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.4em;
    background-position: 0 88%;
    color: var(--primary-dark);
}

/* Lista "Não é..." */
.hero-not-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
}

.not-item {
    display: flex;
    align-items: center;
    background: #fee2e2;
    /* Red 100 */
    color: #991b1b;
    /* Red 800 */
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
}

.not-item i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* A Revelação */
.hero-revelation {
    background: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-card);
    position: relative;
}

.hero-revelation::before {
    content: 'O SEGREDO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.revelation-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
}

.revelation-text span {
    color: var(--primary);
}

/* Texto de Apoio */
.hero-text {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    text-align: left;
}

/* Caixa "A Verdade" */
.truth-box {
    background: var(--bg-white);
    border-left: 4px solid var(--cta);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.truth-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cta);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.truth-content {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

/* --- BENEFÍCIOS (Checklist) --- */
.benefits-section {
    background-color: white;
    padding-top: 1rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    font-weight: 600;
    color: var(--text-main);
}

/* --- VISUALIZAÇÃO (Sonho) --- */
.visualization-section {
    background-color: var(--primary-fade);
    text-align: center;
}

.dream-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    margin-top: 2rem;
}

.dream-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    text-align: left;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.dream-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dream-item i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.dream-item span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
}

/* --- DEPOIMENTOS (Prova Social) --- */
.testimonials-section {
    background-color: white;
}

.testimonial-card {
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.user-info span {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
}

/* --- OFERTA (Preço) --- */
.offer-section {
    background: linear-gradient(to bottom, white 0%, var(--primary-fade) 100%);
    padding: 4rem 0;
}

.price-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-float);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.price-tag {
    background: var(--primary);
    color: white;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0.5rem 0 2rem;
}

.price-new span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* --- GARANTIA & TRUST --- */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    text-align: center;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

/* --- FOOTER & STICKY --- */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 0 6rem;
    text-align: center;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

/* Animação Fade In */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- DESKTOP MEDIA QUERIES --- */
@media (min-width: 768px) {
    :root {
        --container-width: 800px;
    }

    .product-hero {
        min-height: 90vh;
    }

    .hero-main-title {
        font-size: 4.5rem;
    }

    .hero-sub-title {
        font-size: 1.35rem;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .revelation-text {
        font-size: 1.75rem;
    }

    .trust-bar {
        gap: 2rem;
    }

    .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .benefit-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}