/* ==========================================================================
   DESIGN SYSTEM: Puzoto Dark Premium — Clinicor Proposal
   Dark sofisticado com texturas, gradientes e glassmorphism médico
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Paleta Dark Premium — Grafite Azulado Profundo */
    --bg-deep: #0B0E12;
    --bg-dark: #0E1217;
    --bg-elevated: #121820;
    --bg-card: #141B24;
    --bg-card-hover: #182230;
    --border-color: rgba(255, 255, 255, 0.04);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(197, 48, 63, 0.2);

    /* Acentos */
    --accent-red: #C5303F;
    --accent-red-soft: #D94452;
    --accent-red-glow: rgba(197, 48, 63, 0.08);
    --accent-blue: #1E3A50;
    --accent-blue-light: #3D6A85;
    --accent-vinho: #72141F;
    --accent-vinho-glow: rgba(114, 20, 31, 0.06);

    /* Texto */
    --text-primary: #F0F2F5;
    --text-secondary: #C8CED6;
    --text-muted: #7A8A96;

    /* Fontes */
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-editorial: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-snappy: all 0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep);
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #1B2530; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-red); }

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: var(--text-primary);
}

p { color: var(--text-muted); font-weight: 400; }

.text-gradient-red {
    background: linear-gradient(135deg, var(--text-primary) 40%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ruído de textura global */
.noise {
    position: fixed;
    inset: 0;
    opacity: 0.018;
    z-index: 9999;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Orbs decorativas globais */
.orbs-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.04;
    will-change: transform;
}

.orb-1 {
    width: 550px; height: 550px;
    background: var(--accent-red);
    top: -120px; right: -150px;
}

.orb-2 {
    width: 600px; height: 600px;
    background: var(--accent-blue-light);
    bottom: 20%; left: -200px;
    opacity: 0.025;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 14, 18, 0.8);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo span { color: var(--accent-red); }

.badge-vicosa {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-muted);
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--text-primary);
    color: var(--bg-dark);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid var(--text-primary);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary svg { transition: var(--transition-snappy); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--text-primary);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--accent-red);
    background: var(--accent-red-glow);
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent-red);
    color: #FFFFFF;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid var(--accent-red);
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 48, 63, 0.35);
}

.btn-red:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--accent-red);
    box-shadow: 0 6px 20px rgba(197, 48, 63, 0.5);
    transform: translateY(-1px);
}


/* ==========================================================================
   SEÇÕES — BASE DARK PREMIUM
   ========================================================================== */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Cada seção recebe um fundo dark com variação sutil */
.section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Separadores editoriais entre seções */
.section + .section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-width: 500px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 48, 63, 0.12) 50%, transparent 100%);
    z-index: 3;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 1.25rem;
}

.section-label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1rem;
    max-width: 680px;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

/* ==========================================================================
   1. HERO / CAPA
   ========================================================================== */
.hero {
    min-height: calc(85vh - 70px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 60%, var(--bg-elevated) 100%);
}

/* Glow editorial sutil atrás do hero */
.hero::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(197, 48, 63, 0.04) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-right-box {
    border-left: 2px solid rgba(197, 48, 63, 0.15);
    padding-left: 2.5rem;
}

/* Mini-cards na Hero */
.hero-mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.hero-mini-card {
    background: rgba(20, 27, 36, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: var(--transition-smooth);
}

.hero-mini-card:hover {
    border-color: var(--border-hover);
    background: rgba(20, 27, 36, 0.85);
    transform: translateY(-2px);
}

.hero-mini-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--accent-red-glow);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-mini-text h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.hero-mini-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Card de Metadados na Hero */
.hero-meta-card {
    background: rgba(20, 27, 36, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.meta-item-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--accent-red-glow);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-item-content { display: flex; flex-direction: column; }

.meta-item-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.meta-item-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0 0 0.15rem 0;
}

.meta-item-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.meta-item-sub.font-red {
    color: #FFA5A5;
    font-weight: 600;
}

.hero-meta-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
    width: 100%;
}

/* ==========================================================================
   2. DIAGNÓSTICO
   ========================================================================== */
#diagnostico {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-dark) 50%, var(--bg-elevated) 100%);
}

/* Orb decorativa interna do diagnóstico */
#diagnostico::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(30, 58, 80, 0.06) 0%, transparent 65%);
    border-radius: 50%;
}

.diagnostico-destaque-box {
    background: rgba(197, 48, 63, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 48, 63, 0.1);
    border-radius: 16px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Linha de brilho editorial no topo do destaque */
.diagnostico-destaque-box::before {
    content: "";
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 48, 63, 0.3), transparent);
}

.destaque-box-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #FFA5A5;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 8px var(--accent-red);
}

.destaque-box-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

/* Grid de Cards do Diagnóstico */
.diagnostico-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.diagnostico-card-item {
    background: rgba(20, 27, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.diagnostico-card-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.03) 50%, transparent 90%);
}

.diagnostico-card-item:hover {
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    background: rgba(20, 27, 36, 0.7);
}

.diagnostico-card-item.highlight {
    border-color: rgba(197, 48, 63, 0.2);
    background: linear-gradient(180deg, rgba(20, 27, 36, 0.5) 0%, rgba(197, 48, 63, 0.03) 100%);
}

.diagnostico-card-item.highlight:hover {
    border-color: var(--accent-red);
}

.diag-card-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: 1.25rem;
}

.diagnostico-card-item.highlight .diag-card-icon {
    background: var(--accent-red-glow);
    border-color: rgba(197, 48, 63, 0.25);
}

.diagnostico-card-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.diagnostico-card-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   3. A OPORTUNIDADE
   ========================================================================== */
#oportunidade {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, #0F151C 50%, var(--bg-elevated) 100%);
}

#oportunidade::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(114, 20, 31, 0.04) 0%, transparent 60%);
    border-radius: 50%;
}

.oportunidade-editorial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.editorial-quote-clean {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.55;
    color: var(--text-secondary);
    font-weight: 500;
    font-style: normal;
    letter-spacing: -0.02em;
    margin: 0;
    position: relative;
}

/* Comparação visual */
.comparacao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.comparacao-box {
    background: rgba(20, 27, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.comparacao-box::before {
    content: "";
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}

.comparacao-box.hoje { border-color: rgba(197, 48, 63, 0.08); }
.comparacao-box.oficial {
    border-color: rgba(61, 106, 133, 0.15);
    background: linear-gradient(180deg, rgba(20, 27, 36, 0.5) 0%, rgba(61, 106, 133, 0.03) 100%);
}

.comparacao-box-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.dot-red, .dot-green {
    width: 8px; height: 8px;
    border-radius: 50%;
}

.dot-red {
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.dot-green {
    background: #3D6A85;
    box-shadow: 0 0 10px #3D6A85;
}

.comparacao-box-header h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0;
}

.comparacao-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.comparacao-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.comparacao-list li iconify-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.comparacao-box.hoje iconify-icon { color: var(--accent-red); opacity: 0.7; }
.comparacao-box.oficial iconify-icon { color: #3D6A85; }

/* ==========================================================================
   5. SOLUÇÃO PROPOSTA
   ========================================================================== */
#solucao {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-dark) 40%, #0F151C 100%);
}

#solucao::before {
    content: "";
    position: absolute;
    bottom: -80px; right: -120px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(30, 58, 80, 0.05) 0%, transparent 65%);
    border-radius: 50%;
}

/* Container dos Eixos */
.solucoes-eixos-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.solucoes-eixo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cabeçalho dos Eixos — premium com gradiente */
.solucoes-eixo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.solucoes-eixo-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), transparent);
    border-radius: 1px;
}

.eixo-tag {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    background: var(--accent-red-glow);
    border: 1px solid rgba(197, 48, 63, 0.12);
    color: #FFA5A5;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
}

.solucoes-eixo-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Grid de Solução — Eixo 01 (4 colunas) */
.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

/* Forçar 4 colunas no Eixo 01 */
.solucoes-eixo:first-child .solucoes-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Forçar 3 colunas nos Eixos 02 e 03 */
.solucoes-eixo:nth-child(2) .solucoes-grid,
.solucoes-eixo:nth-child(3) .solucoes-grid {
    grid-template-columns: repeat(3, 1fr);
}

.solucao-card {
    background: rgba(20, 27, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    padding: 1.75rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Linha de brilho sutil no topo de cada card */
.solucao-card::before {
    content: "";
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}

.solucao-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    background: rgba(20, 27, 36, 0.75);
}

.solucao-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.solucao-card:hover .solucao-icon {
    background: var(--accent-red-glow);
    border-color: var(--accent-red);
}

.solucao-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.solucao-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
}

/* Box de Objetivo do Projeto */
.objetivo-projeto-box {
    margin-top: 3.5rem;
    background: rgba(30, 58, 80, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(61, 106, 133, 0.1);
    border-radius: 20px;
    padding: 2.25rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.objetivo-projeto-box::before {
    content: "";
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(61, 106, 133, 0.12), transparent);
}

.objetivo-box-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(61, 106, 133, 0.08);
    color: var(--accent-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.objetivo-box-content h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.objetivo-box-content p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   6. PRÉVIA VISUAL DO SITE (MOCKUP)
   ========================================================================== */
#mockup {
    background: linear-gradient(180deg, #0F151C 0%, var(--bg-deep) 50%, var(--bg-dark) 100%);
}

.preview-container {
    background: rgba(14, 16, 18, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 4rem 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Glow sutil no container do mockup */
.preview-container::before {
    content: "";
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(197, 48, 63, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.preview-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 10;
}

.preview-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-red-glow);
    border: 1px solid rgba(197, 48, 63, 0.2);
    color: #FFA5A5;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

/* Observação do Showcase */
.showcase-observacao {
    margin-top: 1.5rem;
    background: rgba(114, 20, 31, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 48, 63, 0.12);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.obs-icon {
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.obs-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

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

.obs-text .premium-highlight {
    color: #FFA5A5;
    font-weight: 600;
}

/* ==========================================================================
   MOCKUP SITE WRAPPER — Estilo do projeto Diagnóstico
   ========================================================================== */
.site-wrapper-mockup {
    width: 100%;
    background-color: #FAF9F6;
    color: #54595F;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: left;
}

.site-bg-layers {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.site-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: blobFloat 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.site-blob.red-1 { background: #C5303F; width: 320px; height: 320px; top: -80px; left: -80px; }
.site-blob.red-2 { background: #A32D37; width: 250px; height: 250px; top: 40%; right: -80px; animation-delay: -5s; }
.site-blob.blue-1 { background: #162E40; width: 380px; height: 380px; bottom: -100px; left: 20%; animation-delay: -10s; opacity: 0.12; }

.site-mesh-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22, 46, 64, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 46, 64, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Nav do Site */
.site-nav-container { padding: 1rem 2rem 0.5rem 2rem; position: relative; z-index: 50; }

.site-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(22, 46, 64, 0.05), inset 0 1px 0 rgba(255,255,255,0.6);
    border-radius: 12px;
    padding: 0.4rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex; align-items: center; gap: 0.35rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800; font-size: 0.85rem;
    color: #162E40; letter-spacing: 0.02em;
    text-decoration: none;
}

.site-logo-icon {
    width: 20px; height: 20px;
    background: #C5303F; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF; font-size: 0.6rem;
}

.site-menu { display: flex; align-items: center; gap: 0.75rem; }
.site-menu a {
    font-family: 'Inter', sans-serif; font-size: 8px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #54595F; text-decoration: none;
    padding: 0.25rem 0.5rem; border-radius: 100px;
    transition: var(--transition-snappy);
}
.site-menu a:hover, .site-menu a.active { color: #C5303F; background: rgba(197, 48, 63, 0.06); }

.site-nav-right { display: flex; align-items: center; gap: 0.6rem; }

.site-social-btn {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(22, 46, 64, 0.04); border: 1px solid rgba(22, 46, 64, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: #54595F; text-decoration: none; font-size: 0.65rem;
    transition: var(--transition-snappy);
}
.site-social-btn:hover { color: #C5303F; background: rgba(197, 48, 63, 0.06); }

.site-nav-divider { width: 1px; height: 14px; background: rgba(22, 46, 64, 0.1); }

.site-status-badge {
    display: flex; align-items: center; gap: 0.3rem;
    padding: 0.2rem 0.5rem;
    background: rgba(182, 184, 26, 0.08); border: 1px solid rgba(182, 184, 26, 0.2);
    border-radius: 100px;
}

.site-status-dot { width: 4px; height: 4px; border-radius: 50%; background: #B6B81A; box-shadow: 0 0 6px #B6B81A; animation: blink 2s infinite; }
.site-status-lbl { font-size: 6.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #4B4D08; }

.site-btn-nav {
    background: linear-gradient(135deg, #162E40 0%, #C5303F 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 7.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0.35rem 0.8rem; border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(22, 46, 64, 0.12);
    transition: var(--transition-smooth);
    display: flex; align-items: center; gap: 0.3rem;
}
.site-btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(197, 48, 63, 0.2); }

/* Hero do Site */
.site-hero-section { padding: 0.75rem 3rem 0 3rem; position: relative; z-index: 10; overflow: visible; }

.site-hero-grid {
    display: grid;
    grid-template-columns: 1.38fr 0.62fr;
    gap: 1.5rem;
    align-items: center;
    padding: 0.5rem 2rem 0.5rem 2rem;
}

.site-hero-left {
    display: flex; flex-direction: column; align-items: flex-start;
    position: relative; padding-top: 0; margin-top: -25px;
}

.site-hero-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 46, 64, 0.1);
    color: #162E40; font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    padding: 0.35rem 0.8rem; border-radius: 100px;
    margin-bottom: 0.85rem; box-shadow: 0 3px 10px rgba(0,0,0,0.02);
}
.site-hero-badge::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #C5303F; }

.site-hero-left h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.15rem; color: #162E40; font-weight: 800;
    line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 0.85rem;
}

.site-hero-left h1 span.gradient-red {
    background-clip: text; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, #162E40 0%, #C5303F 100%);
    font-weight: 800;
}

.site-hero-quote-wrapper { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.site-hero-line { width: 3px; background: linear-gradient(to bottom, #162E40, #C5303F, transparent); border-radius: 2px; flex-shrink: 0; }

.site-hero-desc {
    font-family: 'Inter', sans-serif; font-size: 0.82rem;
    line-height: 1.55; color: #54595F; max-width: 420px;
}

/* Mini-Cards indicadores no mockup */
.site-hero-stats { display: flex; gap: 0.5rem; margin-top: 0.6rem; margin-bottom: 1.25rem; width: 100%; }

.site-stat-card {
    background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 46, 64, 0.05);
    box-shadow: 0 4px 12px rgba(22, 46, 64, 0.02);
    border-radius: 12px; padding: 0.45rem 0.6rem;
    display: flex; align-items: center; gap: 0.45rem;
    flex: 1; min-width: 0; transition: var(--transition-snappy);
}
.site-stat-card:hover { background: rgba(255, 255, 255, 0.65); border-color: rgba(138, 28, 40, 0.1); transform: translateY(-1px); }

.site-stat-icon {
    width: 24px; height: 24px; border-radius: 6px;
    background: rgba(114, 20, 31, 0.06); color: #72141F;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.site-stat-text { display: flex; flex-direction: column; min-width: 0; }
.site-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 8.5px; font-weight: 700; color: #162E40; letter-spacing: 0.02em; line-height: 1.1; }
.site-stat-lbl { font-size: 7.5px; font-weight: 500; color: #718086; margin-top: 0.02rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Dr. Mauricio */
.site-hero-right { position: relative; height: 100%; min-height: 580px; display: flex; align-items: flex-end; justify-content: center; overflow: visible; }

.site-doctor-bg {
    position: absolute; bottom: 120px; left: 50%; transform: translateX(-43%);
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(22, 46, 64, 0.16) 0%, rgba(22, 46, 64, 0.04) 50%, rgba(22, 46, 64, 0) 70%);
    border-radius: 50%; z-index: 0; filter: blur(80px); opacity: 0.6; flex-shrink: 0;
}

.site-doctor-ring-1 {
    position: absolute; bottom: 50px; left: 50%; transform: translateX(-43%);
    width: 530px; height: 530px;
    border: 1px dashed rgba(22, 46, 64, 0.05);
    border-radius: 50%; z-index: 0;
    animation: rotateClockwise 40s linear infinite; flex-shrink: 0;
}

.site-doctor-ring-2 {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-43%);
    width: 560px; height: 560px;
    border: 1px dotted rgba(114, 20, 31, 0.025);
    border-radius: 50%; z-index: 0;
    animation: rotateCounterClockwise 50s linear infinite; flex-shrink: 0;
}

.site-doctor-ring-dot {
    position: absolute; top: 0; left: 50%;
    width: 6px; height: 6px;
    background: #72141F; border-radius: 50%;
    box-shadow: 0 0 10px rgba(114, 20, 31, 0.4); opacity: 0.3;
}

.site-doctor-img {
    position: absolute; bottom: -80px; left: 50%; transform: translateX(-40%);
    width: 660px; height: 760px; object-fit: contain; z-index: 10; pointer-events: none;
    mask-image: linear-gradient(to top, transparent 2%, black 18%);
    -webkit-mask-image: linear-gradient(to top, transparent 2%, black 18%);
    filter: saturate(1.03) drop-shadow(0 15px 35px rgba(22, 46, 64, 0.15));
}

/* Badges flutuantes */
.site-badge-float {
    position: absolute; z-index: 20;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px; padding: 0.55rem 0.9rem;
    box-shadow: 0 8px 24px rgba(22, 46, 64, 0.08);
    display: flex; align-items: center; gap: 0.45rem;
    animation: mockupFloat 5s ease-in-out infinite;
}

.site-badge-float.bottom-right {
    bottom: 90px; right: -20px;
    background: rgba(22, 46, 64, 0.92); border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF; animation-delay: -2.5s; width: 170px;
}

.site-badge-float-icon {
    width: 24px; height: 24px; border-radius: 8px;
    background: rgba(22, 46, 64, 0.05);
    display: flex; align-items: center; justify-content: center;
    color: #162E40; font-size: 0.8rem; flex-shrink: 0;
}

.site-badge-float.bottom-right .site-badge-float-icon { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; }

.site-badge-float-text h5 { font-size: 0.75rem; font-weight: 700; margin: 0; line-height: 1.25; }
.site-badge-float-text span { font-size: 0.6rem; display: block; color: #8E9EA8; margin-top: 0.05rem; }

/* Mosaico de Cards */
.site-mosaico-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem; width: 100%; margin-top: 1.25rem;
    position: relative; z-index: 30;
}

.site-mosaico-card {
    border-radius: 20px; padding: 0.9rem 0.8rem;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: space-between;
    min-height: 130px; text-decoration: none;
    transition: var(--transition-smooth);
    position: relative; overflow: hidden;
}

.site-mosaico-card.white { background: #FFFFFF; color: #718086; border: 1px solid rgba(22, 46, 64, 0.03); box-shadow: 0 6px 18px rgba(22, 46, 64, 0.03); }
.site-mosaico-card.white:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(22, 46, 64, 0.06); }

.site-mosaico-card.cyan-grad { background: #72141F; color: rgba(255, 255, 255, 0.85); border: none; box-shadow: 0 6px 18px rgba(114, 20, 31, 0.12); }
.site-mosaico-card.cyan-grad:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(114, 20, 31, 0.22); }

.site-mosaico-card.dark-petrol { background: #162E40; color: rgba(255, 255, 255, 0.8); border: 1px solid rgba(255, 255, 255, 0.02); box-shadow: 0 6px 18px rgba(22, 46, 64, 0.10); }
.site-mosaico-card.dark-petrol:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(22, 46, 64, 0.20); }

.site-card-icon-wrap {
    width: 36px; height: 36px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth);
    margin-bottom: 0.6rem; flex-shrink: 0;
}
.site-card-icon-wrap.icon-cyan-light { background: rgba(114, 20, 31, 0.08); color: #72141F; }
.site-card-icon-wrap.icon-cyan-dark { background: rgba(255, 255, 255, 0.18); color: #FFFFFF; box-shadow: inset 0 1px 2px rgba(255,255,255,0.1); }
.site-card-icon-wrap.icon-white-shadow { background: #FFFFFF; color: #72141F; box-shadow: 0 3px 8px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.02); }
.site-card-icon-wrap.icon-dark-trans { background: rgba(255, 255, 255, 0.08); color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.06); }
.site-mosaico-card:hover .site-card-icon-wrap { transform: scale(1.03); }

.site-card-content { margin-bottom: auto; }

.site-mosaico-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11.5px; font-weight: 700; line-height: 1.25; margin-bottom: 0.15rem; }
.site-mosaico-card.white h3 { color: #162E40; }
.site-mosaico-card.cyan-grad h3, .site-mosaico-card.dark-petrol h3 { color: #FFFFFF; }

.site-mosaico-card p { font-family: 'Inter', sans-serif; font-size: 8.2px; line-height: 1.35; margin: 0; }
.site-mosaico-card.white p { color: #718086; }
.site-mosaico-card.cyan-grad p, .site-mosaico-card.dark-petrol p { color: rgba(255, 255, 255, 0.85); }

.site-card-link-act {
    font-family: 'Inter', sans-serif; font-size: 8px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    display: inline-flex; align-items: center; gap: 0.25rem;
    text-decoration: none; margin-top: 0.6rem; transition: var(--transition-snappy);
}
.site-mosaico-card.white .site-card-link-act { color: #72141F; }
.site-mosaico-card.cyan-grad .site-card-link-act, .site-mosaico-card.dark-petrol .site-card-link-act { color: #FFFFFF; }
.site-mosaico-card.dark-petrol .site-card-link-act { color: #FFA5A5; }
.site-mosaico-card:hover .site-card-link-act { opacity: 0.85; }

/* ==========================================================================
   7. INVESTIMENTO / PLANOS E VALORES
   ========================================================================== */
#investimento {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-elevated) 50%, var(--bg-dark) 100%);
}

/* Glow decorativo central */
#investimento::before {
    content: "";
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(197, 48, 63, 0.03) 0%, transparent 55%);
    border-radius: 50%;
}

.investimento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.price-card {
    background: rgba(20, 27, 36, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Brilho superior dos cards */
.price-card::before {
    content: "";
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.price-card.recommended {
    border-color: rgba(197, 48, 63, 0.35);
    background: linear-gradient(180deg, rgba(197, 48, 63, 0.04) 0%, rgba(20, 27, 36, 0.6) 40%, rgba(20, 27, 36, 0.5) 100%);
    box-shadow: 0 20px 60px rgba(197, 48, 63, 0.08), 0 0 0 1px rgba(197, 48, 63, 0.1);
}

.price-card.recommended::before {
    background: linear-gradient(90deg, transparent, rgba(197, 48, 63, 0.3), transparent);
}

.card-badge {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, #A32D37 100%);
    color: #FFFFFF;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(197, 48, 63, 0.25);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price-desc {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    justify-content: center;
}

.price-card.recommended .price-value {
    color: #FFA5A5;
}

.price-value span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.premium-reason-box {
    background: rgba(197, 48, 63, 0.04);
    border: 1px solid rgba(197, 48, 63, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    text-align: left;
}

.premium-reason-box iconify-icon { color: var(--accent-red); flex-shrink: 0; margin-top: 0.15rem; }
.premium-reason-box p { font-size: 0.8rem; line-height: 1.45; color: var(--text-muted); margin: 0; }

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.icon-check-green { color: #3D6A85; }
.icon-check-red { color: var(--accent-red); }

/* Condições de Pagamento */
.pagamento-condicoes {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 27, 36, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.pagamento-condicoes::before {
    content: "";
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}

.pagamento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pagamento-header-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--accent-red-glow);
    border: 1px solid rgba(197, 48, 63, 0.1);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pagamento-header h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0;
}

.pagamento-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.15rem 0 0 0;
}

.pagamento-itens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pagamento-item {
    background: rgba(20, 27, 36, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.pagamento-item:hover {
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.pagamento-item-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.pagamento-item h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.pagamento-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* ==========================================================================
   8. PRAZO / CRONOGRAMA
   ========================================================================== */
#prazo {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-elevated) 50%, var(--bg-dark) 100%);
}

#prazo::before {
    content: "";
    position: absolute;
    top: 30%; right: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(197, 48, 63, 0.03) 0%, transparent 60%);
    border-radius: 50%;
}

.cronograma-container {
    max-width: 760px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-blue-light) 60%, transparent 100%);
    opacity: 0.25;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -2.3rem; top: 0.25rem;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--accent-red);
    box-shadow: 0 0 12px rgba(197, 48, 63, 0.2);
}

.timeline-meta {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-red);
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    opacity: 0.85;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* ==========================================================================
   9. ENCERRAMENTO / CTA FINAL
   ========================================================================== */
.cta-final {
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-elevated) 50%, var(--bg-deep) 100%);
}

.cta-final::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(197, 48, 63, 0.05) 0%, transparent 55%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-final-box {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-final .btn-primary {
    box-shadow: 0 8px 32px rgba(197, 48, 63, 0.15);
}
.cta-final .btn-primary:hover {
    box-shadow: 0 12px 40px rgba(197, 48, 63, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3rem 0;
    background: #060810;
}

.footer-content-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand { display: flex; flex-direction: column; }
.footer-info { display: flex; flex-direction: column; align-items: flex-end; }

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes blobFloat { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 30px) scale(1.08); } }
@keyframes rotateClockwise { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateCounterClockwise { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes mockupFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes blink { 0%, 50%, 100% { opacity: 1; } 25%, 75% { opacity: 0.4; } }

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

/* Impressão */
@media print {
    body, html { background-color: #FFFFFF !important; color: #1A1D20 !important; font-size: 12pt !important; }
    .noise, .orbs-container { display: none !important; }
    .section { padding: 2rem 0 !important; page-break-inside: avoid; }
    .hero { min-height: auto !important; padding: 3rem 0 !important; }
    .hero-grid { grid-template-columns: 1fr !important; }
    .preview-container { background: #FFFFFF !important; border: 1px solid #E2E8F0 !important; box-shadow: none !important; }
    .site-doctor-bg, .site-doctor-ring-1, .site-doctor-ring-2 { display: none !important; }
    .investimento-grid { grid-template-columns: 1fr 1fr !important; }
    .price-card { border: 1px solid #CBD5E1 !important; background: #FFFFFF !important; }
    .price-card.recommended { border: 2px solid #C5303F !important; }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right-box {
        border-left: none;
        border-top: 2px solid rgba(197, 48, 63, 0.15);
        padding-left: 0;
        padding-top: 1.5rem;
    }

    /* Eixo 01 - 2 colunas em tablet */
    .solucoes-eixo:first-child .solucoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Eixos 02 e 03 continuam em 3 ou caem pra 2 */
    .solucoes-eixo:nth-child(2) .solucoes-grid,
    .solucoes-eixo:nth-child(3) .solucoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .site-hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .site-hero-quote-wrapper { justify-content: center; text-align: left; }
    .site-hero-stats { justify-content: center; }
    .site-mosaico-grid { grid-template-columns: repeat(2, 1fr); }
    .investimento-grid { grid-template-columns: 1fr; max-width: 480px; }
    .pagamento-itens { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

    .hero-mini-cards { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .section { padding: 4.5rem 0; }

    .preview-container { padding: 2rem 1rem; }
    .site-nav-container { padding: 1rem; }
    .site-menu, .site-nav-divider, .site-status-badge, .site-social-btn { display: none !important; }

    .site-hero-section { padding: 0.75rem 1.5rem 0 1.5rem; }
    .site-hero-grid { padding: 0.5rem 1rem; }

    .site-hero-right { min-height: 390px; }
    .site-doctor-bg { width: 290px; height: 290px; transform: translateX(-50%); bottom: 25px; }
    .site-doctor-ring-1 { width: 320px; height: 320px; transform: translateX(-50%); bottom: 10px; }
    .site-doctor-ring-2 { width: 340px; height: 340px; transform: translateX(-50%); bottom: 0px; }
    .site-doctor-img { width: 350px; height: 440px; transform: translateX(-50%); bottom: -60px; }
    .site-badge-float.bottom-right { right: 10px; bottom: 45px; width: 170px; }

    .site-mosaico-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; margin-top: 1rem; }
    .site-mosaico-card { min-height: 105px; padding: 0.65rem 0.55rem; border-radius: 12px; }
    .site-card-icon-wrap { width: 24px; height: 24px; border-radius: 6px; font-size: 0.65rem; margin-bottom: 0.4rem; }
    .site-mosaico-card h3 { font-size: 8.5px; margin-bottom: 0.1rem; }
    .site-mosaico-card p { font-size: 7px; line-height: 1.25; }
    .site-card-link-act { font-size: 7px; margin-top: 0.35rem; }

    .comparacao-grid { grid-template-columns: 1fr; }

    .solucoes-eixo:first-child .solucoes-grid,
    .solucoes-eixo:nth-child(2) .solucoes-grid,
    .solucoes-eixo:nth-child(3) .solucoes-grid {
        grid-template-columns: 1fr;
    }

    .solucoes-eixo-header { justify-content: center; }

    .objetivo-projeto-box {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
        gap: 1rem;
    }

    .price-card { padding: 2.5rem 1.5rem; }

    .pagamento-itens { grid-template-columns: 1fr; }

    .hero-mini-cards { grid-template-columns: 1fr 1fr; }
    .hero-mini-card { padding: 0.85rem 1rem; }
    .hero-mini-text h5 { font-size: 0.78rem; }
    .hero-meta-card { padding: 1.5rem 1.25rem; }

    .footer-content-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-info { align-items: center; text-align: center; }

    .cta-final { padding: 5rem 0; }
}

@media (max-width: 480px) {
    .hero-mini-cards { grid-template-columns: 1fr; }
    .site-hero-stats { flex-direction: column; }
    .site-stat-card { width: 100%; }
}

/* ==========================================================================
   MICROANIMAÇÕES CARDIOLÓGICAS — REFINAMENTO PREMIUM MÉDICO
   ========================================================================== */

/* ── Grid Médico/Técnico de Fundo ── */
.medical-grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.012;
    background-image:
        linear-gradient(rgba(197, 48, 63, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 48, 63, 0.15) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* ── Orb 3 — Vinho pulsante ── */
.orb-3 {
    width: 400px; height: 400px;
    background: var(--accent-vinho);
    top: 50%; right: 10%;
    opacity: 0.02;
    animation: orbPulse 12s ease-in-out infinite;
}

/* Orbs com flutuação lenta */
.orb-1 { animation: orbFloat1 20s ease-in-out infinite; }
.orb-2 { animation: orbFloat2 25s ease-in-out infinite; }

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.04; }
    50% { transform: translate(30px, -20px) scale(1.08); opacity: 0.06; }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.025; }
    50% { transform: translate(-25px, 15px) scale(1.05); opacity: 0.035; }
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); opacity: 0.02; }
    50% { transform: scale(1.12); opacity: 0.035; }
}

/* ── Linhas ECG Decorativas ── */
.ecg-line {
    position: absolute;
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.ecg-line .ecg-path {
    fill: none;
    stroke: var(--accent-red);
    stroke-width: 1.2;
    opacity: 0.06;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2400;
    stroke-dashoffset: 2400;
    animation: ecgDraw 6s ease-in-out forwards;
}

/* Posicionamento de cada ECG */
.ecg-hero {
    bottom: 15%;
    opacity: 0.7;
}

.ecg-hero .ecg-path {
    animation-delay: 0.5s;
}

.ecg-diagnostico {
    top: 20%;
    opacity: 0.7;
}

.ecg-diagnostico .ecg-path {
    animation-delay: 1s;
    stroke: var(--accent-vinho);
}

.ecg-investimento {
    bottom: 30%;
    opacity: 0.6;
}

.ecg-investimento .ecg-path {
    animation-delay: 0.3s;
}

.ecg-encerramento {
    top: 30%;
    opacity: 0.5;
}

.ecg-encerramento .ecg-path {
    animation-delay: 0.8s;
    stroke: var(--accent-blue-light);
    opacity: 0.04;
}

@keyframes ecgDraw {
    0% { stroke-dashoffset: 2400; }
    100% { stroke-dashoffset: 0; }
}

/* Animação contínua pós-draw: deslocamento horizontal sutil */
.ecg-line .ecg-path {
    animation: ecgDraw 5s ease-in-out forwards, ecgShift 18s linear 5s infinite;
}

@keyframes ecgShift {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -600; }
}

/* ── Hover Premium — Cards Globais ── */

/* Hero Mini-cards */
.hero-mini-card:hover {
    border-color: rgba(197, 48, 63, 0.15);
    background: rgba(20, 27, 36, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 48, 63, 0.06), 0 0 0 1px rgba(197, 48, 63, 0.05);
}

.hero-mini-card:hover .hero-mini-icon {
    transform: scale(1.08);
    background: rgba(197, 48, 63, 0.12);
    box-shadow: 0 0 16px rgba(197, 48, 63, 0.08);
    transition: var(--transition-smooth);
}

/* Diagnóstico Cards */
.diagnostico-card-item:hover {
    border-color: rgba(197, 48, 63, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(197, 48, 63, 0.06);
    background: rgba(20, 27, 36, 0.75);
}

.diagnostico-card-item:hover .diag-card-icon {
    transform: scale(1.06);
    background: var(--accent-red-glow);
    border-color: rgba(197, 48, 63, 0.2);
    box-shadow: 0 0 14px rgba(197, 48, 63, 0.1);
    transition: var(--transition-smooth);
}

.diagnostico-card-item.highlight:hover {
    border-color: var(--accent-red);
    box-shadow: 0 12px 40px rgba(197, 48, 63, 0.08), 0 0 0 1px rgba(197, 48, 63, 0.15);
}

/* Solução Cards */
.solucao-card:hover {
    border-color: rgba(197, 48, 63, 0.15);
    transform: translateY(-4px);
    background: rgba(20, 27, 36, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(197, 48, 63, 0.06);
}

.solucao-card:hover .solucao-icon {
    transform: scale(1.08);
    background: var(--accent-red-glow);
    border-color: var(--accent-red);
    box-shadow: 0 0 18px rgba(197, 48, 63, 0.1);
    transition: var(--transition-smooth);
}

/* Comparação Cards */
.comparacao-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.comparacao-box.oficial:hover {
    border-color: rgba(61, 106, 133, 0.25);
    box-shadow: 0 12px 40px rgba(61, 106, 133, 0.06);
}

/* ── Efeito Pulso Médico nos Ícones ── */
.hero-mini-icon,
.diag-card-icon,
.solucao-icon,
.objetivo-box-icon,
.pagamento-item-icon,
.pagamento-header-icon {
    transition: var(--transition-smooth);
}

/* Pulso cardíaco sutil nos ícones de coração/saúde */
@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.06); }
    28% { transform: scale(1); }
    42% { transform: scale(1.04); }
    56% { transform: scale(1); }
}

/* Aplica o pulse nos ícones com classe de saúde na interação global */
.diagnostico-card-item.highlight .diag-card-icon {
    animation: heartPulse 3s ease-in-out infinite;
}

/* ── Botões com Microanimação ── */

/* Shimmer sutil no hover dos botões primários */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 100%;
}

/* Botão CTA final — pulso de borda sutil */
.cta-final .btn-primary {
    box-shadow: 0 8px 32px rgba(197, 48, 63, 0.15);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(197, 48, 63, 0.15);
    }
    50% {
        box-shadow: 0 8px 40px rgba(197, 48, 63, 0.25), 0 0 0 3px rgba(197, 48, 63, 0.04);
    }
}

.cta-final .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(197, 48, 63, 0.3);
    animation: none;
}

/* Botão secundário — glow de borda */
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 48, 63, 0.05) 50%, transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-secondary:hover::after {
    left: 100%;
}

/* ── Card Premium — Borda Animada Luminosa ── */
.price-card.recommended {
    position: relative;
}

/* Glow animado na borda do card premium */
.price-card.recommended::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg,
        rgba(197, 48, 63, 0.25) 0%,
        rgba(197, 48, 63, 0.02) 30%,
        rgba(61, 106, 133, 0.08) 60%,
        rgba(197, 48, 63, 0.2) 100%
    );
    background-size: 300% 300%;
    z-index: -1;
    animation: borderShimmer 8s ease-in-out infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 1px;
}

@keyframes borderShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Selo Recomendado — Glow sutil */
.card-badge {
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(197, 48, 63, 0.25); }
    50% { box-shadow: 0 4px 24px rgba(197, 48, 63, 0.4), 0 0 0 2px rgba(197, 48, 63, 0.08); }
}

/* Hover no preço Premium */
.price-card.recommended:hover .price-value {
    text-shadow: 0 0 20px rgba(255, 165, 165, 0.15);
    transition: text-shadow 0.4s ease;
}

/* Hover nos price cards geral */
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.price-card.recommended:hover {
    box-shadow: 0 20px 60px rgba(197, 48, 63, 0.12), 0 0 0 1px rgba(197, 48, 63, 0.15);
}

/* ── Diagnóstico Box — Glow pulsante ── */
.diagnostico-destaque-box {
    animation: destaquePulse 6s ease-in-out infinite;
}

@keyframes destaquePulse {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        border-color: rgba(197, 48, 63, 0.1);
    }
    50% {
        box-shadow: 0 4px 40px rgba(197, 48, 63, 0.08);
        border-color: rgba(197, 48, 63, 0.18);
    }
}

/* Status dot com animação de pulso */
.status-dot {
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 8px var(--accent-red); transform: scale(1); }
    50% { box-shadow: 0 0 16px var(--accent-red); transform: scale(1.2); }
}

/* ── Pagamento cards hover ── */
.pagamento-item:hover {
    border-color: rgba(197, 48, 63, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.pagamento-item:hover .pagamento-item-icon {
    transform: scale(1.06);
    background: var(--accent-red-glow);
    border-color: rgba(197, 48, 63, 0.15);
    box-shadow: 0 0 12px rgba(197, 48, 63, 0.08);
    transition: var(--transition-smooth);
}

/* ── Timeline dots com pulso ── */
.timeline-dot {
    animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 12px rgba(197, 48, 63, 0.2); }
    50% { box-shadow: 0 0 20px rgba(197, 48, 63, 0.35); }
}

/* ── Separadores entre seções com brilho ECG ── */
.section + .section::after {
    animation: separatorPulse 4s ease-in-out infinite;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Hover no meta-card da hero ── */
.hero-meta-card:hover {
    border-color: rgba(197, 48, 63, 0.1);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    transition: var(--transition-smooth);
}

/* ── Objetivo projeto box hover ── */
.objetivo-projeto-box:hover {
    border-color: rgba(61, 106, 133, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.objetivo-projeto-box:hover .objetivo-box-icon {
    transform: scale(1.06);
    box-shadow: 0 0 14px rgba(61, 106, 133, 0.1);
    transition: var(--transition-smooth);
}

/* ── Showcase observação hover ── */
.showcase-observacao:hover {
    border-color: rgba(197, 48, 63, 0.2);
    background: rgba(114, 20, 31, 0.12);
    transition: var(--transition-smooth);
}

/* ── Pagamento container hover ── */
.pagamento-condicoes:hover {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   BLOCO DE VIDEOCHAMADA DISCRETO E PREMIUM
   ========================================================================== */
.videochamada-box {
    background: rgba(18, 24, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 580px;
    width: 100%;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.videochamada-box:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 48, 63, 0.2);
    box-shadow: 0 12px 40px 0 rgba(197, 48, 63, 0.05);
}

.videochamada-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.videochamada-icon {
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 48, 63, 0.1);
    border-radius: 8px;
    padding: 0.4rem;
}

.videochamada-box h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.videochamada-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.btn-videochamada {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-videochamada:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.btn-videochamada iconify-icon {
    color: var(--accent-red);
}

/* Responsividade do Bloco */
@media (max-width: 576px) {
    .videochamada-box {
        padding: 1.25rem 1.5rem;
    }
    .videochamada-header-row {
        flex-direction: row;
        align-items: center;
    }
    .btn-videochamada {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   ACESSIBILIDADE — prefers-reduced-motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ecg-line { display: none; }
    .medical-grid-bg { display: none; }

    .orb-1, .orb-2, .orb-3 {
        animation: none !important;
    }

    .price-card.recommended::after {
        animation: none !important;
        background-position: 0% 50%;
    }

    .card-badge { animation: none !important; }
    .status-dot { animation: none !important; }
    .timeline-dot { animation: none !important; }
    .diagnostico-destaque-box { animation: none !important; }
    .cta-final .btn-primary { animation: none !important; }
}

/* ==========================================================================
   OTIMIZAÇÃO RESPONSIVA E PREVIEW MOBILE EXCLUSIVA
   ========================================================================== */

/* Regras de ocultar/mostrar previews */
.mobile-preview {
    display: none;
}
.desktop-preview {
    display: block;
}
.badge-mobile {
    display: none;
}
.badge-desktop {
    display: inline;
}

@media (max-width: 768px) {
    /* Controle das prévias visualizáveis */
    .mobile-preview {
        display: block !important;
    }
    .desktop-preview {
        display: none !important;
    }
    .badge-mobile {
        display: inline-block !important;
    }
    .badge-desktop {
        display: none !important;
    }

    /* --- Spacings gerais e container --- */
    .section {
        padding: 4rem 0;
    }
    .container {
        padding: 0 1.25rem;
    }

    /* --- Header --- */
    .nav-container {
        height: auto;
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: space-between;
    }
    .badge-vicosa {
        padding: 0.25rem 0.6rem;
    }
    .badge-mobile {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: var(--text-muted);
    }

    /* --- Hero --- */
    .hero {
        padding: 2rem 0 3.5rem 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .hero-ctas a {
        width: 100%;
        justify-content: center;
    }
    .hero-right-box {
        border-left: none;
        border-top: 1px solid rgba(197, 48, 63, 0.15);
        padding-left: 0;
        padding-top: 2rem;
    }
    .hero-mini-cards {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .hero-mini-card {
        padding: 0.85rem 1.1rem;
    }

    /* --- Diagnóstico --- */
    .diagnostico-destaque-box {
        padding: 1.5rem;
    }
    .destaque-box-text {
        font-size: 1.1rem;
    }
    .diagnostico-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .diagnostico-card-item {
        padding: 1.5rem;
    }

    /* --- Oportunidade --- */
    .editorial-quote-clean {
        font-size: 1.25rem;
        line-height: 1.5;
    }
    .comparacao-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .comparacao-box {
        padding: 1.5rem;
    }

    /* --- Solução --- */
    .solucoes-eixos-container {
        gap: 2.5rem;
    }
    .solucoes-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .solucao-card {
        padding: 1.5rem;
    }
    .objetivo-projeto-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    /* --- Showcase / Mockup Mobile Premium --- */
    .preview-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    .showcase-observacao {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .site-wrapper-mockup.mobile-preview {
        display: block !important;
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        background-color: #FAF9F6;
        color: #54595F;
        border-radius: 20px;
        padding: 1.5rem 1.1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        text-align: left;
    }
    
    .site-mobile-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 20px rgba(22, 46, 64, 0.05), inset 0 1px 0 rgba(255,255,255,0.6);
        border-radius: 12px;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 50;
    }
    
    .site-mobile-nav .site-logo {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        font-size: 0.8rem !important;
        color: #162E40;
        text-decoration: none;
    }
    
    .site-mobile-nav .site-btn-nav-small {
        background: linear-gradient(135deg, #162E40 0%, #C5303F 100%);
        color: #FFFFFF;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 7.5px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.35rem 0.8rem;
        border-radius: 6px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(22, 46, 64, 0.12);
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }
    
    .site-mobile-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        z-index: 10;
    }
    
    .site-mobile-content .site-hero-badge {
        display: inline-flex;
        align-self: flex-start;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(22, 46, 64, 0.15);
        color: #162E40;
        font-size: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        padding: 0.3rem 0.75rem;
        border-radius: 100px;
    }
    
    .site-mobile-content h2 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.35rem !important;
        line-height: 1.25;
        font-weight: 800;
        letter-spacing: -0.02em;
        margin: 0;
        color: #162E40 !important;
    }
    
    .site-mobile-content h2 .gradient-red {
        background: linear-gradient(135deg, #162E40 30%, #C5303F 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .site-mobile-content .site-hero-desc {
        font-family: 'Inter', sans-serif;
        font-size: 0.78rem;
        line-height: 1.5;
        color: #54595F !important;
        margin: 0;
    }
    
    .site-mobile-ctas {
        display: flex;
        gap: 0.6rem;
    }
    
    .site-btn-nav-mobile {
        background: linear-gradient(135deg, #162E40 0%, #C5303F 100%);
        color: #FFFFFF;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.45rem 0.85rem;
        border-radius: 6px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(22, 46, 64, 0.12);
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .site-btn-secondary-mobile {
        background: rgba(22, 46, 64, 0.04);
        border: 1px solid rgba(22, 46, 64, 0.08);
        color: #54595F;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.45rem 0.85rem;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }
    
    .site-mobile-cards-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    @media (max-width: 480px) {
        .site-mobile-cards-list {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }
    }
    
    .site-mosaico-card-mobile {
        background: #FFFFFF;
        border: 1px solid rgba(22, 46, 64, 0.05);
        border-radius: 12px;
        padding: 0.65rem 0.55rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.35rem;
        box-shadow: 0 4px 12px rgba(22, 46, 64, 0.02);
        text-decoration: none;
        min-height: 80px;
        transition: var(--transition-smooth);
    }
    
    .site-mosaico-card-mobile.white {
        background: #FFFFFF;
        border-color: rgba(22, 46, 64, 0.05);
    }
    
    .site-mosaico-card-mobile.cyan-grad {
        background: linear-gradient(135deg, #162E40 0%, #0F1D26 100%);
        border-color: rgba(22, 46, 64, 0.1);
        color: #FFFFFF !important;
    }
    
    .site-mosaico-card-mobile.dark-petrol {
        background: linear-gradient(135deg, #72141F 0%, #4E0A12 100%);
        border-color: rgba(197, 48, 63, 0.15);
        color: #FFFFFF !important;
    }
    
    .site-mosaico-card-mobile .site-card-icon-wrap {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .site-mosaico-card-mobile.white .site-card-icon-wrap.icon-cyan-light {
        background: rgba(197, 48, 63, 0.06);
        color: #C5303F;
    }
    
    .site-mosaico-card-mobile.cyan-grad .site-card-icon-wrap.icon-cyan-dark {
        background: rgba(255, 255, 255, 0.1);
        color: #FFA5A5;
    }
    
    .site-mosaico-card-mobile.white .site-card-icon-wrap.icon-white-shadow {
        background: rgba(22, 46, 64, 0.05);
        color: #162E40;
    }
    
    .site-mosaico-card-mobile.dark-petrol .site-card-icon-wrap.icon-dark-trans {
        background: rgba(255, 255, 255, 0.08);
        color: #FFFFFF;
    }
    
    .site-mosaico-card-mobile .site-card-content h3 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 0.72rem !important;
        font-weight: 700;
        margin-bottom: 0.05rem;
        color: #162E40 !important;
    }
    
    .site-mosaico-card-mobile.cyan-grad .site-card-content h3,
    .site-mosaico-card-mobile.dark-petrol .site-card-content h3 {
        color: #FFFFFF !important;
    }
    
    .site-mosaico-card-mobile .site-card-content p {
        font-family: 'Inter', sans-serif;
        font-size: 0.6rem;
        line-height: 1.25;
        color: #7A8A96 !important;
        margin: 0;
    }
    
    .site-mosaico-card-mobile.cyan-grad .site-card-content p,
    .site-mosaico-card-mobile.dark-petrol .site-card-content p {
        color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .site-mobile-doctor-area {
        position: relative;
        width: 100%;
        height: 280px;
        margin-top: 0.75rem;
        background: radial-gradient(circle at bottom center, rgba(197, 48, 63, 0.02) 0%, transparent 70%);
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        border: 1px solid rgba(22, 46, 64, 0.05);
    }
    
    .site-doctor-bg-mobile {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at bottom center, rgba(197, 48, 63, 0.1) 0%, transparent 65%);
        z-index: 1;
    }
    
    .site-doctor-ring-1-mobile {
        position: absolute;
        width: 160px;
        height: 160px;
        border: 1px dashed rgba(197, 48, 63, 0.1);
        border-radius: 50%;
        bottom: -30px;
        left: calc(50% - 80px);
        z-index: 2;
        animation: rotateRing 30s linear infinite;
    }
    
    .site-doctor-ring-2-mobile {
        position: absolute;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(22, 46, 64, 0.03);
        border-radius: 50%;
        bottom: -60px;
        left: calc(50% - 110px);
        z-index: 1;
    }
    
    .site-doctor-img-mobile {
        position: relative;
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        z-index: 3;
        display: block;
        margin: 0 auto;
        transform: translateY(5px);
    }
    
    .site-badge-float-mobile-premium {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 260px;
        background: rgba(22, 46, 64, 0.94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 0.5rem 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        z-index: 10;
    }
    
    .site-badge-float-mobile-premium .site-badge-float-icon {
        width: 22px;
        height: 22px;
        border-radius: 5px;
        background: rgba(197, 48, 63, 0.2);
        color: #FFA5A5;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .site-badge-float-mobile-premium .site-badge-float-text {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    .site-badge-float-mobile-premium .site-badge-float-text h5 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 0.65rem !important;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin: 0 0 0.1rem 0;
    }
    
    .site-badge-float-mobile-premium .site-badge-float-text span {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 0.75rem;
        color: #FFA5A5;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .site-badge-float-mobile-premium .site-badge-float-text .crm {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 0.58rem;
        color: rgba(255, 255, 255, 0.5) !important;
        font-weight: 500;
        margin-top: 1px;
    }

    /* --- Investimento / Planos --- */
    .investimento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .price-card {
        padding: 2rem 1.25rem;
    }
    .price-card.recommended {
        padding: 2.25rem 1.25rem;
    }
    .pagamento-condicoes {
        padding: 1.5rem;
    }
    .pagamento-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    .pagamento-itens {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* --- Cronograma / Fases --- */
    .timeline {
        padding-left: 0.75rem;
    }
    .timeline-item {
        padding-left: 1.75rem;
        padding-bottom: 2.5rem;
    }
    .timeline-meta {
        font-size: 0.75rem;
    }
    .timeline-content h3 {
        font-size: 1rem;
    }
    .timeline-content p {
        font-size: 0.85rem;
    }
    
    /* --- Encerramento --- */
    .cta-final-box h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    .cta-final-box p {
        font-size: 0.95rem;
    }
    .videochamada-box {
        padding: 1.25rem 1rem;
    }
    .videochamada-header-row {
        flex-direction: row;
        align-items: center;
    }
    .btn-videochamada {
        width: 100%;
        justify-content: center;
    }
}

