/* ═══════════════════════════════════════════════════════════════════════
   ORBITAMED — IA DE ATENDIMENTO DARK EDITION v6
   Copy: Plano Atendimentoia Original
   Design: Healthtech-Inspired Premium / Glassmorphism / SVG Icons
   Fontes: Outfit (títulos) + JetBrains Mono (técnico)
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    --brand-dark: #0D1117; /* Sair do preto puro para Midnight Navy */
    --brand-dark-sec: #161B22;
    --brand-cyan: #66FCF1;
    --brand-emerald: #45A29E;
    --brand-silver: #8B949E;
    --brand-white: #FFFFFF;
    --brand-surface: #0D1117;
    --brand-border: rgba(255, 255, 255, 0.08);
    --brand-bg: #0D1117;
    --brand-purple: #A78BFA;
    --brand-red: #FF6464;
    --font-display: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
    background-color: var(--brand-dark);
    color: #E2E8F0; font-weight: 400; /* Substituído rgba(255,255,255,0.85) para Contraste AA */
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
strong { color: var(--brand-white); font-weight: 700; }
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem; /* Aumentado de 1.25rem para dar mais respiro */
}
@media (min-width: 1024px) {}
@media (max-width: 768px) {
    .container-custom { padding: 0 1.5rem; }
}


.text-gradient {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, #ffffff 50%, var(--brand-emerald) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    display: inline !important;
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes aura-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes aura-float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -50px); }
    66% { transform: translate(-20px, 30px); }
}

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

/* ─── ANIMAÇÕES ─── */
.anim-target {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(10px);
    transition: 
        opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), 
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        filter 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
}

.anim-target.is-visible { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0);
}

.anim-fallback { 
    opacity: 1 !important; 
    transform: translateY(0) scale(1) !important; 
    filter: blur(0) !important; 
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0; /* py-6 initial */
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(13, 17, 23, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.6);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    background: transparent !important;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    display: block;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(20, 184, 166, 0.4));
}
.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(0.2);
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

.nav-links .nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-silver);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    background: rgba(31, 40, 51, 0.8);
    border: 1px solid rgba(197, 198, 199, 0.2);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(102, 252, 241, 0.1);
}

.btn-glass:hover {
    background: var(--brand-dark-sec);
    border-color: rgba(102, 252, 241, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 95vh; display: flex; align-items: center;
    position: relative; padding: 10rem 0 6rem;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(140px); pointer-events: none; z-index: 0; opacity: 0.7; }
.hero-glow--cyan { width: 600px; height: 600px; background: rgba(102,252,241,0.08); top: -200px; right: -100px; animation: aura-pulse 8s infinite ease-in-out; }
.hero-glow--emerald { width: 500px; height: 500px; background: rgba(69,162,158,0.06); bottom: -100px; left: -100px; animation: aura-pulse 10s infinite ease-in-out; }

/* ─── UTILITÁRIOS DE ILUMINAÇÃO (AURAS) ─── */
.section-glow-wrap { position: relative; }
.glow-aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(180px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6; /* Aumentado de 0.4 */
    mix-blend-mode: plus-lighter;
}
.aura--cyan { background: radial-gradient(circle, var(--brand-cyan) 0%, transparent 70%); width: 800px; height: 800px; }
.aura--emerald { background: radial-gradient(circle, var(--brand-emerald) 0%, transparent 70%); width: 600px; height: 600px; }
.aura--purple { background: radial-gradient(circle, var(--brand-purple) 0%, transparent 70%); width: 500px; height: 500px; }
.aura--red { background: radial-gradient(circle, var(--brand-red) 0%, transparent 70%); width: 400px; height: 400px; }

.aura--top-right { top: -200px; right: -200px; }
.aura--top-left { top: -200px; left: -200px; }
.aura--bottom-right { bottom: -200px; right: -200px; }
.aura--bottom-left { bottom: -200px; left: -200px; }
.aura--center { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.hero-layout { text-align: left; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.hero-text-col { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.55rem 1.2rem; border-radius: 999px;
    background: rgba(5,6,8,0.9); border: 1px solid rgba(102,252,241,0.25);
    box-shadow: inset 0 0 12px rgba(102,252,241,0.08);
    margin-bottom: 2.5rem; backdrop-filter: blur(10px);
}
.hero-badge span:last-child {
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-cyan);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-cyan); box-shadow: 0 0 8px rgba(102,252,241,0.5); }

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800;
    line-height: 1.15; letter-spacing: -0.03em;
    color: var(--brand-white); margin-bottom: 2.5rem; max-width: 850px;
}

.text-highlight-maxx {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, #ffffff 50%, var(--brand-emerald) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}
.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.95); max-width: 650px;
    line-height: 1.7; margin-bottom: 3rem;
    border-left: 2px solid rgba(102,252,241,0.2); padding-left: 1.5rem; text-align: left;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8); /* Melhoria de contraste técnico */
}

.hero-cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
.btn-premium {
    display: inline-flex; align-items: center; gap: 1rem;
    padding: 1.1rem 2.5rem; border-radius: 14px;
    background: rgba(102,252,241,0.08); border: 1px solid rgba(102,252,241,0.35);
    color: var(--brand-cyan); font-family: var(--font-mono);
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-premium::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(102,252,241,0.15),transparent); opacity:0; transition:opacity 0.4s; }
.btn-premium:hover::before { opacity:1; }
.btn-premium:hover { background:rgba(102,252,241,0.14); box-shadow:0 0 40px rgba(102,252,241,0.15); transform:translateY(-2px); }
.btn-premium--large { padding: 1.3rem 3rem; font-size: 0.9rem; margin-top: 2rem; }
.btn-icon-svg { flex-shrink: 0; }
.btn-arrow { transition: transform 0.3s; font-size: 1.1rem; }
.btn-premium:hover .btn-arrow { transform: translateX(4px); }
.hero-micro-text { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; }

/* ═══════════════════════════════════════════════════════════════ */
/* HERO CHAT MOCKUP */
/* ═══════════════════════════════════════════════════════════════ */
.hero-visual-col {
    perspective: 1000px;
    width: 100%;
}

.chat-mockup {
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(102, 252, 241, 0.2);
    border-radius: 20px;
    overflow: hidden;
    /* Profundidade Dramática Solicitada */
    box-shadow: 
        0 40px 100px -20px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(102, 252, 241, 0.1),
        inset 0 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease, border-color 0.5s ease;
    padding: 0; 
    margin: 0 auto;
    max-width: 420px;
    position: relative;
}

.chat-mockup:hover {
    transform: rotateY(0) rotateX(0) translateY(-10px);
    border-color: rgba(102, 252, 241, 0.4);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(31, 41, 55, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(102, 252, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brand-white);
}

.chat-status {
    font-size: 0.75rem;
    color: var(--brand-emerald);
    display: flex;
    align-items: center;
    gap: 6px;
}
.chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-emerald);
    box-shadow: 0 0 8px var(--brand-emerald);
}

.chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 340px;
    overflow-y: auto;
}

.chat-body::-webkit-scrollbar {
    width: 4px;
}
.chat-body::-webkit-scrollbar-thumb {
    background: rgba(102,252,241,0.2);
    border-radius: 4px;
}

.msg {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    text-align: left; /* Alinhamento à esquerda forçado dentro do balão */
}

.msg-user {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 16px;
    align-self: flex-end;
    color: var(--brand-white);
}

.msg-ai {
    background: rgba(102, 252, 241, 0.08);
    border: 1px solid rgba(102, 252, 241, 0.2);
    border-radius: 16px 16px 16px 0;
    align-self: flex-start;
    color: var(--brand-white);
    box-shadow: inset 0 0 10px rgba(102, 252, 241, 0.05);
}

.msg-time {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
    text-align: right;
}

.msg-check {
    color: var(--brand-cyan);
}

.msg-typing {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

.dot {
    width: 5px;
    height: 5px;
    background: var(--brand-cyan);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-4px); opacity: 1; }
}

.anim-float {
    animation: floatChat 8s ease-in-out infinite;
}

@keyframes floatChat {
    0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-15px); }
}

/* Chat JS Animation classes */
.msg-fade-in {
    animation: msgFadeIn 0.4s ease forwards;
}

@keyframes msgFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Chat Widget Style */
.msg-widget {
    background: rgba(102, 252, 241, 0.1);
    border: 1px solid rgba(102, 252, 241, 0.3);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.widget-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-cyan);
    color: #0b0f19;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.widget-info h4 {
    font-size: 0.9rem;
    color: var(--brand-white);
    margin-bottom: 4px;
}
.widget-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75); font-weight: 300;
    white-space: pre-line;
}

/* ═══════════════════════════════════════════════════════════════ */
/* TICKER */
/* ═══════════════════════════════════════════════════════════════════ */
.ticker-wrap {
    width: 110%; 
    margin-left: -5%;
    overflow: hidden; 
    background: rgba(102, 252, 241, 0.03); /* Glassmorphism sutil para não cortar o glow */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(102, 252, 241, 0.1);
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
    padding: 1rem 0; 
    position: relative; 
    z-index: 10;
    transform: rotate(-2deg); /* Efeito de inclinação solicitado */
    margin-top: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.ticker-track { 
    display: flex; 
    width: max-content; 
    animation: ticker-scroll 50s linear infinite;
    transform: rotate(2deg); /* Neutraliza a inclinação para o texto ficar reto */
}
.ticker-item { 
    font-family:var(--font-mono); 
    font-size:0.85rem; 
    font-weight:800; 
    color: var(--brand-cyan); /* Texto cyan sobre o fundo escuro/glass */
    text-shadow: 0 0 10px rgba(102,252,241,0.3);
    text-transform:uppercase; 
    letter-spacing:0.12em; 
    white-space:nowrap; 
}
.ticker-sep { color:var(--brand-cyan); margin:0 2rem; font-size:0.6rem; opacity:0.5; }
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════════════════
   SECTIONS BASE
   ═══════════════════════════════════════════════════════════════════ */
.section-block { padding: 7rem 0; position: relative; }
.section-dark { background: transparent; }
/* Delimitador removido para efeito Infinite Glow */
.section-label {
    font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.8); margin-bottom: 1.2rem;
}
.section-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--brand-cyan); padding: 0.5rem 1.2rem;
    border-radius: 999px; border: 1px solid rgba(102,252,241,0.25);
    background: rgba(102,252,241,0.06); margin-bottom: 1.5rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em; margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title span {
    -webkit-text-fill-color: initial;
    background-clip: initial;
    -webkit-background-clip: initial;
}
.title-muted {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   DATA SPLIT (Inspirado "Física do Lucro" da Healthtech)
   ═══════════════════════════════════════════════════════════════════ */
.data-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
    margin-bottom: 3rem;
}
.data-body { font-size: 1.1rem; line-height: 1.75; color: #E2E8F0; font-weight: 300; margin-bottom: 1rem; }
.data-split__cards { display: flex; flex-direction: column; gap: 1rem; }
.data-card {
    background: rgba(15, 17, 23, 0.45); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition);
    position: relative; overflow: hidden; backdrop-filter: blur(20px);
}
.data-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg,transparent,rgba(102,252,241,0.3),transparent);
    opacity:0; transition:opacity 0.4s;
}
.data-card:hover::before { opacity:1; }
.data-card:hover { border-color:rgba(102,252,241,0.3); transform:translateY(-3px); box-shadow: 0 10px 40px -10px rgba(102,252,241,0.15); }
.data-card__number {
    font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.6rem;
    background: linear-gradient(135deg,var(--brand-emerald),var(--brand-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.data-card__desc { font-size: 0.95rem; line-height: 1.5; color: #E2E8F0; font-weight: 300; margin-bottom: 0.6rem; }
.data-card__source { font-family:var(--font-mono); font-size:0.65rem; letter-spacing:0.1em; color:rgba(255,255,255,0.6); text-transform:uppercase; }

/* Veredito (Inspirado callout da Healthtech) */
.veredito {
    display: flex; gap: 1.5rem; align-items: flex-start;
    background: rgba(15,17,23,0.6); border: 1px solid rgba(102,252,241,0.12);
    border-radius: var(--radius-lg); padding: 2rem 2.5rem;
    margin-top: 1rem;
}
.veredito__icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
    background: rgba(102,252,241,0.08); display:flex; align-items:center; justify-content:center;
}
.veredito strong { display:block; font-size:1.05rem; margin-bottom:0.3rem; }
.veredito p { font-size:0.95rem; line-height:1.6; color: #CBD5E0; font-weight: 400; margin:0; }

/* ═══════════════════════════════════════════════════════════════════
   PILARES GRID (Inspirado "4 Pilares Master" da Healthtech c/ SVG Icons)
   ═══════════════════════════════════════════════════════════════════ */
.pilares-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.pilar-card {
    background: rgba(15, 17, 23, 0.45); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl); padding: 3rem 2.5rem; transition: var(--transition);
    position: relative; overflow: hidden; backdrop-filter: blur(20px);
    display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}
.pilar-card:hover { border-color:rgba(102,252,241,0.3); transform:translateY(-6px); box-shadow:0 20px 60px rgba(102,252,241,0.12); }
.pilar-card--highlight { border-color: rgba(255,100,100,0.15); }

.pilar-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.pilar-icon--cyan { background: rgba(102,252,241,0.1); color: var(--brand-cyan); }
.pilar-icon--purple { background: rgba(167,139,250,0.1); color: var(--brand-purple); }
.pilar-icon--red { background: rgba(255,100,100,0.1); color: var(--brand-red); }

.pilar-num {
    font-family: var(--font-mono); font-size: 4rem; font-weight: 900;
    position: absolute; top: 1.5rem; right: 1.5rem;
    color: #8B949E; line-height: 1; /* Elevado para Slate-400 sólido para garantir Contraste AA no fundo dark */
}
.pilar-label {
    font-family: var(--font-mono); font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: #E2E8F0; margin-bottom: 0.8rem; /* Cinza muito claro para Acessibilidade 100 absoluto */
}
.pilar-card h3 {
    font-size: 1.4rem; font-weight: 700; color: var(--brand-white);
    margin-bottom: 1rem; line-height: 1.3;
}
.pilar-card p { color: #E2E8F0; font-weight: 300; font-size: 0.95rem; line-height: 1.65; }
.pilar-micro {
    display: block; margin-top: 1rem;
    font-size: 0.85rem; color: #81E6D9; font-style: italic; /* Ciano mais claro (Mint) para contraste 100% */
}
.pilar-line {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--brand-cyan), transparent);
}
.pilar-line--red { background: linear-gradient(90deg, var(--brand-red), transparent); }

.exclusive-tag {
    font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--brand-cyan); background: rgba(102,252,241,0.1);
    border: 1px solid rgba(102,252,241,0.2);
    padding: 0.2rem 0.6rem; border-radius: 999px;
    vertical-align: middle; margin-left: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   STEPS (Como Funciona)
   ═══════════════════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
    background: rgba(15, 17, 23, 0.45); border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl); padding: 2.5rem; transition: var(--transition);
    position: relative; overflow: hidden; backdrop-filter: blur(20px);
}
.step-card:hover { border-color:rgba(102,252,241,0.3); transform:translateY(-4px); box-shadow: 0 15px 45px -10px rgba(102,252,241,0.12); }
.step-number {
    font-family: var(--font-mono); font-size: 2.5rem; font-weight: 900;
    background:linear-gradient(135deg,var(--brand-emerald),var(--brand-cyan));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    line-height:1; margin-bottom:1.5rem; opacity:0.4;
}
.step-card h3 { font-size:1.3rem; font-weight:700; color:var(--brand-white); margin-bottom:1rem; line-height:1.3; }
.step-time {
    font-family:var(--font-mono); font-size:0.65rem; font-weight:700;
    letter-spacing:0.1em; text-transform:uppercase; color:var(--brand-cyan);
    background:rgba(102,252,241,0.1); border:1px solid rgba(102,252,241,0.2);
    padding:0.15rem 0.5rem; border-radius:999px; vertical-align:middle; margin-left:0.4rem;
}
.step-card p { color: #E2E8F0; font-weight: 300; font-size:0.95rem; line-height:1.65; }
.step-micro { display:block; margin-top:1rem; color:#81E6D9; font-size:0.85rem; font-style:italic; }

/* ═══════════════════════════════════════════════════════════════════
   ORIGIN
   ═══════════════════════════════════════════════════════════════════ */
.origin-section { background: transparent; }
.origin-orb { position:absolute; border-radius:50%; filter:blur(120px); pointer-events:none; }
.origin-orb--top { width:500px; height:500px; background:rgba(102,252,241,0.04); top:-200px; right:-200px; }
.origin-orb--bottom { width:400px; height:400px; background:rgba(69,162,158,0.04); bottom:-200px; left:-200px; }
.origin-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:4rem; align-items:start; }
.founder-photo { position:relative; }
.founder-photo-glow {
    position:absolute; inset:-10px;
    background:linear-gradient(135deg,rgba(69,162,158,0.2),transparent 60%);
    border-radius:var(--radius-xl); transform:rotate(-3deg) scale(1.02);
}
.founder-card {
    position:relative; border-radius:var(--radius-xl); 
    background:rgba(15,17,23,0.4); border:1px solid var(--brand-border);
    backdrop-filter:blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem; /* Respiro para não cortar ombros/cabeça no border-radius */
    overflow: hidden;
}
.founder-card img { 
    width:100%; 
    height:auto; 
    border-radius: var(--radius-lg); 
    object-fit:cover; 
    transition:transform 0.8s cubic-bezier(0.4,0,0.2,1); 
}
.founder-card:hover img { transform:scale(1.04); }
.founder-overlay { 
    position:absolute; inset:0; 
    background:linear-gradient(to top, rgba(5,6,8,0.9) 0%, rgba(5,6,8,0.3) 30%, transparent 60%); 
    pointer-events:none; 
    border-radius:var(--radius-xl);
}
.founder-caption { position:absolute; bottom:0; left:0; padding:2.5rem; z-index:2; width: 100%; }
.founder-quote-icon { font-size:2rem; color:var(--brand-emerald); opacity:0.5; display:block; line-height:1; margin-bottom:0.5rem; font-family:Georgia,serif; }
.founder-caption h3 { font-size:1.6rem; font-weight:800; color:var(--brand-white); margin:0; letter-spacing:-0.02em; }
.founder-caption p { font-family:var(--font-mono); font-size:0.8rem; font-weight:500; letter-spacing:0.08em; color:var(--brand-cyan); margin:0.2rem 0 0; text-transform:uppercase; }
.origin-text { display:flex; flex-direction:column; justify-content:center; padding-top:1rem; }
.origin-text p { font-size:1.1rem; line-height:1.75; color: #E2E8F0; font-weight: 300; margin-bottom:1.5rem; }
.origin-quote {
    padding-left:1.5rem; border-left:2px solid var(--brand-emerald);
    color:var(--brand-white); font-weight:500; font-style:italic;
    font-size:1.1rem; line-height:1.7; margin:1.5rem 0 2rem;
}

/* ═══════════════════════════════════════════════════════════════════
   INVESTIMENTO
   ═══════════════════════════════════════════════════════════════════ */
.invest-intro { text-align:center; font-size:1.1rem; color: #CBD5E0; font-weight: 300; max-width:600px; margin:0 auto 3rem; }
.invest-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; margin-bottom:1rem; }
.invest-item {
    background:rgba(15,17,23,0.5); border:1px solid var(--brand-border);
    border-radius:var(--radius-lg); padding:2rem; transition:var(--transition); text-align:left;
    display:flex; gap:1.2rem; align-items:flex-start;
}
.invest-item:hover { border-color:rgba(102,252,241,0.15); transform:translateY(-4px); }
.invest-icon-wrap {
    flex-shrink:0; width:44px; height:44px; border-radius:12px;
    background:rgba(102,252,241,0.08); color:var(--brand-cyan);
    display:flex; align-items:center; justify-content:center;
}
.invest-item p { font-size:0.95rem; line-height:1.6; color: #CBD5E0; font-weight: 300; }

/* Included List */
.included-list {
    background:rgba(15,17,23,0.5); border:1px solid var(--brand-border);
    border-radius:var(--radius-xl); padding:2.5rem 3rem;
    margin:3rem auto; max-width:700px;
}
.included-list h3 { font-size:1.2rem; font-weight:700; color:var(--brand-white); margin-bottom:1.5rem; }
.included-list ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.8rem; }
.included-list li { font-size:1rem; color: rgba(255, 255, 255, 0.75); font-weight: 300; line-height:1.5; display:flex; align-items:baseline; gap:0.6rem; }
.included-list li svg { flex-shrink:0; position:relative; top:2px; }
.included-note { margin-top:1.5rem; padding-top:1.5rem; border-top:1px solid var(--brand-border); color:#E2E8F0; font-size:0.9rem; font-style:italic; }

/* ═══════════════════════════════════════════════════════════════════
   FILTER (Para quem é / não é)
   ═══════════════════════════════════════════════════════════════════ */
.filter-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; max-width:900px; margin:0 auto; }
.filter-card {
    background:rgba(15,17,23,0.5); border:1px solid var(--brand-border);
    border-radius:var(--radius-xl); padding:2.5rem;
}
.filter-card__header { display:flex; align-items:center; gap:0.8rem; margin-bottom:1.5rem; }
.filter-card h3 { font-size:1.2rem; font-weight:700; color:var(--brand-white); margin:0; }
.filter-card ul { list-style:none; padding:0; display:flex; flex-direction:column; gap:0.8rem; }
.filter-card li { font-size:0.95rem; color: rgba(255, 255, 255, 0.75); font-weight: 300; line-height:1.5; padding-left:0.5rem; position:relative; }
.filter-card li::before { content:''; position:absolute; left:-0.5rem; top:0.55em; width:4px; height:4px; border-radius:50%; }
.filter-card--yes { border-color:rgba(102,252,241,0.25); box-shadow: inset 0 0 40px rgba(102,252,241,0.03), 0 10px 40px -10px rgba(102,252,241,0.1); }
.filter-card--yes li::before { background:var(--brand-cyan); }
.filter-card--no { border-color:rgba(255,100,100,0.15); }
.filter-card--no li::before { background:var(--brand-red); }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════ */
.faq-container { max-width:800px; }
.faq-list { display:flex; flex-direction:column; gap:0.8rem; }
.faq-item {
    background:rgba(15,17,23,0.5); border:1px solid var(--brand-border);
    border-radius:var(--radius-lg); overflow:hidden; transition:var(--transition);
}
.faq-item.is-open { border-color:rgba(69,162,158,0.25); box-shadow:0 0 30px rgba(69,162,158,0.06); }
.faq-question {
    width:100%; display:flex; justify-content:space-between; align-items:center;
    padding:1.5rem 2rem; cursor:pointer; background:none; border:none;
    color:var(--brand-silver); font-family:var(--font-display);
    font-size:1.05rem; font-weight:500; text-align:left; transition:color 0.3s;
}
.faq-item.is-open .faq-question { color:var(--brand-white); }
.faq-chevron { width:20px; height:20px; flex-shrink:0; color:var(--brand-emerald); transition:transform 0.3s; }
.faq-item.is-open .faq-chevron { transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-item.is-open .faq-answer { max-height:500px; }
.faq-answer-inner { padding:0 2rem 1.5rem; color: rgba(255, 255, 255, 0.75); font-weight: 300; font-size:0.95rem; line-height:1.7; border-top:1px solid var(--brand-border); padding-top:1.2rem; }

/* ═══════════════════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════════════════ */
.cta-final-section { padding:6rem 0; }
.cta-final-text { font-size:1.15rem; line-height:1.7; color: rgba(255, 255, 255, 0.75); font-weight: 300; max-width:600px; margin:0 auto 2.5rem; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer { border-top:1px solid var(--brand-border); padding:3rem 0; background: transparent; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap: wrap; gap: 2rem; }
.footer-logo { height:32px; opacity:0.8; transition: opacity 0.3s ease; }
.footer-logo:hover { opacity: 1; }
.site-footer p { font-size:0.85rem; color:#A0AEC0; margin: 0; }
.footer-links { display:flex; gap:1.5rem; align-items: center; }
.footer-links a { font-size:0.85rem; color:#E2E8F0; transition:color 0.3s; }
.footer-links a:hover { color:var(--brand-silver); }

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position:fixed; bottom:2rem; right:2rem; width:60px; height:60px;
    border-radius:50%; background:#25D366; color:#fff;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 4px 20px rgba(37,211,102,0.4); z-index:999; transition:var(--transition);
}
.whatsapp-float:hover { transform:scale(1.12); box-shadow:0 6px 30px rgba(37,211,102,0.5); }

/* ═══════════════════════════════════════════════════════════════ */
/* COMPARATIVO CLINICA VS IA */
/* ═══════════════════════════════════════════════════════════════ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.comp-col {
    background: rgba(11, 15, 25, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.comp-col--bad {
    border-color: rgba(255, 140, 0, 0.15);
    --theme-color: #ff8c00;
    --theme-glow: rgba(255, 140, 0, 0.4);
}
.comp-col--bad:hover {
    box-shadow: 0 10px 40px -10px rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.comp-col--good {
    border-color: rgba(102, 252, 241, 0.15);
    background: rgba(11, 15, 25, 0.3);
    --theme-color: var(--brand-cyan);
    --theme-glow: rgba(102, 252, 241, 0.4);
}
.comp-col--good:hover {
    box-shadow: 0 10px 40px -10px rgba(102, 252, 241, 0.15);
    border-color: rgba(102, 252, 241, 0.4);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.comp-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-white);
}

.comp-col--bad .comp-header svg { color: #ff8c00; }
.comp-col--good .comp-header svg { color: var(--brand-cyan); }

.comp-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

/* Vertical Line Track (Canal Vazio) */
.comp-timeline::before {
    content: '';
    position: absolute;
    top: 16px; /* Ajuste milimetrico para o centro do SVG superior (32px / 2) */
    bottom: 16px; /* Line morre EXATAMENTE no centro do ultimo SVG, sem sobras na tela inferior */
    left: 15px;
    width: 2px;
    z-index: 0;
    background: rgba(255, 255, 255, 0.05); /* Fica escuro aguardando a luz */
}

/* Light Beam Animation (Água preenchendo o canal solidamente e firmando) */
.comp-timeline::after {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px; /* Compartilha a mesma restrição absoluta que a base */
    left: 15px;
    width: 2px;
    z-index: 0;
    transform-origin: top;
    transform: scaleY(0);
    animation: timeline-fill-solid 3s ease-in-out 0.5s forwards;
}
.comp-col--bad .comp-timeline::after {
    background: #ff8c00;
    box-shadow: 0 0 8px #ff8c00;
}
.comp-col--good .comp-timeline::after {
    background: var(--brand-cyan);
    box-shadow: 0 0 8px var(--brand-cyan);
}

@keyframes timeline-fill-solid {
    0%   { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

.comp-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.comp-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050608;
    flex-shrink: 0;
    border: 2px solid;
    position: relative;
    z-index: 2; /* always above the timeline track */
    /* State Apagado Manual */
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    transition: all 0.3s ease;
}

/* Sequential Lighting Animation for Icons -> Dispara 1x e Fica (forwards) */
.comp-item:nth-child(1) .comp-icon { animation: icon-lit-1 3s ease-in-out 0.5s forwards; }
.comp-item:nth-child(2) .comp-icon { animation: icon-lit-2 3s ease-in-out 0.5s forwards; }
.comp-item:nth-child(3) .comp-icon { animation: icon-lit-3 3s ease-in-out 0.5s forwards; }
.comp-item:nth-child(4) .comp-icon { animation: icon-lit-4 3s ease-in-out 0.5s forwards; }

@keyframes icon-lit-1 {
    0%, 5% { border-color: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.15); box-shadow: none; }
    10%, 100% { border-color: var(--theme-color); color: var(--theme-color); box-shadow: 0 0 15px var(--theme-glow); }
}
@keyframes icon-lit-2 {
    0%, 30% { border-color: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.15); box-shadow: none; }
    35%, 100% { border-color: var(--theme-color); color: var(--theme-color); box-shadow: 0 0 15px var(--theme-glow); }
}
@keyframes icon-lit-3 {
    0%, 60% { border-color: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.15); box-shadow: none; }
    65%, 100% { border-color: var(--theme-color); color: var(--theme-color); box-shadow: 0 0 15px var(--theme-glow); }
}
@keyframes icon-lit-4 {
    0%, 90% { border-color: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.15); box-shadow: none; }
    95%, 100% { border-color: var(--theme-color); color: var(--theme-color); box-shadow: 0 0 15px var(--theme-glow); }
}

.comp-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comp-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.comp-tag {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.comp-tag--bad { background: rgba(255, 100, 100, 0.1); color: #ff6464; border: 1px solid rgba(255, 100, 100, 0.2); }
.comp-tag--good { background: rgba(102, 252, 241, 0.05); color: var(--brand-cyan); border: 1px solid rgba(102, 252, 241, 0.2); }

/* ═══════════════════════════════════════════════════════════════ */
/* ALINHAMENTOS E PROTEÇÕES DE HERANÇA */
/* Protege elementos contra o alinhamento central dos containers */
/* ═══════════════════════════════════════════════════════════════ */
.filter-card ul, 
.included-list, 
.pilar-card, 
.invest-item, 
.faq-question, 
.faq-answer-inner {
    text-align: left;
}

.cta-final-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════ */
/* RESPONSIVO */
/* ═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-text-col {
        align-items: center;
    }
    .hero-subtitle {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    .hero-cta-group {
        align-items: center;
    }
    .anim-float {
         animation: floatChatMobile 6s ease-in-out infinite;
    }
    @keyframes floatChatMobile {
         0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
         50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-8px); }
    }
    .chat-mockup {
        transform: rotateY(-4deg) rotateX(2deg);
    }
    .chat-mockup:hover {
        transform: rotateY(0) rotateX(0) translateY(-5px);
    }
    
    .nav-links { display: none; }
    .hero-title { font-size: 2rem; margin-bottom: 1.5rem; max-width: 100%; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; max-width: 100%; padding: 0 5%; }
    .pilares-grid, .steps-grid { grid-template-columns:1fr 1fr; }
    .invest-cards { grid-template-columns:1fr; }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width:768px) {
    .nav-inner { height: 70px; justify-content: space-between; padding: 0 1.5rem; flex-wrap: nowrap; align-items: center; }
    .logo { height: 45px; max-width: 160px; object-fit: contain; margin: 0; }
    .nav-links, .nav-actions { display:none; }
    .hero { min-height:80vh; padding:8rem 0 3rem; }
    .hero-title { font-size:1.6rem; line-height: 1.3; margin-bottom: 1.5rem; width: 100%; padding: 0 5px; }
    .hero-subtitle { font-size:1.05rem; border-left:none; padding: 0 10px; text-align:center; margin-bottom: 2rem; color: rgba(255,255,255,0.85); }
    .section-block { padding:4rem 0; }
    .section-title { font-size:1.8rem; margin-bottom:2.5rem; }
    .pilares-grid, .steps-grid, .filter-grid, .invest-cards { grid-template-columns:1fr; }
    .data-split, .origin-grid, .comparison-grid { grid-template-columns:1fr; gap:2rem; }
    .comp-col { padding: 2rem 1.5rem; }
    .included-list { padding:2rem; }
    .veredito { flex-direction:column; }
    .invest-item { flex-direction:column; }
    
    .footer-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
    .footer-links { justify-content: center; width: 100%; flex-wrap: wrap; }
    
    .hero-content { 
        display: flex; 
        flex-direction: column; 
        text-align: center; 
        gap: 2.5rem;
        padding: 0 1rem;
    }
    .hero-title {
        font-size: clamp(1.9rem, 7vw, 2.3rem); 
        line-height: 1.2;
        margin-bottom: 2rem;
        letter-spacing: -0.02em;
    }
    .hero-header-block { order: 1; }
    .hero-visual-block { 
        order: 2; 
        width: 100%; 
        perspective: 1000px;
        transform: scale(0.95);
    }
    .hero-cta-block { 
        order: 3;
        width: 100%;
    }
    .hero-cta-group { 
        display: flex;
        flex-direction: column; 
        width: 100%; 
        align-items: center; 
    }
    .btn-premium { width: 100%; justify-content: center; }
    .chat-mockup { max-width: 100%; }

    /* Ajuste de Glows Mobile — Fugir do Centro */
    .glow-aura { width: 400px !important; height: 400px !important; filter: blur(120px) !important; opacity: 0.4 !important; }
    .aura--center { top: 0 !important; left: -20% !important; transform: none !important; }
    .hero .glow-aura:first-child { top: -5% !important; left: -30% !important; }
    .hero .glow-aura:nth-child(2) { bottom: -5% !important; right: -30% !important; }
    .aura--top-right { top: -100px !important; right: -150px !important; }
    .aura--bottom-left { bottom: -100px !important; left: -150px !important; }
}

/* WhatsApp Float Custom - Anti-Clichê */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--brand-cyan), #0d9b94);
    color: #0b0f19;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(102, 252, 241, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: wp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(102, 252, 241, 0.6);
    filter: brightness(1.1);
}

.wp-tooltip {
    position: absolute;
    right: 80px; 
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 11, 16, 0.95);
    border: 1px solid rgba(102, 252, 241, 0.2);
    color: var(--brand-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    opacity: 0;
    animation: slide-in-tooltip 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s forwards;
}

.wp-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: wp-dot-pulse 1.5s infinite;
}

@keyframes wp-dot-pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes slide-in-tooltip {
    from { opacity: 0; transform: translate(20px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}

@keyframes wp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 252, 241, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(102, 252, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 252, 241, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .wp-tooltip {
        right: 70px;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* ═══════════════════════════════════════════════════════════ */
/* Mobile Menu Overlay & Hamburger */
/* ═══════════════════════════════════════════════════════════ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--brand-white);
    transition: all 0.3s ease-in-out;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
}
.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(8px); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 11, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden; /* Correção PageSpeed: esconde elementos focáveis quando fechado */
    opacity: 0;
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-menu-inner {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--brand-white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.mobile-menu-close:hover { color: var(--brand-cyan); }

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brand-white);
    transition: color 0.3s ease;
}
.mobile-link:hover, .mobile-link:focus {
    color: var(--brand-cyan);
}

.mobile-actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; position: relative; }
    .nav-inner { position: relative; }
}
