/* =========================================
   1. CONFIGURAÇÕES GERAIS & VARIÁVEIS
   ========================================= */
:root {
    /* Paleta de Cores do Beauty Book */
    --primary: #E5989B;       /* Rosa Pêssego Principal */
    --primary-dark: #d08285;  /* Rosa mais escuro para hover */
    --secondary: #C9A87C;     /* Dourado Premium */
    
    --dark: #2D2D39;          /* Chumbo quase preto (mais sofisticado que #000) */
    --gray-text: #64748B;     /* Cinza azulado moderno para textos */
    --light-bg: #FCF9F8;      /* Branco Quente (Off-white) */
    --white: #FFFFFF;

    --success-green: #10B981; /* Verde para ícones de WhatsApp/Check */
    --accent-red: #EF4444;    /* Vermelho para destaque de dor */

    /* Tipografia */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Sombras Premium (Estilo SaaS Moderno) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Sombra colorida e brilhante para botões */
    --shadow-primary-glow: 0 4px 14px 0 rgba(229, 152, 155, 0.5);

    /* Espaçamento padrão */
    --section-spacing: 80px;
    --container-width: 1200px;
}

/* Reset Básico */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--dark); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   2. UTILITÁRIOS & COMPONENTES REUTILIZÁVEIS
   ========================================= */
.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: var(--section-spacing) 0; }
.bg-light { background-color: var(--light-bg); }
.bg-white { background-color: var(--white); }
.text-center { text-align: center; }
.max-w-3xl { max-width: 48rem; } /* Aprox 768px */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; } .mt-4 { margin-top: 1rem; }

/* Gradiente de Texto Animado (Opcional, mas chique) */
.gradient-text, .gradient-text-anim {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.gradient-text-anim {
    background-size: 200% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}
@keyframes textShine { to { background-position: 200%; } }

.highlight-red { color: var(--accent-red); position: relative; display: inline-block; }
/* Sublinhado rabiscado no "bagunça" */
.highlight-red::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 150" preserveAspectRatio="none"><path d="M9.3,127.3c49.3-3,150.7-7.6,237.5-19.1c90.6-12,182.4-27,242.7-50.3" stroke="%23EF4444" stroke-width="8" fill="none" stroke-linecap="round" stroke-linejoin="round" opacity="0.3"/></svg>') no-repeat center center;
    background-size: 100% 100%; z-index: -1;
}

/* Botões */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: 12px; font-weight: 700; font-family: var(--font-heading);
    cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary { background-color: var(--primary); color: var(--white); border: none; }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); }
.btn-glow { box-shadow: var(--shadow-primary-glow); }
.btn-glow:hover { box-shadow: 0 6px 20px rgba(229, 152, 155, 0.6); }
.btn-outline-dark {
    background: transparent; color: var(--dark); border: 2px solid #E2E8F0;
}
.btn-outline-dark:hover { border-color: var(--dark); background: var(--dark); color: white; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.full-width { width: 100%; }

/* Botões das Lojas (Google/Apple) */
.app-store-buttons { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.store-btn {
    display: flex; align-items: center; gap: 16px; background: var(--dark); color: white;
    padding: 12px 24px; border-radius: 14px; transition: 0.3s;
    box-shadow: var(--shadow-md);
}
.store-btn i { font-size: 28px; }
.btn-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn-text small { font-size: 11px; text-transform: uppercase; opacity: 0.8; }
.btn-text strong { font-size: 15px; font-family: var(--font-heading); }
.store-btn:hover { background: #1a1a24; transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Títulos de Seção */
.section-title { font-size: 2.25rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-subtitle { font-size: 1.125rem; color: var(--gray-text); max-width: 600px; margin: 0 auto 48px auto; }

/* Animação Fade Up (Controlada pelo JS) */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* =========================================
   3. HEADER & NAVEGAÇÃO
   ========================================= */
.site-header {
    padding: 20px 0; /* Mais espaçamento */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    /* Adicionei um gradiente sutil para dar mais corpo e profundidade */
    background: linear-gradient(to bottom, rgba(252, 249, 248, 0.95) 0%, rgba(252, 249, 248, 0.4) 100%);
    backdrop-filter: blur(8px); /* Efeito de vidro fosco moderno */
    border-bottom: 1px solid rgba(229, 152, 155, 0.1); /* Linha rosa bem suave */
}

.header-container {
    display: flex;
    justify-content: center; /* Centraliza no mobile */
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px; /* Mais espaço entre logo e texto */
}

.header-logo { 
    height: 90px; /* Aumentei a logo para ter mais presença */
    width: auto;
    border-radius: 12px;
    object-fit: contain;
    /* Sombra suave para destacar do fundo */
    box-shadow: 0 4px 10px rgba(229, 152, 155, 0.15);
}

.brand-name { 
    font-family: var(--font-heading); 
    font-weight: 800; 
    font-size: 1.6rem; /* Texto maior e mais forte */
    color: var(--dark); 
    letter-spacing: -0.5px; /* Letras um pouco mais juntas para modernidade */
}

.main-nav ul { display: flex; gap: 32px; }
.main-nav a { font-weight: 600; color: var(--gray-text); font-family: var(--font-heading); font-size: 0.95rem; transition: all 0.3s ease; }
.main-nav a:hover { color: var(--primary); transform: translateY(-2px); }

/* Esconde menu e botão no mobile */
.main-nav, .header-cta { display: none; }

/* Ajustes para Desktop */
@media (min-width: 992px) {
    .site-header {
        padding: 24px 0;
        background: transparent; /* Remove o fundo no desktop */
        backdrop-filter: none;
        border-bottom: none;
    }
    .header-container {
        justify-content: space-between; /* Espaça os itens no desktop */
    }
    .header-logo {
        height: 70px; /* Logo ainda maior no PC */
        box-shadow: none;
    }
    .brand-name {
        font-size: 1.75rem;
    }
    .main-nav, .header-cta { display: block; }
}

/* =========================================
   4. HERO SECTION (A PRIMEIRA IMPRESSÃO)
   ========================================= */
.hero {
    padding: 140px 0 80px 0; /* Mais espaço no topo por causa do header fixo */
    position: relative; overflow: hidden;
}
/* Forma orgânica no fundo do hero */
.hero-bg-shape {
    position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(229, 152, 155, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: -1; pointer-events: none; filter: blur(80px);
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.hero-content { text-align: center; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #FFF0F1; color: var(--primary); font-weight: 700;
    padding: 8px 16px; border-radius: 50px; font-size: 0.85rem;
    margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.trust-badge i { color: #FFC107; /* Estrela amarela */ }
.hero h1 {
    font-size: 2.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-subtitle { 
    font-size: 1.125rem; 
    color: var(--gray-text); 
    margin-bottom: 32px; 
    max-width: 600px; /* Aumentei um pouco para caber melhor o texto novo */
    margin-left: auto; 
    margin-right: auto;
    line-height: 1.6;
}
.hero-disclaimer {
    font-size: 0.9rem; color: var(--gray-text); display: flex; align-items: center;
    justify-content: center; gap: 8px;
}
.hero-disclaimer i { color: var(--success-green); }

/* Imagem do Celular no Hero */
.hero-image-container { position: relative; display: flex; justify-content: center; z-index: 1; }
.phone-mockup-main {
    width: 280px; border-radius: 36px;
    box-shadow: 0 20px 40px -10px rgba(229, 152, 155, 0.5), 0 0 0 8px white; /* Sombra dupla + Borda branca */
    transform: rotate(-3deg); transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* Efeito elástico no hover */
}
.hero-image-container:hover .phone-mockup-main { transform: rotate(0deg) scale(1.03); }

/* Cards Flutuantes (Decorativos) */
.floating-card {
    position: absolute; background: white; padding: 12px 16px; border-radius: 16px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; animation: float 4s ease-in-out infinite;
    max-width: 220px;
}
.floating-card i { font-size: 24px; }
.floating-card strong { display: block; font-family: var(--font-heading); line-height: 1.2; }
.floating-card span { font-size: 0.8rem; color: var(--gray-text); }

.card-whatsapp { top: 60px; left: -20px; animation-delay: 0s; }
.card-whatsapp i { color: var(--success-green); }
.card-finance { bottom: 80px; right: -20px; animation-delay: 2s; }
.card-finance i { color: var(--secondary); }

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

/* Logos de Confiança (Strip) */
.trusted-by-strip {
    text-align: center; padding: 30px 20px; background: #fafafa; border-bottom: 1px solid #eee;
}
.trusted-by-strip p { font-size: 0.85rem; color: #999; margin-bottom: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px;}
.strip-logos { color: var(--gray-text); font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; opacity: 0.7;}

/* Media Queries Hero Desktop */
@media (min-width: 992px) {
    .hero { padding: 180px 0 100px 0; }
    .hero-grid { grid-template-columns: 5fr 6fr; text-align: left; }
    .hero-content { text-align: left; }
    .hero h1 { font-size: 3.75rem; }
    .hero-subtitle { margin-left: 0; }
    .app-store-buttons { flex-direction: row; justify-content: flex-start; }
    .hero-disclaimer { justify-content: flex-start; }
    .phone-mockup-main { width: 320px; }
    .card-whatsapp { left: -40px; } .card-finance { right: -40px; }
}

/* =========================================
   5. FEATURES (BENEFÍCIOS)
   ========================================= */
.features-grid {
    display: grid; grid-template-columns: 1fr; gap: 32px;
}
.feature-box {
    background: var(--white); padding: 40px 32px; border-radius: 24px;
    border: 1px solid #F1F5F9; box-shadow: var(--shadow-sm);
    transition: 0.3s; position: relative; overflow: hidden;
}
/* Efeito de brilho no topo do card ao passar o mouse */
.feature-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary); transform: scaleX(0); transform-origin: left; transition: 0.4s;
}
.feature-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.feature-box:hover::before { transform: scaleX(1); }

.icon-wrapper {
    width: 64px; height: 64px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 24px;
}
.icon-whatsapp { background: #DCFCE7; color: var(--success-green); }
.icon-finance { background: #FEF3C7; color: var(--secondary); }
.icon-agenda { background: #FFF0F1; color: var(--primary); }

.feature-box h3 { font-size: 1.35rem; margin-bottom: 12px; }
.feature-box p { color: var(--gray-text); font-size: 1rem; }

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   6. COMO FUNCIONA (STEPS)
   ========================================= */
.steps-container {
    display: flex; flex-direction: column; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto;
}
.step-item {
    text-align: center; position: relative; z-index: 2; flex: 1;
}
.step-number {
    width: 50px; height: 50px; background: var(--primary); color: white;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto; box-shadow: var(--shadow-primary-glow);
}
.step-connector-line {
    width: 2px; height: 60px; background: #E2E8F0; /* Linha vertical no mobile */
}
.step-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
.step-item p { color: var(--gray-text); font-size: 0.95rem; max-width: 250px; margin: 0 auto; }

@media (min-width: 768px) {
    .steps-container { flex-direction: row; align-items: flex-start; gap: 20px; }
    .step-connector-line { width: 100px; height: 2px; margin-top: 25px; } /* Linha horizontal no PC */
}

/* =========================================
   7. PREÇOS (PRICING)
   ========================================= */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 900px; margin: 0 auto; align-items: center;}
.pricing-card {
    background: var(--white); padding: 40px; border-radius: 24px;
    border: 2px solid #F1F5F9; text-align: center; transition: 0.3s; position: relative;
}
.pricing-card.pro-tier {
    border-color: var(--primary); box-shadow: var(--shadow-xl);
    transform: scale(1.05); /* Destaca o plano PRO */ z-index: 10;
}
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white; padding: 6px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    box-shadow: var(--shadow-primary-glow);
}
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 16px; }
.price { font-size: 3rem; font-weight: 800; font-family: var(--font-heading); color: var(--dark); line-height: 1; }
.price span { font-size: 1rem; color: var(--gray-text); font-weight: 500; }
.pricing-header p { color: var(--gray-text); margin: 16px 0 32px 0; }

.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
    margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
    color: var(--dark); font-size: 0.95rem;
}
.pricing-features li i { color: var(--primary); font-size: 1.1rem; }
.pricing-features li.disabled { color: #A0AEC0; text-decoration: line-through; }
.pricing-features li.disabled i { color: #CBD5E1; }
.text-green { color: var(--success-green) !important; }
.pricing-note { font-size: 0.8rem; color: #999; }

@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr 1.1fr; gap: 40px; /* O segundo card é ligeiramente maior */ }
}

/* =========================================
   8. FAQ (PERGUNTAS FREQUENTES)
   ========================================= */
.faq-item {
    margin-bottom: 16px; border: 1px solid #E2E8F0; border-radius: 16px; background: var(--white);
    overflow: hidden; transition: 0.3s;
}
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
details summary {
    padding: 20px; cursor: pointer; font-weight: 700; font-family: var(--font-heading);
    position: relative; list-style: none; outline: none;
}
/* Ícone de + e - personalizado para o FAQ */
details summary::-webkit-details-marker { display: none; }
details summary::after {
    content: '+'; position: absolute; right: 20px; font-size: 1.5rem; color: var(--primary); font-weight: 400;
}
details[open] summary::after { content: '-'; }
details p { padding: 0 20px 20px 20px; color: var(--gray-text); font-size: 0.95rem; }

/* =========================================
   9. CTA FINAL & FOOTER
   ========================================= */
.final-cta {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a24 100%); color: white;
    position: relative; overflow: hidden;
}
/* Círculos decorativos no fundo do CTA */
.final-cta::before, .final-cta::after {
    content: ''; position: absolute; border-radius: 50%; opacity: 0.1;
}
.final-cta::before { width: 400px; height: 400px; background: var(--primary); top: -100px; left: -100px; }
.final-cta::after { width: 300px; height: 300px; background: var(--secondary); bottom: -50px; right: -50px; }
.final-cta h2, .final-cta p { position: relative; z-index: 2; }

.site-footer { background: var(--white); padding: 80px 0 30px 0; border-top: 1px solid #F1F5F9; }
.footer-top-grid {
    display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px;
}
.footer-links-col h4 { font-size: 1rem; margin-bottom: 24px; }
.footer-links-col ul li { margin-bottom: 12px; }
.footer-links-col a { color: var(--gray-text); font-size: 0.9rem; }
.footer-links-col a:hover { color: var(--primary); }

.footer-bottom {
    text-align: center; padding-top: 30px; border-top: 1px solid #F1F5F9;
    color: #999; font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-top-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* =========================================
   10. BARRA MÓVEL (STICKY) - CRUCIAL
   ========================================= */
.sticky-mobile-cta {
    position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Efeito de vidro fosco estilo iOS */
    padding: 12px 20px; display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05); box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 100;
}
.sticky-sub { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; color: var(--gray-text); letter-spacing: 0.5px; display: block;}
.sticky-title { font-family: var(--font-heading); font-weight: 800; color: var(--dark); }
.mobile-footer-spacer { height: 80px; }

@media (min-width: 992px) {
    .sticky-mobile-cta, .mobile-footer-spacer { display: none; } /* Esconde no Desktop */
}


/* =========================================
   SHOWCASE PREMIUM (CARROSSEL V3)
   ========================================= */

.hero-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1000px; /* Prepara para efeitos 3D sutis */
}

/* 1. LUZ DE FUNDO (Spotlight) */
.showcase-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(229, 152, 155, 0.25) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* 2. O PALCO */
.showcase-stage {
    position: relative;
    width: 100%;
    max-width: 380px; /* Largura generosa para ver detalhes */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* 3. A TRILHA DE ROLAGEM */
.showcase-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    
    /* REMOVI O 'scroll-behavior: smooth' DAQUI PARA O DEDO FICAR MAIS RESPONSIVO */
    /* O smooth será feito via JS apenas nos cliques de botão */
    
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;
    
    width: 320px; 
    height: 650px; 
    border-radius: 40px; 
    
    box-shadow: 
        0 20px 50px -10px rgba(50, 50, 93, 0.15), 
        0 10px 30px -15px rgba(0, 0, 0, 0.1);
    
    background-color: transparent;
}
.showcase-track::-webkit-scrollbar { display: none; }

/* 4. OS ITENS (SLIDES) */
.showcase-item {
    /* Garante que o item ocupe todo o espaço */
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    
    /* A MÁGICA DO ALINHAMENTO */
    scroll-snap-align: center;
    
    /* A CORREÇÃO: Isso obriga a parar slide por slide (sem voar) */
    scroll-snap-stop: always;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screen {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que a imagem inteira apareça */
    border-radius: 40px; /* Garante que os cantos da imagem não "vazem" */
}

/* 5. BOTÕES DE NAVEGAÇÃO (SETAS) */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    color: var(--text-dark);
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.nav-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(229, 152, 155, 0.4);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* No celular, escondemos as setas para focar no SWIPE */
@media (max-width: 768px) {
    .nav-btn { display: none; }
}

/* 6. PAGINAÇÃO (PONTINHOS) */
.showcase-pagination {
    display: flex; gap: 8px; margin-top: 24px; z-index: 2;
}
.p-dot {
    width: 8px; height: 8px;
    background-color: #E2E8F0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(229, 152, 155, 0.5);
}

/* 7. CARD FLUTUANTE COM VIDRO (GLASSMORPHISM) */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    bottom: 30px; right: -20px;
    z-index: 20;
    animation: float 5s ease-in-out infinite;
}

/* Ajustes Desktop */
@media (min-width: 992px) {
    .showcase-track {
        width: 340px; /* Um pouco maior no PC */
        height: 700px;
    }
    .prev-btn { left: -60px; }
    .next-btn { right: -60px; }
}

.swipe-hint {
    position: absolute;
    /* Centraliza verticalmente e joga para a direita */
    top: 50%;
    right: -10px; /* Levemente para fora do celular */
    transform: translateY(-50%);
    
    /* Visual Estético (Vidro) */
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85); /* Branco translúcido */
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(229, 152, 155, 0.3); /* Sombra rosa suave */
    
    /* Conteúdo */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary); /* Sua cor rosa */
    font-size: 18px;
    z-index: 25; /* Fica acima de tudo */
    
    /* Comportamento */
    pointer-events: none; /* Permite clicar/arrastar "através" dela */
    animation: swipe-guide 2s infinite cubic-bezier(0.2, 0, 0.4, 1);
}

/* Animação "Vai e Vem" */
@keyframes swipe-guide {
    0% {
        transform: translate(0, -50%);
        opacity: 1;
    }
    50% {
        transform: translate(10px, -50%); /* Move 10px pra direita */
        opacity: 0.5;
    }
    100% {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

/* ESCONDER NO PC (Desktop já tem as setas grandes) */
@media (min-width: 992px) {
    .swipe-hint {
        display: none;
    }
}


/* =========================================
   NOVA SEÇÃO: SITE PROFISSIONAL
   ========================================= */

.site-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.new-feature-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subtitle-left {
    font-size: 1.125rem;
    color: var(--gray-text);
    margin-bottom: 32px;
    line-height: 1.6;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-checklist li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-checklist .check-icon {
    width: 32px;
    height: 32px;
    background: #DCFCE7;
    color: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.feature-checklist strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-checklist p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* =========================================
   NOVA SEÇÃO: SITE PROFISSIONAL (FOCO GIGANTE)
   ========================================= */

/* Wrapper da Imagem - Ocupa muito mais espaço */
.site-full-mockup-wrapper {
    position: relative;
    width: 100%;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    /* Impede que a imagem "vaze" para fora da tela do site */
    overflow: hidden; 
}

.site-mockup-img-huge {
    width: 100%; /* Ela vai ocupar a largura da tela com nitidez agora */
    max-width: 900px; 
    height: auto;
    image-rendering: auto; /* Pode tirar o optimize-contrast se a imagem já vier boa */
}

/* Brilho de fundo maior */
.site-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.25) 0%, transparent 70%);
    z-index: 1;
}



.anamnese-float-card-new i { font-size: 1.8rem; color: var(--primary); }
.anamnese-float-card-new strong { display: block; font-family: var(--font-heading); color: var(--dark); }
.anamnese-float-card-new span { color: var(--success-green); font-weight: 700; font-size: 0.85rem; }

/* Checklist em Grid abaixo da imagem */
.site-features-bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item-small {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f1f1;
}

.feature-item-small .check-icon {
    width: 35px; height: 35px;
    background: #DCFCE7;
    color: var(--success-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Responsividade Desktop */
@media (min-width: 768px) {
    .site-features-bottom-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas no PC */
    }
    
@media (min-width: 992px) {
    .site-mockup-img-huge {
        width: 100%;
        max-width: 900px;
        margin-left: 0;
    }
    
    .anamnese-float-card-new {
        transform: scale(1);
        right: 0;
    }
}
}

@keyframes floatingSite {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* Ajuste para 3 Planos */
@media (min-width: 992px) {
    .pricing-grid.three-tiers {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais no PC */
        max-width: 1100px;
        gap: 25px;
        align-items: stretch; /* Garante que todos tenham a mesma altura */
    }
}

/* Estilo para o Plano Novo (Elite/Site) */
.elite-tier {
    border: 2px solid var(--secondary) !important; /* Borda Dourada */
    background: linear-gradient(to bottom, #fff, #fffbf5);
}

.text-gold { color: var(--secondary); }

.btn-dark-gold {
    background-color: var(--dark);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-dark-gold:hover {
    background-color: var(--secondary);
    color: white;
}

/* Ajuste no badge de recomendado para não ficar em cima de tudo */
.popular-badge {
    white-space: nowrap;
}