/* ========================================
   RESET E CONFIGURAÇÕES BÁSICAS
======================================== */

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

/* Prevenir layout shift e scrollbar aparecendo/desaparecendo */
html {
    overflow-y: scroll;  /* Força scrollbar sempre visível */
    scroll-behavior: smooth;
}

/* Prevenir FOUC (Flash of Unstyled Content) com AOS */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

:root {
    /* Cores Principais */
    --primary-blue: #1E5F8C;
    --primary-blue-dark: #14405E;
    --primary-blue-light: #2A7AB0;
    
    /* Dourado */
    --gold-accent: #D4AF37;
    --gold-light: #E8C968;
    --gold-dark: #B8941F;
    
    /* Rosa */
    --rose-soft: #F4E8E8;
    --rose-medium: #E8D5D5;
    
    /* Neutros */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #1A1A1A;
    
    /* Verde WhatsApp */
    --green-cta: #25D366;
    --green-hover: #20BA5A;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #1E5F8C 0%, #2A7AB0 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8C968 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30,95,140,0.95) 0%, rgba(42,122,176,0.9) 100%);
    
    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Tamanhos Desktop */
    --h1: 3.5rem;
    --h2: 2.75rem;
    --h3: 2rem;
    --h4: 1.5rem;
    --body-large: 1.25rem;
    --body: 1.125rem;        /* Aumentado de 1rem para 1.125rem (18px) */
    --small: 0.9375rem;      /* Aumentado de 0.875rem para 0.9375rem (15px) */
    
    /* Espaçamento */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;
    --spacing-xxl: 128px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--body);
    line-height: 1.7;  /* Aumentado de 1.6 para 1.7 */
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;  /* Aumentado de 1.2 para 1.3 */
    color: var(--primary-blue);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }

p {
    margin-bottom: 1.25rem;  /* Aumentado de 1rem */
    line-height: 1.8;  /* Melhor espaçamento entre linhas */
}

.lead {
    font-size: var(--body-large);
    font-weight: 400;
    line-height: 1.8;  /* Aumentado de 1.7 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    width: 100%;
}

section {
    padding: var(--spacing-xl) 0;
    overflow-x: hidden;
}

/* ========================================
   ELEMENTOS GLOBAIS
======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: var(--body-large);
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 30px auto;
    border-radius: 2px;
}

.section-divider-light {
    background: var(--white);
}

/* ========================================
   BADGES E TAGS
======================================== */

.badge-limited {
    display: inline-block;
    background: #FF4444;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: var(--small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
    margin-bottom: 20px;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-premium {
    display: inline-block;
    background: var(--gradient-gold);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 20px;
}

/* ========================================
   BOTÕES
======================================== */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--green-cta);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.25rem;
}

.btn-pulse {
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7); }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--white);
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--white);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.cta-center {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231E5F8C" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 95, 140, 0.92);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Hero - Texto + Foto */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-text .badge-limited {
    display: inline-block;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 40px;
    color: var(--off-white);
    line-height: 1.6;
    text-align: left;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 600;
    font-size: 1.0625rem;
}

.hero-location {
    margin-top: 30px;
    font-size: 1.125rem;
    color: var(--gold-light);
    text-align: left;
}

/* Hero Image */
.hero-image {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 450px;
    margin: 0 auto;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder da foto */
.hero-image-placeholder {
    display: none;  /* ESCONDIDO COMPLETAMENTE! */
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
}

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

/* ========================================
   DIFERENCIAÇÃO
======================================== */

.differentiation-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.differentiation-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--rose-soft);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.doctor-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-image-placeholder {
    background: var(--gradient-primary);
    border-radius: 16px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.doctor-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.doctor-image-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
}

.doctor-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-accent);
    border-radius: 16px;
    z-index: 1;
}

.credentials-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.credential-badge:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.credential-badge i {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.credential-badge strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.credential-badge span {
    font-size: var(--small);
    color: var(--medium-gray);
}

.highlight-box {
    background: var(--rose-soft);
    border-left: 4px solid var(--gold-accent);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.highlight-box p {
    margin-bottom: 10px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* ========================================
   PROBLEMA
======================================== */

.problem-section {
    background: var(--white);
}

.problem-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-item {
    background: var(--rose-soft);
    border-left: 4px solid #FF6B6B;
    padding: 25px 30px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-item i {
    font-size: 2rem;
    color: #FF4444;
    flex-shrink: 0;
    margin-top: 5px;
}

.problem-item strong {
    display: block;
    color: var(--primary-blue);
    font-size: 1.125rem;
    margin-bottom: 5px;
}

.problem-item p {
    color: var(--medium-gray);
    margin: 0;
}

.truth-box {
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
}

.truth-box h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.truth-box p {
    font-size: 1.125rem;
}

/* ========================================
   SOLUÇÃO (NOVA - COM COMPARAÇÃO)
======================================== */

.solution-section {
    background: var(--off-white);
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* Vídeo wrapper */
.solution-video-wrapper {
    max-width: 800px;
    margin: 40px auto;
}

/* Container responsivo para vídeo do YouTube (HORIZONTAL 16:9) */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Container para YouTube Shorts (VERTICAL 9:16) */
.shorts-container {
    position: relative;
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.shorts-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Grid de Comparação */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

/* Cards de Comparação */
.comparison-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Header do Card */
.comparison-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.comparison-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

/* Badge Recomendado */
.badge-recommended {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-accent);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Card Negativo (Vermelho) */
.comparison-negative .comparison-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
}

.comparison-negative .comparison-header i {
    color: var(--white);
}

.comparison-negative .comparison-list li i {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Card Positivo (Verde) */
.comparison-positive .comparison-header {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: var(--white);
}

.comparison-positive .comparison-header i {
    color: var(--white);
}

.comparison-positive .comparison-list li i {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

/* Body do Card */
.comparison-body {
    padding: 30px;
}

/* Lista de Comparação */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li i {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comparison-list li span {
    flex: 1;
}

.comparison-list li strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.comparison-list li small {
    color: var(--medium-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* CTA da Solução */
.solution-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.cta-text strong {
    color: var(--primary-blue);
    font-size: 1.25rem;
}

/* ========================================
   BENEFÍCIOS
======================================== */

.benefits-section {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--medium-gray);
    margin: 0;
}

/* ========================================
   COMPARAÇÃO
======================================== */

.comparison-section {
    background: var(--off-white);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-before,
.comparison-after {
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    padding-top: 70px;
}

.comparison-before {
    background: #FFE5E5;
    border: 3px solid #FF6B6B;
}

.comparison-before::before {
    content: '❌';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: #FF6B6B;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-after {
    background: #E8F5E9;
    border: 3px solid #4CAF50;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.comparison-after::before {
    content: '✅';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: #4CAF50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-before h3 {
    color: #D32F2F;
    margin-bottom: 20px;
}

.comparison-after h3 {
    color: #2E7D32;
    margin-bottom: 20px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 12px 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* ========================================
   PROCESSO (TIMELINE)
======================================== */

.process-section {
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

.process-step {
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    z-index: 2;
}

.step-content {
    background: var(--off-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-left: calc(50% + 50px);
    width: calc(50% - 50px);
}

.process-step:nth-child(even) .step-content {
    margin-left: 0;
    margin-right: calc(50% + 50px);
}

.step-content h3 {
    margin-bottom: 15px;
}

.step-content p {
    margin-bottom: 10px;
}

.step-content ul {
    margin-left: 25px;
    margin-bottom: 10px;
}

.step-content .small-text {
    font-size: var(--small);
    font-style: italic;
    color: var(--medium-gray);
}

/* ========================================
   INVESTIMENTO
======================================== */

.pricing-section {
    background: var(--off-white);
}

.price-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-gold);
}

.price-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.price-description {
    color: var(--medium-gray);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 20px 0;
    line-height: 1;
}

.price-value-small {
    font-size: 1.5rem;
    color: var(--medium-gray);
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}

.payment-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin: 20px 0;
}

.price-features {
    text-align: left;
    margin: 30px 0;
}

.price-feature {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-feature:last-child {
    border-bottom: none;
}

.price-feature i {
    color: var(--gold-accent);
    font-size: 1.25rem;
}

.value-explanation {
    text-align: left;
    background: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.value-explanation ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.value-explanation li {
    padding: 8px 0;
}

/* ========================================
   FAQ
======================================== */

.faq-section {
    background: var(--white);
}

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

.faq-item {
    background: var(--off-white);
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--primary-blue);
}

.faq-question:hover {
    color: var(--primary-blue-light);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    color: var(--gold-accent);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ========================================
   CTA FINAL
======================================== */

.final-cta-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2,
.final-cta-content h3 {
    color: var(--white);
}

.imagine-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.imagine-box h3 {
    margin-bottom: 30px;
}

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

.imagine-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.imagine-item i {
    font-size: 2rem;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.imagine-item p {
    margin: 0;
    font-weight: 600;
}

.urgency-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.urgency-box h3 {
    margin-bottom: 20px;
}

.final-push {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0;
}

.cta-subtitle {
    margin-top: 30px;
    font-size: 1.125rem;
}

.cta-subtitle em {
    color: var(--gold-light);
}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer .container {
    max-width: 1200px;  /* Mesmo width do resto da página */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.0625rem;  /* Aumentado para melhor legibilidade */
}

.footer i {
    color: var(--gold-accent);
    font-size: 1.125rem;
}

/* Links de navegação do footer */
.footer-nav h4,
.footer-social h4 {
    color: var(--primary-blue-light);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: var(--gold-accent);
    transform: translateX(5px);
}

/* Ícones sociais */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold-accent);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 1rem;
    justify-content: center;
}

.footer-bottom .small-text {
    color: var(--medium-gray);
    margin-top: 10px;
    font-size: 0.9375rem;
}

/* ========================================
   FLOATING WHATSAPP
======================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--green-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float-bounce 2s infinite;
    text-decoration: none !important;  /* Remove linha azul */
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
    text-decoration: none !important;  /* Remove linha azul no hover */
}

.floating-whatsapp i {
    font-size: 2rem;
    color: var(--white);
}

.floating-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse-badge 1.5s infinite;
}

/* ========================================
   RESPONSIVIDADE
======================================== */

/* Desktop - Garantir grid funcionando */
@media (min-width: 769px) {
    .hero-grid {
        display: grid !important;
        grid-template-columns: 1.2fr 0.8fr !important;
        gap: 60px;
    }
    
    .hero-text {
        text-align: left !important;
    }
    
    .hero-text h1,
    .hero-subtitle,
    .hero-location {
        text-align: left !important;
    }
    
    .hero-image {
        order: 0;
    }
}

/* ========================================
   DESKTOP GRANDE - FOTO MAIOR
======================================== */

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr !important;  /* 50/50 */
    }
    
    .hero-image-wrapper {
        max-width: 700px !important;  /* FORÇAR tamanho maior */
    }
}

@media (min-width: 1400px) {
    .hero-image-wrapper {
        max-width: 800px !important;  /* Ainda maior em telas muito grandes */
    }
}

@media (max-width: 768px) {
    :root {
        --h1: 2.25rem;
        --h2: 1.875rem;
        --h3: 1.5rem;
        --body-large: 1.125rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Solução - Comparação no mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-header i {
        font-size: 2.5rem;
    }
    
    .comparison-header h3 {
        font-size: 1.25rem;
    }
    
    .comparison-list li {
        padding: 15px 0;
    }
    
    .comparison-list li i {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .comparison-list li strong {
        font-size: 1rem;
    }
    
    .comparison-list li small {
        font-size: 0.875rem;
    }
    
    .solution-cta {
        margin-top: 40px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Hero - Otimizado para mobile (ABOVE THE FOLD) */
    .hero-section {
        min-height: auto;
        padding: 20px 0 60px !important;
        background-attachment: scroll;
    }
    
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* NOVO LAYOUT: Texto acima e abaixo da foto */
    .hero-text {
        display: contents;
    }
    
    /* Badge + Título = ACIMA da foto */
    .hero-text .badge-limited {
        order: 1;
        margin-bottom: 10px !important;
    }
    
    .hero-text h1 {
        order: 2;
        text-align: center;
        margin-bottom: 10px !important;
        margin-top: 0 !important;
    }
    
    /* Foto = MEIO (rosto limpo) - SEM ESPAÇO! */
    .hero-image {
        order: 3;
        max-width: 400px;
        margin: 0 auto 0 !important;  /* ZERO margem inferior! */
        padding: 0 !important;
    }
    
    /* BOTÃO = COLADO NA FOTO! */
    .hero-text .btn-whatsapp {
        order: 4;
        display: flex;
        margin: 15px auto 20px !important;  /* Só 15px no topo! */
        padding: 15px 30px !important;
        width: fit-content;
        font-size: 1rem;
    }
    
    /* Benefícios = Abaixo do botão */
    .hero-benefits {
        order: 5;
        display: flex;
        flex-direction: column;
        margin-top: 15px !important;
    }
    
    /* Subtítulo = Abaixo dos benefícios */
    .hero-subtitle {
        order: 6;
        text-align: center;
        margin-top: 20px !important;
    }
    
    .hero-location {
        order: 7;
        text-align: center;
        margin-top: 15px;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Ajustar enquadramento da imagem no mobile */
    .hero-image-wrapper img {
        object-position: center 20%;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Diferenciação */
    .doctor-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .doctor-image-wrapper::after {
        right: 10px;
        top: 10px;
    }
    
    /* Solução */
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    /* Benefícios */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* YouTube Shorts no mobile */
    .shorts-container {
        max-width: 280px; /* Menor no mobile */
    }
    
    /* Comparação */
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Processo */
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        left: 30px;
        transform: translateX(0);
    }
    
    .step-content {
        margin-left: 80px !important;
        width: calc(100% - 80px) !important;
    }
    
    .process-step:nth-child(even) .step-content {
        margin-right: 0 !important;
    }
    
    /* Imagine grid */
    .imagine-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer p {
        justify-content: center;
    }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp i {
        font-size: 1.75rem;
    }
    
    /* Botões centralizados no mobile */
    .btn-whatsapp,
    .btn-secondary {
        display: flex;
        margin: 0 auto;
        width: fit-content;
        max-width: 100%;
        text-align: center;
    }
    
    /* CTAs centralizados */
    .cta-center,
    .process-cta,
    .cta-box,
    .faq-cta,
    .testimonials-cta,
    .final-cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
}

/* MOBILE — reordena só com CSS (sem JS, sem elementos extras) */
@media (max-width: 768px) {
  /* 1) Deixa a grid com “áreas” bem definidas no mobile */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "title"
      "image"
      "cta"
      "rest";
    gap: 16px;
  }

  /* 2) Truque: os filhos de .hero-text passam a “valer” como itens da grid */
  .hero-text {
    display: contents; /* não altera visual; só promove os filhos para a grid */
  }

  /* 3) Mapeia os elementos existentes para as áreas desejadas */
  /* ajuste os seletores conforme seus nomes/classes reais */
  .hero-text .badge-limited { grid-area: badge; margin-top: 0 !important; }
  .hero-text h1 { grid-area: title; margin: 8px 0 !important; line-height: 1.12 !important; }
  .hero-image { grid-area: image; }

  /* O BOTÃO ORIGINAL vai para a área "cta" — logo após a FOTO */
  .hero-text .btn-whatsapp {
    grid-area: cta;
    width: 100% !important;
    margin: 6px 0 0 !important; /* ← ajuste fino: diminua p/ colar na foto */
  }

  /* Todo o resto do conteúdo de texto cai em “rest” */
  .hero-text > :not(.badge-limited):not(h1):not(.btn-whatsapp) {
    grid-area: rest;
  }

  /* Foto sem corte */
  .hero-image .hero-image-wrapper {
    margin-bottom: 6px !important; /* ↓ aproxime o botão da foto mexendo aqui */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
  }
  .hero-image .hero-image-wrapper img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
  }
}

/* MOBILE — evitar sobreposição do texto após o botão */
@media (max-width: 768px) {
  .hero-grid {
    grid-auto-flow: row;
    grid-auto-rows: max-content;
  }

  /* Deixe badge, título, imagem e CTA nas áreas que já definimos */
  .hero-text .badge-limited { grid-area: badge; }
  .hero-text h1 { grid-area: title; }
  .hero-image { grid-area: image; }
  .hero-text .btn-whatsapp {
    grid-area: cta;
    width: 100% !important;
    margin: 6px 0 0 !important;   /* ajuste fino abaixo da foto */
  }

  /* 🔧 FIX: todo o restante do conteúdo deve fluir em LINHA, sem área fixa */
  .hero-text > :not(.badge-limited):not(h1):not(.btn-whatsapp) {
    grid-area: auto !important;     /* tira da mesma área (evita sobrepor) */
    grid-column: 1 !important;      /* força ficar na única coluna */
    margin-top: 12px;               /* respiro sob o botão (ajuste se quiser) */
  }
}
