/* 
    VARIÁVEIS DE DESIGN SYSTEM (VET CLÍNICO)
    - Estilo: Clean, Claro, Confiança, Acolhedor.
*/
:root {
    /* Paleta Neutra Escandinava / Clínica Premium */
    --color-bg: #FFFFFF; /* Branco puro e limpo */
    --color-surface: #F8F9FA; /* Off-white gelo muito sutil */
    
    /* Cores de Nicho (Veterinária) */
    --color-primary: #115E59; /* Verde Teal profundo (Saúde/Excelência) */
    --color-primary-light: #14B8A6; /* Verde Teal mais claro (Acolhimento/Destaque) */
    --color-accent: #D97706; /* Âmbar mudo para alert/badges (Quente/Urgência controlada) */
    
    /* Texto */
    --color-text: #1E293B; /* Slate muito escuro */
    --color-text-light: #64748B; /* Slate médio para leitura longa */
    
    /* Tipografia (Editorial / Clear) */
    --font-heading: 'Playfair Display', serif; /* Sofisticação e tradição */
    --font-body: 'Source Sans 3', sans-serif; /* Clareza moderna */
    
    /* Estrutura */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6vw;
    
    --radius-round: 100px;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    
    --transition-smooth: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .badge {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* =========================================================================
   HERO: Grid Assimetrico e Limpo
   ========================================================================= */
.hero-section {
    position: relative;
    padding-top: clamp(6rem, 10vh, 8rem);
    padding-bottom: var(--spacing-xl);
    background: radial-gradient(circle at top right, rgba(20,184,166,0.05) 0%, rgba(255,255,255,0) 60%);
    min-height: 80vh; /* Mantém estabilidade visual (CLS) */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(17, 94, 89, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-round);
    margin-bottom: 2rem;
}

.top-credibility {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--color-primary-light);
    font-weight: 400; /* Contraste poético no Header */
}

.hero-content p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 90%;
    line-height: 1.7;
}

/* CTA e Confiança */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-round); /* Botão pílula acolhedor */
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(17, 94, 89, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(17, 94, 89, 0.35);
    background-color: #0E4E4A;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.pulse {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    animation: animatePulse 2s infinite ease-out;
}

/* Imagem e Glass Card */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Constraint Recorte Orgânico */
.image-mask {
    border-radius: var(--radius-lg);
    border-top-right-radius: 120px; /* Assimetria elegante clínica */
    border-bottom-left-radius: 80px;
    overflow: hidden;
    height: clamp(500px, 70vh, 700px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 10s ease-out;
}

.hero-visual:hover .hero-img {
    transform: scale(1.05);
}

/* Constraint Glassmorphism */
.floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: rgba(255, 255, 255, 0.85); /* Fundo vidro claro */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    animation: floatLoop 6s ease-in-out infinite;
}

.card-icon {
    font-size: 2rem;
    background: var(--color-surface);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-size: 1rem;
    color: var(--color-text);
}

.card-text span {
    font-size: 0.875rem;
    color: var(--color-primary-light);
    font-weight: 500;
}


/* =========================================================================
   SEÇÃO 2: A REALIDADE (Split Vertical Clean)
   ========================================================================= */
.problem-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface);
}

.problem-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

/* Imagens com cortes suaves e margem negativa */
.problem-visual {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.problem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}

.problem-content {
    background: var(--color-bg);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    margin-left: -100px; /* Constrict: Overlap Elements */
    position: relative;
    z-index: 2;
}

.problem-content h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.story-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.story-text p {
    margin-bottom: 1.2rem;
}

.story-text strong {
    color: var(--color-text);
}

.alert-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(217, 119, 6, 0.05); /* Fundo de atenção acolhedor */
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.alert-box p {
    margin-bottom: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.5;
}


/* =========================================================================
   SEÇÃO 3: A SOLUÇÃO (BENTO BOX ASSIMÉTRICA)
   ========================================================================= */
.solution-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.solution-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.solution-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.solution-header em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary-light);
}

.solution-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 650px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Constraint: Outline Text Hug Background no Bento */
.bento-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-md);
    padding: clamp(2rem, 4vw, 3.5rem);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0,0,0, 0.04);
}

.bento-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(17,94,89, 0.1);
}

/* Números Gigantes no fundo das cards do bento */
.bento-card::after {
    font-family: var(--font-heading);
    font-size: 200px;
    position: absolute;
    bottom: -60px;
    right: -20px;
    -webkit-text-stroke: 1px rgba(17, 94, 89, 0.08); /* Outline Fino e Limpo */
    color: transparent;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.outline-bg-01::after { content: '01'; }
.outline-bg-02::after { content: '02'; }

.bento-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255, 0.8);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    z-index: 2;
    position: relative;
}

.bento-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.bento-card p {
    color: var(--color-text-light);
    z-index: 2;
    position: relative;
    max-width: 90%;
}

.bento-tall { min-height: 480px; }
.bento-wide { min-height: 400px; }


/* =========================================================================
   SEÇÃO NOVA: AUTORIDADE (STAT GRID)
   ========================================================================= */
.authority-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface); /* OFF-WHITE limpo */
}

.authority-header {
    max-width: 800px;
    margin-bottom: 4rem;
}

.authority-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.authority-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.authority-text strong {
    color: var(--color-text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.stat-card {
    padding-left: 1.5rem;
    border-left: 1px solid var(--color-primary-light);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 4vw, 4rem);
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* =========================================================================
   SEÇÃO 4: RESULTADOS (DARK MODE OBRIGATÓRIO CSS 3D DASHBOARD)
   ========================================================================= */
.results-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background-color: #062A27; /* Teal Profundo Secionado */
    color: #FFFFFF;
}

.results-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem auto;
}

.results-header h2 {
    color: #FFFFFF;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.results-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.25rem;
}

.results-cases {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.case-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.case-reverse {
    grid-template-columns: 1.2fr 0.8fr;
    direction: rtl; /* Imagem inverte lado organicamente */
}

.case-reverse > * { direction: ltr; }

.case-text h3 {
    color: #14B8A6; /* Verde Secundário destacando */
    font-family: var(--font-body); /* Para ficar HighTech */
    font-size: 2rem;
    margin-bottom: 1rem;
}

.case-text h3 span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
}

.case-text > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.case-insight {
    background: rgba(255,255,255,0.03);
    border-left: 3px solid #14B8A6;
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.case-insight p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.case-insight em {
    color: #14B8A6;
    font-style: normal;
    font-weight: 600;
}

/* DESTAQUES NÚMERICOS DO CASE */
.stat-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(20, 184, 166, 0.3);
}

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

.highlight-item strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #FFFFFF;
    min-width: 120px;
}

.highlight-item .green-glow {
    color: #14B8A6;
    text-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

.highlight-item span {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

/* Constraint Dashboard e CSS 3D */
.browser-mockup {
    background: #1E293B; /* Slate 800 */
    border-radius: 12px;
    border: 1px solid rgba(255,255,255, 0.1);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* O script JS acionará a classe skewed quando entra na tela */
.skewed {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(10px);
}

.browser-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-10px); /* Restaura ao passar o mouse */
}

.case-reverse .skewed {
    transform: perspective(1000px) rotateY(5deg) rotateX(2deg) translateY(10px);
}

.mockup-header {
    background: #0F172A;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255, 0.05);
}

.mockup-header i {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.mockup-header i:nth-child(1) { background: #EF4444; }
.mockup-header i:nth-child(2) { background: #F59E0B; }
.mockup-header i:nth-child(3) { background: #10B981; }

.mock-title {
    margin-left: 1rem;
    color: rgba(255,255,255, 0.4);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.browser-mockup img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen; /* Adiciona estética cinemática dark às fotos do gráfico */
}


/* =========================================================================
   SEÇÃO 5: PLANOS / PRICING ASSIMÉTRICO (ALTO CONTRASTE)
   ========================================================================= */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-surface);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 4rem;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Máquina Completa é discretamente mais larga */
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center; 
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    transition: var(--transition-smooth);
}

.pricing-card.basic {
    background: transparent;
    border: 2px solid #E2E8F0;
}

.pricing-card.premium {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 40px 80px rgba(17, 94, 89, 0.25);
    position: relative;
    transform: scale(1.05); /* Ela base já nasce maior */
    z-index: 2;
}

.pricing-card.premium:hover {
    transform: scale(1.08) translateY(-10px);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-round);
    white-space: nowrap;
}

.plan-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.premium .plan-header h3 { color: white; }

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text);
    margin: 1rem 0;
    line-height: 1;
}

.premium .plan-price {
    color: white;
}

.plan-price span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.premium .plan-price span {
    color: rgba(255,255,255,0.7);
}

.price-sub {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 2rem;
}

.plan-body p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.premium .plan-body p { color: rgba(255,255,255,0.9); }

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    width: 100%;
}

.btn-outline:hover { background: rgba(17,94,89,0.05); }

.btn-accent {
    background: var(--color-accent);
    color: white;
    width: 100%;
    box-shadow: 0 10px 25px rgba(217,119,6,0.25);
}

.btn-accent:hover { background: #F59E0B; transform: translateY(-3px); }


/* =========================================================================
   SEÇÃO 6: FAQ MASONRY
   ========================================================================= */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    border-left: 2px solid var(--color-primary-light);
    padding-left: 1rem;
}

.faq-item p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================================================================
   SEÇÃO 7: CONTATO (ISOLATION)
   ========================================================================= */
.cta-final-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: var(--color-bg);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.cta-isolation {
    max-width: 800px;
    text-align: center;
}

.cta-isolation h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.cta-isolation p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-whatsapp {
    background: #25D366; /* Cor nativa quente verde WA */
    color: white;
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
    box-shadow: 0 20px 40px rgba(37,211,102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.02);
}

.giant-pulse {
    position: relative;
}

.giant-pulse::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-round);
    border: 2px solid #25D366;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.1);
        opacity: 0;
    }
}


/* =========================================================================
   SCROLL REVEAL HELPERS (Evitar pesados JS)
   ========================================================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================================
   RESPONSIVIDADE GERAL
   ========================================================================= */
@media (max-width: 991px) {
    /* Hero e Problem */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .floating-card {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        padding: 1rem;
    }
    
    .problem-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-content {
        margin-left: 0;
        margin-top: -80px; /* Overlap vira vertical */
        padding: 2rem;
    }

    .image-mask {
        border-top-right-radius: 60px;
        border-bottom-left-radius: 40px;
        height: 400px;
    }

    .hero-visual {
        order: -1; /* Imagem sobe no mobile */
    }

    /* Outras seções */
    .bento-grid { grid-template-columns: 1fr; }
    
    .case-block, .case-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.premium {
        transform: scale(1); /* Tira o offset chato no mobile */
        margin-top: 1rem;
    }

    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .authority-header h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .trust-indicator {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .bento-card {
        padding: 2rem 1.5rem;
    }
    
    .bento-card::after {
        font-size: 150px;
        bottom: -40px;
        right: -10px;
    }

    .results-cases { gap: 5rem; }
    
    .cta-isolation h2 {
        font-size: 2.5rem;
    }
    
    .btn-whatsapp {
        font-size: 1.125rem;
        padding: 1.25rem 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-highlights {
        padding-left: 0;
        border-left: none;
    }

    .highlight-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .highlight-item strong {
        min-width: auto;
        font-size: 1.75rem;
    }
}

/* =========================================================================
   MODAL LEAD CAPTURE
   ========================================================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(6, 42, 39, 0.85); /* Dark Teal overlay */
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3rem);
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-text-light);
}

/* FORM STYLES CLIP */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(17, 94, 89, 0.1);
}

/* intl-tel-input override */
.iti { width: 100%; }
.iti__country-list { z-index: 10001; }

.form-feedback {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    min-height: 1.25rem;
}

.form-feedback.error { color: #EF4444; }
.form-feedback.success { color: var(--color-primary); }

.submit-btn {
    width: 100%;
    font-size: 1.125rem;
    padding: 1.25rem;
}
