/* VARIÁVEIS DE CORES E FONTES */
:root {
    --primary: #22C55E;
    --primary-light: #4ADE80;
    --primary-dark: #166534;
    --accent: #D4AF37;
    --white-pure: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #2B2B2B;
    --bg-gray-light: #F3F4F6;
    --bg-body-clinical: #E6FFFA; 
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-white: #FFFFFF;
    --text-red: #DC2626; /* Vermelho vibrante para o destaque */
    --font-main: 'Inter', sans-serif;
}

/* RESET BASICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-body-clinical);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* UTILITÁRIOS DE LAYOUT E CORES */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-gray-light { background-color: var(--bg-gray-light); }
.bg-white-pure { background-color: var(--white-pure); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--text-white) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-green { color: var(--primary); }
.text-red { color: var(--text-red); } /* Classe de utilidade para o vermelho */
.text-gray { color: var(--text-gray); }
.font-bold { font-weight: bold; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Caixas de conteúdo destacadas contra o fundo clínico */
.bg-container-white {
    background-color: var(--white-pure);
    padding: 2.5rem;
}
.rounded-shadow {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.title-large {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.subtitle-gray {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* SELO CLÍNICO */
.badge-clinico {
    display: inline-flex;
    align-items: center;
    background-color: #E8F8EE;
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.badge-clinico .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
}

/* BOTOES CTA */
.btn-cta {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 1.5rem auto;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* ANIMAÇÃO PULSO */
.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(47, 158, 88, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(47, 158, 88, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(47, 158, 88, 0); }
}

/* 1. SEÇÃO PROBLEMA */
.problem-awareness {
    padding-top: 2rem;
}
.problem-awareness .subheadline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* VÍDEOS PRINCIPAIS */
.video-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.video-container video {
    width: 100%;
    display: block;
}

/* 2. HERO SECTION (VSL PRINCIPAL) */
.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}
.hero .subheadline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* 3. O QUE VOCE RECEBE */
.check-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.check-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    font-weight: 600;
}
.check-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* 4. PROVA SOCIAL */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.video-card {
    width: 45%;
    max-width: 240px; 
    border-radius: 8px;
    background-color: #000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.video-card video {
    width: 100%;
    display: block;
}
.bg-green-ultra-light { background-color: #F0FDF4; }

/* 5. ENTREGÁVEIS (MOCKUP E CARDS) */
.app-mockup {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem;
    display: block;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.feature-card {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); }
.highlight-card {
    border: 1px solid #A7F3D0;
    background-color: #F0FDF4;
}
.icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #4B5563;
}
.icon-green {
    background-color: #D1FAE5;
    color: var(--primary);
}
.feature-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 6. BÔNUS GERAIS (ATUALIZADO COM TEXTO BRANCO) */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.card {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
}
.bonuses { background-color: #1F1F1F; }
.bonuses h2 { color: var(--white); }
.bonus-card {
    background: linear-gradient(135deg, #383838 0%, #5c4a21 100%);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    color: #E5E7EB;
    transition: transform 0.3s ease;
}
.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
.bonus-card h4 {
    background-color: var(--accent);
    color: #000;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.bonus-card h3 { color: var(--white); }
.bonus-card p { color: #E5E7EB; }

/* 7. OFERTAS */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
.offer-card {
    position: relative;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.premium-offer {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.offer-title {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}
.offer-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.price-container {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}
.price-sufix {
    color: var(--text-gray);
    font-size: 0.9rem;
}
.offer-list {
    list-style: none;
    margin-bottom: 2rem;
}
.offer-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
}
.offer-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.badge-top-right {
    position: absolute;
    top: -14px;
    right: 1.5rem;
    background-color: #EAB308;
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 6px;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* 8. FAQ */
details {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    border: 1px solid #E5E7EB;
}
summary {
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none; 
    position: relative;
    padding-right: 3rem; 
}
summary::-webkit-details-marker { display: none; }

summary::after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    transition: transform 0.3s ease;
}
details[open] summary::after {
    content: '-';
    color: var(--primary-dark);
}
details p {
    padding: 0 1.2rem 1.2rem;
    color: #4B5563;
}

/* 9. ESPECIALISTA */
.specialist-card {
    max-width: 600px;
    margin: 2rem auto 0;
    padding: 3rem 2rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.specialist-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #D1FAE5;
}

/* MEDIA QUERIES (DESKTOP) */
@media (min-width: 768px) {
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .offer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.6rem; }
}