/* ========================================================== *
   JEFFERSON FERREIRA - MAIN.CSS
   VERSAO FINAL — FONTES AMPLIADAS PARA IDOSOS + ESPACAMENTO GENEROSO + CANVAS
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', sans-serif;
    background: #060e1a;
    color: #f2f0eb; /* Texto ligeiramente mais claro para contraste ideal */
    overflow-x: hidden;
    line-height: 1.7; /* Maior espaçamento entre linhas para leitura confortável */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
:root {
    --navy: #0a1628;
    --navy-dark: #060e1a;
    --navy-light: #13203a;
    --gold: #d4af37; /* Dourado levemente mais vivo para destacar melhor */
    --gold-light: #f3db9e;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --text-body: #d0cecb; /* Corpo de texto mais claro para facilitar a leitura */
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(10, 22, 40, 0.75);
    --glass-border: rgba(212, 175, 55, 0.25);
    --success: #64c896;
    --warning: #ffb450;
    --error: #ff6666;
    --info: #6496ff;
}
/* ============================================================ */
/* KEYFRAMES */
/* ============================================================ */
@keyframes sm {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes sg {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}
.shimmer {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sm 4s ease-in-out infinite;
}
/* ============================================================ */
/* PROGRESS BAR + GLOBAL */
/* ============================================================ */
.progress-bar {
    position: fixed; top: 0; left: 0; width: 0%; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 9999; box-shadow: 0 0 20px var(--gold-glow);
    transition: width 0.08s linear;
}
section {
    padding: clamp(70px, 10vw, 130px) 0;
}
/* ============================================================ */
/* NAVBAR + OVERLAY MENU (Fontes maiores) */
/* ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: clamp(14px, 2vw, 20px) clamp(16px, 3vw, 24px);
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s; background: transparent;
}
.navbar.scrolled {
    background: rgba(6, 14, 26, 0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: clamp(12px, 1.5vw, 16px) clamp(16px, 3vw, 24px);
}
.navbar .logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 700; color: #fff;
}
.navbar .logo span { color: var(--gold); }
.nav-links { display: flex; gap: clamp(16px, 2vw, 28px); align-items: center; }
.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.9rem, 1.5vw, 1rem); /* Ampliado para legibilidade sênior */
    font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav-login {
    padding: 8px 18px; border: 1.5px solid var(--gold);
    border-radius: 50px; color: var(--gold);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    background: rgba(212, 175, 55, 0.08);
    font-weight: 600; transition: all 0.3s ease-in-out;
}
.btn-nav-login:hover {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: 0 0 15px var(--gold-glow);
}
.btn-nav-cadastrar {
    padding: 9px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px;
    color: #060e1a; font-weight: 700;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: all 0.3s ease-in-out;
}
.btn-nav-cadastrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}
.hamburger {
    display: none; flex-direction: column; gap: 6px; cursor: pointer;
    background: none; border: none; padding: 6px; z-index: 1100;
}
.hamburger span {
    display: block; width: 30px; height: 3px; background: #fff;
    transition: all 0.3s; border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.overlay-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    background: rgba(6, 14, 26, 0.98); backdrop-filter: blur(30px);
    z-index: 900; display: flex; flex-direction: column; justify-content: center;
    align-items: center; gap: 32px;
    opacity: 0; visibility: hidden; transition: all 0.6s;
}
.overlay-menu.open { opacity: 1; visibility: visible; }
.overlay-menu a {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 5vw, 2.3rem);
    color: rgba(255, 255, 255, 0.8); transition: all 0.4s;
}
.overlay-menu a:hover { color: var(--gold); transform: translateY(-3px); }
.overlay-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.overlay-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #060e1a;
    padding: clamp(14px, 3vw, 18px) clamp(30px, 6vw, 44px);
    border-radius: 50px; font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    box-shadow: 0 4px 30px var(--gold-glow); transition: all 0.3s ease;
}
.overlay-btn:hover { filter: brightness(1.1); transform: scale(1.03); }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}
/* ============================================================ */
/* HERO SLIDER */
/* ============================================================ */
.hero {
    position: relative; min-height: 100dvh; overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 50%, #0a1628 100%);
    transition: background 1.2s;
}
.hero-gradient {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(6,14,26,.97) 0%, rgba(6,14,26,.7) 60%, rgba(6,14,26,.45) 100%);
}
.hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 1.2s, visibility 1.2s; z-index: 2;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}
.hero-text { padding: 100px 0 40px; }
.hero-text .tag-hero {
    display: inline-block;
    background: rgba(212,175,55,.15); color: var(--gold);
    padding: 6px 18px; border-radius: 50px;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: clamp(14px, 2.5vw, 24px);
    border: 1px solid rgba(212,175,55,.3);
}
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    color: #fff; line-height: 1.15;
    margin-bottom: clamp(16px, 2vw, 24px); font-weight: 700;
}
.hero-text h1 .gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sg 3s ease-in-out infinite;
}
.hero-text .desc-hero {
    font-size: clamp(1rem, 2vw, 1.2rem); /* Ampliado para facilitar leitura de idosos */
    color: rgba(255,255,255,.8); line-height: 1.8;
    max-width: 560px; margin-bottom: clamp(24px, 3vw, 36px); font-weight: 400;
}
.hero-text .hero-btns { display: flex; gap: clamp(12px, 1.5vw, 20px); flex-wrap: wrap; }
/* BOTOES REUTILIZAVEIS (Tamanho e destaque aprimorados) */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, #b8943c, var(--gold), var(--gold-light));
    color: #060e1a;
    border: 2px solid rgba(255,255,255,.4);
    padding: clamp(14px, 2.2vw, 18px) clamp(24px, 4vw, 40px);
    border-radius: 50px; font-weight: 800;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem); cursor: pointer;
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 6px 30px rgba(212,175,55,.55);
    font-family: 'Inter', sans-serif;
    position: relative; z-index: 5;
    opacity: 1; pointer-events: auto;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212,175,55,.7);
    background: linear-gradient(135deg, var(--gold), #fff);
    color: #000;
}
.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    border: 2px solid rgba(255,255,255,.45);
    background: rgba(6,14,26,.8); color: #fff;
    padding: clamp(13px, 2.2vw, 17px) clamp(22px, 4vw, 38px);
    border-radius: 50px; font-weight: 700;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem); cursor: pointer;
    transition: all 0.4s cubic-bezier(.4,0,.2,1); backdrop-filter: blur(4px);
    position: relative; z-index: 5; opacity: 1;
}
.btn-secondary:hover {
    border-color: var(--gold); color: var(--gold);
    background: rgba(212,175,55,.15); transform: translateY(-2px);
}
.hero-image { display: flex; align-items: center; justify-content: center; }
.img-wrap {
    width: 100%; max-width: 440px; max-height: 70vh;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 2px solid rgba(212,175,55,.3);
}
.img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    aspect-ratio: 3/4; display: block;
}
.hero .slider-nav {
    position: absolute; bottom: clamp(16px, 3vh, 40px);
    left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: clamp(12px, 2vw, 18px); align-items: center;
}
.hero .slider-nav button {
    width: 12px; height: 12px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent; cursor: pointer; transition: all 0.6s; padding: 0;
}
.hero .slider-nav button.active {
    background: var(--gold); border-color: var(--gold);
    width: 40px; border-radius: 6px;
    box-shadow: 0 0 20px var(--gold-glow);
}
.hero .slider-count {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: rgba(255,255,255,.5);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px; margin-left: 6px;
}
/* ============================================================ */
/* SECTION LABELS + TITULOS + TEXTOS AMPLIADOS */
/* ============================================================ */
.section-label {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: clamp(10px, 1.5vw, 14px);
    font-family: 'JetBrains Mono', monospace;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    color: #fff; margin-bottom: clamp(16px, 2vw, 22px);
    font-weight: 700; line-height: 1.2;
}
.section-desc {
    font-size: clamp(1rem, 2.2vw, 1.15rem); /* Tamanho ideal para leitura sênior confortável */
    color: var(--text-body); line-height: 1.85;
    max-width: 720px; margin-bottom: clamp(28px, 5vw, 44px);
    font-weight: 400;
}
.section-desc strong { font-weight: 700; color: #fff; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.3), transparent);
    width: 80%; max-width: 600px;
    margin: 0 auto;
}
/* NEGRITOS DOURADOS EM TODAS AS SECOES DE TEXTO */
.hero-text strong,
.desc-hero strong,
.section-desc strong,
.about-text strong,
.about-text .hl,
.tl-item p strong,
.faq-a strong,
.agenda-info p strong,
.info-item .i-text strong,
.popup-card p strong,
.calc-resultado p strong,
.test-card blockquote p strong,
.cta-text strong,
.footer-brand strong,
.footer-brand .hl {
    color: var(--gold);
    font-weight: 700;
}
/* ============================================================ */
/* BENEFICIOS (COM CANVAS, OVERLAY E PROTECAO DO CARROSSEL) */
/* ============================================================ */
.section-benefits {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #09090b 100%);
    color: #ffffff;
    padding: clamp(70px, 10vw, 130px) 0;
    overflow: hidden;
}

/* Canvas de Fundo Dinâmico */
#benefits-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Overlay Estilizado para Profundidade */
.benefits-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

/* Organização de Camadas do Container */
.section-benefits .container {
    position: relative;
    z-index: 3;
}

/* ============================================================ */
/* ALINHAMENTO IDÊNTICO AO .services-grid PARA OS BENEFÍCIOS */
/* ============================================================ */

.section-benefits {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #09090b 100%);
    color: #ffffff;
    padding: clamp(80px, 10vw, 120px) 0;
    overflow: hidden;
}

.benefits-wrapper { 
    position: relative; 
    padding: 15px 0; 
}

.benefits-carousel {
    overflow: visible !important; 
    margin: 0;
    padding: 10px 0;
}

.benefits-track {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: stretch;
}

.benefit-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    list-style: none;
    display: flex;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--glass-bg, rgba(15, 23, 42, 0.6)); 
    backdrop-filter: blur(16px) saturate(1.3);
    border: 2px solid var(--glass-border, rgba(255, 255, 255, 0.1));
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(24px, 3vw, 34px) clamp(18px, 2.5vw, 28px);
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1; 
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1), border-color 0.3s;
    will-change: transform;
    position: relative;
}

/* Eleva o card para a camada superior no hover, mostrando todas as bordas */
/* Garante que o card preencha totalmente a altura do slide */
.benefit-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

/* Bloco interno de conteúdo flexível */
.card-content-area {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* TRQUE DE OURO: Altura mínima exata para acomodar títulos de até 2 linhas sem quebrar os outros */
.benefit-card h3 {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #fff; 
    margin-bottom: 12px;
    font-weight: 700; 
    line-height: 1.35;
    min-height: 2.7em; /* Trava a área do título em 2 linhas simétricas para todos */
    display: flex;
    align-items: center; /* Centraliza verticalmente caso tenha apenas 1 linha */
}

/* O parágrafo preenche o restante do espaço de forma igualitária */
.benefit-card p {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--text-body, #cbd5e1); 
    line-height: 1.6; 
    margin: 0;
    flex: 1;
}

.cat-prev { background: rgba(212,175,55,.2); color: var(--gold); border-color: rgba(212,175,55,.4); }
.cat-assist { background: rgba(100,200,150,.2); color: var(--success); border-color: rgba(100,200,150,.4); }
.cat-rev { background: rgba(100,150,255,.2); color: var(--info); border-color: rgba(100,150,255,.4); }
.cat-reab { background: rgba(255,180,80,.2); color: var(--warning); border-color: rgba(255,180,80,.4); }

.benefit-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid rgba(212,175,55,.4);
    background: rgba(10,22,40,.9); backdrop-filter: blur(8px);
    color: var(--gold); font-size: 1.1rem; cursor: pointer;
    transition: all 0.4s; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.benefit-arrow:hover { 
    background: var(--gold); 
    color: var(--navy); 
    box-shadow: 0 0 25px var(--gold-glow); 
}

.benefit-arrow.prev { left: -10px; }
.benefit-arrow.next { right: -10px; }

.benefit-dots { 
    display: flex; 
    justify-content: center; 
    gap: 8px; 
    margin-top: 20px; 
}

.benefit-dots button {
    width: 8px; height: 8px; border-radius: 50%; border: none;
    background: rgba(212,175,55,.3); cursor: pointer;
    transition: all 0.5s; padding: 0;
}

.benefit-dots button.active {
    background: var(--gold); width: 30px; border-radius: 6px;
    box-shadow: 0 0 12px var(--gold-glow);
}

.benefit-counter {
    text-align: center; margin-top: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem; color: rgba(255,255,255,.4); letter-spacing: 1.5px;
}
/* ============================================================ */
/* POPUP DE BENEFICIOS */
/* ============================================================ */
.popup-overlay {
    position: fixed; inset: 0;
    background: rgba(6,14,26,.9); backdrop-filter: blur(16px);
    z-index: 9998; display: none; align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.show { display: flex; }
.popup-card {
    background: rgba(10,22,40,.98);
    border: 2px solid rgba(212,175,55,.35); border-radius: 24px;
    padding: 40px 32px; max-width: 520px; width: 100%;
    position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.popup-card .popup-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid rgba(212,175,55,.3); background: transparent;
    color: rgba(255,255,255,.8); font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.popup-card .popup-close:hover { background: rgba(212,175,55,.2); color: var(--gold); }
.popup-card .popup-category {
    display: inline-block; font-size: 0.65rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 14px; border-radius: 50px; margin-bottom: 14px;
    border: 1.5px solid; font-family: 'JetBrains Mono', monospace;
}
.popup-card .popup-icon { font-size: 2.6rem; margin-bottom: 14px; }
.popup-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: #fff; margin-bottom: 12px; font-weight: 700;
}
.popup-card p {
    font-size: 1rem; color: var(--text-body);
    line-height: 1.85; font-weight: 400; margin-bottom: 24px;
}
.popup-card .popup-cta {
    display: inline-block; padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #060e1a; border-radius: 50px; font-weight: 800;
    font-size: 0.95rem; box-shadow: 0 4px 20px rgba(212,175,55,.4);
    transition: all 0.3s ease; text-align: center; width: 100%;
}
.popup-card .popup-cta:hover {
    transform: translateY(-2px); filter: brightness(1.1);
    box-shadow: 0 6px 25px rgba(212,175,55,.6);
}
/* ============================================================ */
/* SERVICOS (GLASS CARDS) + CORREÇÃO DE ESPAÇAMENTO (MAIOR RESPIRO) */
/* ============================================================ */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem; /* Ajustado para maior respiro entre os cards de conteúdo */
    margin-bottom: 3rem;
}

.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(16px) saturate(1.3);
    border: 2px solid var(--glass-border); border-radius: 24px;
    padding: clamp(2.5rem, 4vw, 3rem) clamp(2rem, 3vw, 2.5rem); /* Padding interno aprimorado */
    transition: all 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem; /* Espaçamento extra de respiro inferior */
}
.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,175,55,.5);
    box-shadow: 0 16px 45px rgba(0,0,0,.5);
}
.glass-card .icon-card {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(212,175,55,.08));
    border: 1.5px solid rgba(212,175,55,.3); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: clamp(18px, 3vw, 24px);
}
.glass-card h3 {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    margin-bottom: 12px; color: #fff; font-weight: 700; line-height: 1.4;
}
.glass-card p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--text-body); line-height: 1.8; font-weight: 400;
}
/* ============================================================ */
/* CALCULADORA + LGPD */
/* ============================================================ */
.calc-form { max-width: 600px; margin: 0 auto; }
.lgpd-group { margin-top: 8px; }
.lgpd-label {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    color: rgba(255,255,255,.75); line-height: 1.6;
    cursor: pointer;
}
.lgpd-label input[type="checkbox"] {
    width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0;
    accent-color: var(--gold); cursor: pointer;
}
.lgpd-label a { color: var(--gold); text-decoration: underline; font-weight: 600; }
.lgpd-label a:hover { color: var(--gold-light); }
.calc-resultado {
    display: none; margin-top: 28px;
    background: rgba(212,175,55,.12);
    border: 2px solid rgba(212,175,55,.3); border-radius: 20px;
    padding: 32px; text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.calc-resultado.show { display: block; }
.calc-resultado .calc-emoji { font-size: 2.8rem; margin-bottom: 12px; }
.calc-resultado h3 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; font-weight: 700; }
.calc-resultado p { color: var(--text-body); font-size: 0.95rem; line-height: 1.8; margin-bottom: 18px; }
.calc-resultado .calc-anos {
    font-size: 2.2rem; font-family: 'Playfair Display', serif;
    color: var(--gold); font-weight: 700; margin-bottom: 18px;
}
.calc-resultado .calc-alerta {
    font-size: 0.78rem; color: var(--text-muted); margin-top: 14px;
}
/* ============================================================ */
/* NOTICIAS */
/* ============================================================ */
.noticias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.noticia-card {
    background: var(--glass-bg); border: 2px solid var(--glass-border);
    border-radius: 20px; padding: clamp(22px, 3vw, 28px);
    display: flex; flex-direction: column;
    transition: all 0.4s; text-decoration: none; color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}
.noticia-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.4); }
.noticia-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.noticia-categoria {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px; font-family: 'JetBrains Mono', monospace; border: 1.5px solid;
}
.noticia-data { font-size: 0.75rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.noticia-card h3 {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #fff; font-weight: 700; line-height: 1.4; margin-bottom: 10px;
}
.noticia-card p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--text-body); line-height: 1.7; font-weight: 400;
    flex: 1; margin-bottom: 16px;
}
.noticia-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(212,175,55,.1); }
.noticia-fonte { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.noticia-ler { font-size: 0.82rem; color: var(--gold); font-weight: 700; }
.news-filters { margin-bottom: 28px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filtro-noticia {
    padding: 8px 20px; border-radius: 50px;
    border: 1.5px solid rgba(212,175,55,.25); background: transparent;
    color: rgba(255,255,255,.7);
    font-size: clamp(0.82rem, 1.5vw, 0.92rem);
    font-weight: 600; cursor: pointer; transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.filtro-noticia:hover { border-color: var(--gold); color: var(--gold); }
.filtro-noticia.active { background: rgba(212,175,55,.2); border-color: var(--gold); color: var(--gold); box-shadow: 0 0 15px var(--gold-glow); }
.cat-trab { color: #d4af37; border-color: rgba(212,175,55,0.3); background: rgba(212,175,55,0.1); }
.cat-geral { color: #e0e0e0; border-color: rgba(220,220,220,0.3); background: rgba(220,220,220,0.15); }
/* ============================================================ */
/* TIMELINE */
/* ============================================================ */
.timeline { max-width: 840px; margin: 0 auto; position: relative; list-style: none; }
.timeline::before {
    content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,.1));
}
.tl-item { padding-left: 80px; margin-bottom: 45px; position: relative; }
.tl-item:last-child { margin-bottom: 0; }
.tl-item::before {
    content: ''; position: absolute; left: 24px; top: 6px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--gold); border: 3px solid var(--navy-dark);
    box-shadow: 0 0 0 2px var(--gold), 0 0 20px rgba(212,175,55,.4);
}
.tl-item .year {
    font-family: 'JetBrains Mono', monospace; font-size: 0.9rem;
    color: var(--gold); font-weight: 700; margin-bottom: 6px; letter-spacing: 1px;
}
.tl-item h4 {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: #fff; margin-bottom: 6px; font-weight: 700;
}
.tl-item p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--text-body); line-height: 1.75; font-weight: 400;
}
/* ============================================================ */
/* SOBRE */
/* ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 60px); align-items: center; }
.about-img-wrap { border-radius: 24px; overflow: hidden; border: 2px solid rgba(212,175,55,.3); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.about-img-wrap img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 24px; }
.about-text p {
    color: var(--text-body); line-height: 1.9;
    margin-bottom: 18px; font-size: clamp(0.95rem, 2vw, 1.05rem); font-weight: 400;
}
.about-text .hl { color: var(--gold); font-weight: 700; }
.about-text strong.hl { color: var(--gold); font-weight: 700; }
.about-badges {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; /* Aumentado espaçamento */
    margin-top: 36px; list-style: none;
}
.badge-item {
    background: var(--glass-bg); border: 2px solid var(--glass-border);
    border-radius: 16px; padding: 18px 12px; text-align: center; transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.badge-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.badge-item .num {
    display: block; font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--gold); margin-bottom: 6px; font-weight: 700;
}
.badge-item .text-label {
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    color: var(--text-body); text-transform: uppercase;
    letter-spacing: 0.5px; font-weight: 600;
}
/* ============================================================ */
/* DEPOIMENTOS */
/* ============================================================ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.test-card { 
    padding: clamp(2.5rem, 4vw, 3rem) clamp(2rem, 3.5vw, 2.5rem); 
    margin-bottom: 1.5rem;
}
.test-card .quote-open {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; color: var(--gold); opacity: 0.25; line-height: 0.5;
    margin-bottom: 14px;
}
.test-card blockquote p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,.85); line-height: 1.85;
    margin-bottom: 22px; font-style: italic; font-weight: 400;
}
.test-card .author {
    display: flex; align-items: center; gap: 14px;
    border-top: 1px solid rgba(212,175,55,.15); padding-top: 18px;
}
.test-card .author .avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), rgba(212,175,55,.4));
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-weight: 700; font-size: 0.9rem;
    border: 2px solid rgba(212,175,55,.4); flex-shrink: 0;
}
.test-card .author strong { font-size: 0.9rem; color: #fff; font-weight: 700; display: block; }
.test-card .author span { font-size: 0.78rem; color: var(--text-body); }
/* ============================================================ */
/* FAQ */
/* ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid rgba(212,175,55,.15); }
.faq-item:first-of-type { border-top: 1.5px solid rgba(212,175,55,.15); }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.15rem); /* Aumentado para idosos lerem sem esforço */
    color: rgba(255,255,255,.95);
    padding: clamp(20px, 3vw, 26px) 0;
    transition: color 0.3s; gap: 16px;
    list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ''; }
.faq-q:hover { color: var(--gold); }
.faq-q .arrow {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid rgba(212,175,55,.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: all 0.4s;
    color: var(--gold); flex-shrink: 0;
}
.faq-item[open] .faq-q .arrow { transform: rotate(45deg); background: rgba(212,175,55,.2); border-color: var(--gold); }
.faq-a {
    color: var(--text-body); line-height: 1.9;
    font-size: clamp(0.92rem, 1.8vw, 1.02rem);
    font-weight: 400; padding-bottom: clamp(20px, 3vw, 26px);
    padding-right: 40px;
}
/* ============================================================ */
/* AGENDA */
/* ============================================================ */
.agenda-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 44px); align-items: start; }
.agenda-info h3 { font-size: clamp(1.15rem, 2.5vw, 1.3rem); color: #fff; font-weight: 700; margin-bottom: 12px; }
.agenda-info p {
    color: var(--text-body); line-height: 1.85;
    font-size: clamp(0.92rem, 1.8vw, 1.02rem); font-weight: 400; margin-bottom: 20px;
}
.agenda-info-list { list-style: none; }
.info-item {
    display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
    padding: clamp(14px, 2vw, 16px) clamp(16px, 2.5vw, 20px);
    background: var(--glass-bg); border-radius: 14px;
    border: 1.5px solid var(--glass-border);
}
.info-item .i-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(212,175,55,.15);
    border: 1.5px solid rgba(212,175,55,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
}
.info-item .i-text strong { display: block; font-size: clamp(0.85rem, 1.5vw, 0.95rem); color: var(--gold); font-weight: 700; }
.info-item .i-text span { font-size: clamp(0.8rem, 1.2vw, 0.85rem); color: var(--text-body); }
.agenda-form {
    background: var(--glass-bg); backdrop-filter: blur(16px) saturate(1.3);
    border: 2px solid var(--glass-border); border-radius: 24px;
    padding: clamp(28px, 4vw, 36px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.agenda-form h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.25rem);
    color: #fff; font-weight: 700; margin-bottom: clamp(18px, 3vw, 24px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.78rem;
    color: rgba(255,255,255,.7); margin-bottom: 8px;
    font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input, .form-group select {
    width: 100%; padding: 14px 16px;
    background: rgba(10,22,40,.6);
    border: 1.5px solid rgba(212,175,55,.2); border-radius: 12px;
    color: #fff; font-size: 16px; /* 16px evita zoom automático indesejado no mobile e garante legibilidade */
    font-family: 'Inter', sans-serif; outline: none; transition: border 0.3s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 20px rgba(212,175,55,.15); }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' fill='%23d4af37'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 18px center; cursor: pointer;
}
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 14px 0; }
.slot-btn {
    padding: 10px; background: rgba(10,22,40,.7);
    border: 1.5px solid rgba(212,175,55,.3); border-radius: 10px;
    color: rgba(255,255,255,.9);
    font-size: clamp(0.78rem, 1.8vw, 0.88rem);
    cursor: pointer; transition: all 0.3s;
    font-family: 'Inter', sans-serif; text-align: center; font-weight: 600;
}
.slot-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.15); }
.slot-btn.selected {
    background: rgba(212,175,55,.3);
    border-color: var(--gold);
    color: #fff; font-weight: 700;
    box-shadow: 0 0 15px var(--gold-glow);
}
.slot-btn.booked { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; border-color: transparent; }
.btn-agendar {
    width: 100%; padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #060e1a;
    border: 1.5px solid rgba(255,255,255,.3); border-radius: 14px;
    font-weight: 800; font-size: 1.05rem; cursor: pointer;
    transition: all 0.4s; font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 25px var(--gold-glow); margin-top: 10px;
    position: relative; z-index: 5; opacity: 1;
}
.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212,175,55,.6);
    background: linear-gradient(135deg, var(--gold-light), #fff);
}
.btn-small { display: inline-block; width: auto; padding: 14px 28px; }
.agenda-confirm { display: none; text-align: center; padding: 24px; }
.agenda-confirm.show { display: block; }
.agenda-confirm .check { font-size: 3rem; margin-bottom: 12px; }
.agenda-confirm h4 { font-size: 1.3rem; color: #fff; margin-bottom: 8px; font-weight: 700; }
.agenda-confirm p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 18px; }
/* ============================================================ */
/* CTA */
/* ============================================================ */
.cta-block {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: clamp(70px, 12vw, 110px) 24px;
    background: linear-gradient(180deg, #0a1628 0%, #030810 100%);
}
.cta-orb {
    position: absolute;
    width: 600px; 
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}
.cta-inner {
    position: relative;
    z-index: 10;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.cta-tag {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: clamp(10px, 1.5vw, 14px);
    text-align: center;
}
.cta-heading {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    color: #fff;
    margin-bottom: clamp(16px, 2vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.cta-shimmer {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sm 4s ease-in-out infinite;
}
.cta-text {
    display: block;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.85);
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto 36px;
    font-weight: 400;
    text-align: center;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #b8943c, var(--gold), var(--gold-light));
    color: #060e1a;
    border: 2px solid rgba(255,255,255,.4);
    padding: clamp(18px, 2.5vw, 24px) clamp(32px, 5vw, 52px);
    border-radius: 50px;
    font-weight: 800;
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 40px rgba(212,175,55,.6);
    transition: all 0.4s;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
    opacity: 1 !important;
    transform: none !important;
}
.cta-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--gold-light), #fff);
    box-shadow: 0 12px 45px rgba(212,175,55,.8);
    color: #000;
}
/* ============================================================ */
/* FOOTER */
/* ============================================================ */
.site-footer {
    background: #030810;
    padding: clamp(50px, 6vw, 70px) 24px;
    border-top: 2px solid rgba(212,175,55,.1);
    text-align: center;
}
.footer-inner {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-brand {
    color: rgba(255,255,255,.85);
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    line-height: 1.85;
    font-weight: 400;
    max-width: 640px;
    margin-bottom: 28px;
    text-align: center;
}
.footer-brand .hl {
    color: var(--gold);
    font-weight: 700;
}
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 3.5vw, 28px);
    margin-bottom: 28px;
    flex-wrap: wrap;
    max-width: 840px;
    text-align: center;
}
.footer-nav a {
    color: rgba(255,255,255,.8);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    transition: all 0.3s;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1.5px solid transparent;
    text-decoration: none;
}
.footer-nav a:hover {
    color: var(--gold-light);
    background: rgba(212,175,55,.1);
    border-color: rgba(212,175,55,.3);
}
.footer-link-login,
.footer-link-cadastro { background: transparent; }
.footer-copy {
    font-size: clamp(0.75rem, 1.2vw, 0.82rem);
    color: rgba(255,255,255,.5);
    font-weight: 400;
    margin-top: 10px;
    text-align: center;
}
/* ============================================================ */
/* RESPONSIVO */
/* ============================================================ */
@media (max-width: 1024px) {
    .benefit-slide { flex: 0 0 50%; }
    .services-grid, .test-grid, .noticias-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .agenda-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
}
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 24px 20px;
    }
    .hero-text {
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-text .desc-hero { max-width: 100%; }
    .hero-text .hero-btns { justify-content: center; }
    .hero-image {
        display: flex !important;
        padding: 10px 0;
        margin-top: 15px;
        width: 100%;
    }
    .hero-image .img-wrap {
        max-width: 420px;
        width: 100%;
        max-height: none;
    }
    .hero-image .img-wrap img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }
}
@media (max-width: 768px) {
    .benefit-slide { flex: 0 0 50%; }
    .benefit-arrow { display: none; }
    .slot-grid { grid-template-columns: repeat(3, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .about-badges { grid-template-columns: repeat(2, 1fr); }
    .hero-image .img-wrap { max-width: 380px; }
}
@media (max-width: 430px) {
    .hero-text { padding: 5px 0; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-text .desc-hero { font-size: 0.9rem; }
    .hero-text .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .hero-text .hero-btns .btn-primary,
    .hero-text .hero-btns .btn-secondary { width: 100%; }
    .hero-image .img-wrap {
        max-width: 340px;
        width: 100%;
    }
    .benefit-slide { flex: 0 0 100%; }
    .slot-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .test-grid, .noticias-grid { grid-template-columns: 1fr; }
    .about-badges { grid-template-columns: repeat(2, 1fr); }
    .hero .slider-nav { bottom: 8px; }
    .footer-nav { flex-direction: column; gap: 12px; }
}