/* ==========================================================================
   ARQUIVO DE ESTILO GLOBAL - ACELERADOR DE CLÍNICAS
   ========================================================================== */

:root {
    --dark: #101010;
    --panel: #1a1a1a;
    --white: #ffffff;
    --gold: #C9A227;
    --gold-light: #E6C458;
    --gold-muted: rgba(201,162,39,0.14);
    --text-muted: #9a9a9a;
    --border: rgba(255,255,255,0.08);
    --amber: #e0a03f;
    --red: #c9524a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6, .display-font { font-family: 'Lato', sans-serif; }
p { color: rgba(255,255,255,0.62); line-height: 1.75; }
a { transition: color .2s; }

section { padding: 90px 0; }
.section-alt { background: #0b0b0b; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-tag { color: var(--gold); font-weight: 700; font-size: .85rem; margin-bottom: .6rem; display: block; }
.section-head { max-width: 660px; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 1rem; }
.section-head p { font-size: 1.02rem; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; transition-delay: calc(var(--i, 0) * .12s); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* NAVBAR & MENU DO WORDPRESS */
.navbar { background: rgba(16,16,16,0.85); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }
.navbar-brand { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--white) !important; letter-spacing: -0.5px; }
.navbar-brand span { color: var(--gold); }
.navbar-toggler { border: none; color: var(--white); background: transparent; padding: 0.25rem 0.5rem; }
.navbar-toggler:focus { box-shadow: none; }

.btn-nav { background: var(--gold); color: var(--dark) !important; border-radius: 8px; padding: .5rem 1.4rem !important; font-weight: 700; font-size: .88rem; transition: background .2s, transform .15s; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }

.navbar-collapse { align-items: center; justify-content: space-between; }
.navbar-nav { display: flex !important; flex-direction: row; align-items: center; list-style: none; margin-bottom: 0; padding-left: 0; gap: 0.5rem; }

.navbar-nav > li { position: relative; }
.navbar-nav > li > a { color: rgba(255,255,255,0.75) !important; font-weight: 500; font-size: .9rem; padding: .5rem 1rem !important; letter-spacing: .02em; text-decoration: none; display: block; transition: color .2s; }
.navbar-nav > li > a:hover, 
.navbar-nav > li.current-menu-item > a,
.navbar-nav > li.current_page_item > a { color: var(--white) !important; }

/* SUBMENU / DROPDOWN (WORDPRESS) */
.navbar-nav .sub-menu { position: absolute; top: 100%; left: 0; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; list-style: none; padding: 0.5rem 0; min-width: 260px; display: none; box-shadow: 0 20px 40px rgba(0,0,0,0.4); z-index: 1005; }
.navbar-nav > li:hover > .sub-menu { display: block; }
.navbar-nav .sub-menu li { width: 100%; }
.navbar-nav .sub-menu li a { padding: 0.6rem 1.2rem !important; font-size: 0.85rem; color: rgba(255,255,255,0.7) !important; white-space: nowrap; text-decoration: none; display: block; transition: background .2s, color .2s; }
.navbar-nav .sub-menu li a:hover { background: var(--gold-muted); color: var(--gold) !important; }

/* BREADCRUMB */
.breadcrumb-bar { background: #0b0b0b; border-bottom: 1px solid var(--border); padding: .9rem 0; }
.breadcrumb-bar ol { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: var(--text-muted); }
.breadcrumb-bar a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar li:not(:last-child)::after { content: '/'; margin-left: .4rem; color: rgba(255,255,255,.2); }
.breadcrumb-bar li.current { color: rgba(255,255,255,.55); }
.breadcrumb-custom { display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }
.breadcrumb-custom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--white); }

/* HERO & PAGE HEADER */
.hero, .page-header { padding: 100px 0 90px; position: relative; overflow: hidden; background: radial-gradient(ellipse 900px 500px at 78% -10%, rgba(201,162,39,0.16) 0%, transparent 60%), var(--dark); border-bottom: 1px solid var(--border); }
.page-header { padding: 64px 0 56px; }
.hero .kicker { display: flex; align-items: center; gap: .6rem; color: var(--gold); font-weight: 700; font-size: .85rem; margin-bottom: 1.5rem; }
.hero h1, .page-header h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 800; line-height: 1.14; letter-spacing: -1.2px; max-width: 800px; margin-bottom: 1.4rem; }
.page-header h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 760px; margin-bottom: .9rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead, .page-header p { font-size: 1.1rem; color: rgba(255,255,255,0.62); max-width: 620px; margin-bottom: 2.2rem; }
.page-header p { font-size: 1.05rem; margin: 0; }

.byline { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; font-size: .82rem; color: var(--text-muted); margin-bottom: 2rem; }
.byline b { color: rgba(255,255,255,.8); }
.byline .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.25); }

.btn-gold { background: var(--gold); color: var(--dark); border: none; border-radius: 10px; padding: .9rem 1.9rem; font-family: 'Lato', sans-serif; font-weight: 700; font-size: .98rem; display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; transition: all .25s; cursor: pointer; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); color: var(--dark); }
.btn-gold:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.22); border-radius: 10px; padding: .9rem 1.9rem; font-family: 'Lato', sans-serif; font-weight: 600; font-size: .98rem; display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; transition: all .25s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); transform: translateY(-2px); }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 3.2rem; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: 'Lato', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--white); }
.hero-stats .stat span { font-size: .82rem; color: var(--text-muted); }
.hero-proof { display: flex; gap: 1.8rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-proof div { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.hero-proof i { color: var(--gold); }

/* ==========================================================================
     ESTILOS ESPECÍFICOS: PÁGINA INICIAL (INDEX)
     ========================================================================== */

  /* PILLAR / PROBLEM CARDS */
  .pillar-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.8rem; height: 100%; }
  .pillar-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--gold-muted); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.3rem; }
  .pillar-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .7rem; }
  .pillar-card p { font-size: .92rem; margin-bottom: 0; }
  .pillar-note { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem 1.8rem; margin-top: 2.5rem; }
  .pillar-note p { margin-bottom: 0; font-size: .96rem; color: rgba(255,255,255,0.72); }

  /* SCC TRIANGLE */
  .scc-wrap { position: relative; max-width: 900px; margin: 0 auto; }
  .scc-ring { display: none; }
  .force-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .force-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 2.1rem 1.7rem; text-align: left; position: relative; }
  .force-card .force-num { position: absolute; top: 1.6rem; right: 1.7rem; font-family: 'Lato', sans-serif; font-weight: 800; font-size: .78rem; color: rgba(255,255,255,0.18); letter-spacing: .05em; }
  .force-icon { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; }
  .force-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; }
  .force-card p { font-size: .9rem; margin-bottom: 0; }
  .scc-caption { text-align: center; max-width: 560px; margin: 2.5rem auto 0; font-size: .96rem; color: rgba(255,255,255,0.55); }

  /* LOSS / DIAGNOSTIC */
  .loss-card { border: 1px solid var(--border); border-radius: 16px; padding: 1.9rem 1.7rem; height: 100%; background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent); }
  .loss-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 1.1rem; }
  .loss-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
  .loss-card p { font-size: .88rem; margin-bottom: 0; }
  .stat-banner {
    margin-top: 3rem; border-radius: 18px; padding: 2.4rem 2.2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2410 100%); border: 1px solid rgba(201,162,39,0.3);
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  }
  .stat-banner .figure { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--gold); white-space: nowrap; }
  .stat-banner p { margin-bottom: 0; color: rgba(255,255,255,0.7); max-width: 520px; font-size: .98rem; }

/* ARTICLE / CONTEÚDO */
article :is(h2,h3) { scroll-margin-top: 100px; }
article h2 { font-size: 1.7rem; font-weight: 800; margin: 0 0 1.2rem; letter-spacing: -.3px; }
article h3 { font-size: 1.2rem; font-weight: 700; margin: 1.8rem 0 .8rem; color: #fff; }
article p { font-size: 1rem; max-width: 760px; }
article ul, article ol { color: rgba(255,255,255,0.62); max-width: 760px; line-height: 1.8; }
article li { margin-bottom: .5rem; }
article strong { color: #fff; }

/* COMPONENTES DE SUPORTE */
.pillar-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.8rem; height: 100%; }
.pillar-card .picon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-muted); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.pillar-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .7rem; }
.pillar-card p { font-size: .92rem; margin-bottom: 0; }
.pillar-card .leak-flag { display: inline-block; margin-top: .7rem; font-size: .72rem; font-weight: 700; color: var(--amber); background: rgba(224,160,63,0.12); border-radius: 100px; padding: .2rem .65rem; }
.pillar-note { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 14px; padding: 1.6rem 1.8rem; margin-top: 2.5rem; }
.pillar-note p { margin-bottom: 0; font-size: .96rem; color: rgba(255,255,255,0.72); }

/* FORCES */
.scc-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.force-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.force-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 2.1rem 1.7rem; text-align: left; position: relative; }
.force-card .force-num { position: absolute; top: 1.6rem; right: 1.7rem; font-family: 'Lato', sans-serif; font-weight: 800; font-size: .78rem; color: rgba(255,255,255,0.18); letter-spacing: .05em; }
.force-icon { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1.2rem; }
.force-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; }
.force-card p { font-size: .9rem; margin-bottom: 0; }
.scc-caption { text-align: center; max-width: 560px; margin: 2.5rem auto 0; font-size: .96rem; color: rgba(255,255,255,0.55); }

/* LOSS / DIAGNOSTIC */
.loss-card { border: 1px solid var(--border); border-radius: 16px; padding: 1.9rem 1.7rem; height: 100%; background: linear-gradient(160deg, rgba(255,255,255,0.03), transparent); }
.loss-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 1.1rem; }
.loss-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.loss-card p { font-size: .88rem; margin-bottom: 0; }
.stat-banner { margin-top: 3rem; border-radius: 18px; padding: 2.4rem 2.2rem; background: linear-gradient(135deg, #1a1a1a 0%, #2a2410 100%); border: 1px solid rgba(201,162,39,0.3); display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.stat-banner .figure { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--gold); white-space: nowrap; }
.stat-banner p { margin-bottom: 0; color: rgba(255,255,255,0.7); max-width: 520px; font-size: .98rem; }

/* PROTOCOLS */
.protocol-card { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 2.2rem 1.9rem; height: 100%; display: flex; flex-direction: column; transition: border-color .25s, transform .25s; }
.protocol-card:hover { border-color: rgba(201,162,39,0.4); transform: translateY(-4px); }
.protocol-stage { color: var(--gold); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
.protocol-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .9rem; }
.protocol-card p { font-size: .92rem; flex-grow: 1; }
.protocol-card .divider { height: 1px; background: var(--border); margin: 1.3rem 0; }
.protocol-card .for-who { font-size: .82rem; color: rgba(255,255,255,0.45); }
.protocol-card.featured { border-color: rgba(201,162,39,0.5); background: linear-gradient(160deg, #1e1a0e, #161616); }

/* MANIFESTO / STORY / ABOUT */
.story-row { display: flex; gap: 3rem; flex-wrap: wrap; align-items: flex-start; }
.story-label { flex: 0 0 220px; }
.story-label span { color: var(--gold); font-weight: 700; font-size: .85rem; }
.story-body { flex: 1; min-width: 280px; }
.story-body h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 1.2rem; max-width: 600px; }
.story-body p { font-size: 1.02rem; max-width: 640px; }
.story-body p + p { margin-top: 1.1rem; }

.table-legs { display: flex; justify-content: center; gap: .9rem; margin: 2.6rem 0; flex-wrap: wrap; }
.table-legs .leg { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.4rem; font-size: .88rem; font-weight: 600; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: .55rem; }
.table-legs .leg i { color: var(--gold); }

.manifesto { text-align: center; padding: 4.5rem 1rem; border-radius: 20px; background: linear-gradient(160deg, #1a1a1a, #241e0d); border: 1px solid rgba(201,162,39,0.28); }
.manifesto p { font-family: 'Lato', sans-serif; font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; color: var(--white); line-height: 1.5; max-width: 820px; margin: 0 auto; }
.manifesto p span { color: var(--gold); }

.why-card { border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.7rem; height: 100%; background: rgba(255,255,255,0.02); }
.why-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-muted); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 1.1rem; }
.why-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: .6rem; }
.why-card p { font-size: .9rem; margin-bottom: 0; }

.process-row { display: flex; gap: 1.5rem; flex-wrap: wrap; counter-reset: step; }
.process-step { flex: 1; min-width: 220px; position: relative; padding-top: 2.6rem; }
.process-step::before { counter-increment: step; content: counter(step); position: absolute; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--gold-muted); color: var(--gold); font-family: 'Lato', sans-serif; font-weight: 800; font-size: .95rem; display: flex; align-items: center; justify-content: center; }
.process-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.process-step p { font-size: .88rem; margin-bottom: 0; }

/* QUIZ */
.quiz-shell { max-width: 640px; margin: 0 auto; background: var(--panel); border: 1px solid var(--border); border-radius: 20px; padding: 2.6rem 2.3rem; position: relative; box-shadow: 0 30px 70px rgba(0,0,0,0.35); }
.quiz-progress-track { height: 6px; background: rgba(255,255,255,.07); border-radius: 100px; overflow: hidden; margin-bottom: 1.8rem; }
.quiz-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 100px; transition: width .45s ease; }
.quiz-meta { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-muted); margin-bottom: 1.3rem; }
.quiz-meta .cat-tag { color: var(--gold); font-weight: 700; }
.quiz-question { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.32rem; margin-bottom: 1.7rem; line-height: 1.35; }
.quiz-options { display: flex; flex-direction: column; gap: .7rem; }
.quiz-option { border: 1px solid var(--border); background: rgba(255,255,255,.02); border-radius: 12px; padding: 1rem 1.15rem; text-align: left; color: #fff; font-size: .94rem; cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: .85rem; width: 100%; }
.quiz-option:hover { border-color: rgba(201,162,39,.45); background: rgba(201,162,39,.06); }
.quiz-option.selected { border-color: var(--gold); background: var(--gold-muted); }
.quiz-option .opt-letter { flex: 0 0 27px; height: 27px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: var(--text-muted); }
.quiz-option.selected .opt-letter { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,.18); }
.quiz-fade { animation: quizFadeIn .35s ease; }
@keyframes quizFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.quiz-phase-title { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.5rem; margin-bottom: .9rem; }
.quiz-bullets { list-style: none; padding: 0; margin: 1.4rem 0 2rem; }
.quiz-bullets li { display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: rgba(255,255,255,.7); margin-bottom: .75rem; }
.quiz-bullets i { color: var(--gold); }
.lead-form label { font-size: .82rem; color: var(--text-muted); margin-bottom: .35rem; display: block; }
.lead-form input { background: #141414; border: 1px solid var(--border); border-radius: 10px; padding: .85rem 1rem; color: #fff; width: 100%; font-size: .94rem; margin-bottom: 1.1rem; }
.lead-form input:focus { outline: none; border-color: var(--gold); background: #171717; }
.lead-form input::placeholder { color: rgba(255,255,255,.28); }
.lead-privacy { font-size: .76rem; color: rgba(255,255,255,.35); margin-top: 1rem; margin-bottom: 0; }

/* RESULTS */
.gauge-wrap { position: relative; width: 210px; height: 210px; margin: 0 auto 1.6rem; }
.gauge-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge-track { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 12; }
.gauge-fill { fill: none; stroke: var(--gold); stroke-width: 12; stroke-linecap: round; transition: stroke-dashoffset 1s ease, stroke .3s ease; }
.gauge-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.gauge-center .pct { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 2.3rem; color: var(--gold); }
.gauge-center .lvl { font-size: .82rem; color: var(--text-muted); margin-top: .15rem; max-width: 150px; line-height: 1.3; }

.loss-banner { background: linear-gradient(135deg, #1c1c1c 0%, #2a2410 130%); border: 1px solid rgba(201,162,39,.3); border-radius: 16px; padding: 1.7rem 1.8rem; text-align: center; margin: 0 0 2.2rem; }
.loss-banner .lbl-top { font-size: .8rem; color: var(--text-muted); margin-bottom: .4rem; }
.loss-banner .amount { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.7rem; color: var(--gold-light); }
.loss-banner p { font-size: .85rem; margin: .5rem 0 0; color: rgba(255,255,255,.45); }

.category-result { border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem 1.5rem; margin-bottom: 1rem; background: rgba(255,255,255,.02); }
.category-result-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; gap: 1rem; }
.category-result-head .cname { display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .98rem; }
.category-result-head .cname i { color: var(--gold); }
.category-result-head .clevel { font-size: .76rem; font-weight: 700; padding: .2rem .6rem; border-radius: 100px; white-space: nowrap; }
.category-bar-track { height: 8px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: hidden; margin-bottom: .9rem; }
.category-bar-fill { height: 100%; border-radius: 100px; width: 0%; transition: width 1s ease; }
.category-result p { font-size: .87rem; margin-bottom: 0; }

.lvl-baixo { background: rgba(201,162,39,0.14); color: var(--gold-light); }
.lvl-moderado { background: rgba(224,160,63,0.14); color: var(--amber); }
.lvl-critico { background: rgba(201,82,74,0.16); color: #e08880; }
.fill-baixo { background: var(--gold); }
.fill-moderado { background: var(--amber); }
.fill-critico { background: var(--red); }

.results-cta { background: linear-gradient(135deg, #101010 0%, #1c1c1c 55%, #4a3b12 130%); border: 1px solid rgba(201,162,39,0.25); border-radius: 18px; padding: 2.4rem 2rem; text-align: center; margin-top: 2.4rem; }
.results-cta h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: .7rem; }
.results-cta p { max-width: 460px; margin: 0 auto 1.6rem; font-size: .95rem; }
.email-note { display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .82rem; color: var(--text-muted); margin-top: 1.2rem; }
.email-note i { color: var(--gold); }

/* TABLES & FAQ & AUTHOR */
.region-stat { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 1.7rem 1.5rem; text-align: center; height: 100%; }
.region-stat .num { font-family: 'Lato'; font-weight: 800; font-size: 1.9rem; color: var(--gold); }
.region-stat .lbl { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: .4rem; }
.fictional-tag { display: inline-block; font-size: .72rem; color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 100px; padding: .25rem .7rem; margin-bottom: 1rem; }

.table-wrap { overflow-x: auto; margin: 1.6rem 0; max-width: 820px; }
table.channels { width: 100%; border-collapse: collapse; font-size: .88rem; }
table.channels th { background: rgba(255,255,255,.04); color: #fff; text-align: left; padding: .85rem 1rem; font-family: 'Lato'; font-weight: 700; border-bottom: 1px solid var(--border); }
table.channels td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: rgba(255,255,255,.62); vertical-align: top; }
table.channels tr:last-child td { border-bottom: none; }

.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: .8rem; overflow: hidden; background: var(--panel); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.1rem 1.4rem; font-weight: 700; font-size: .95rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { color: var(--gold); transition: transform .25s; flex: 0 0 auto; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.2rem; font-size: .9rem; color: rgba(255,255,255,.62); max-width: 720px; }

.author-box { display: flex; gap: 1.4rem; background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; align-items: flex-start; flex-wrap: wrap; }
.author-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-light)); display: flex; align-items: center; justify-content: center; font-family: 'Lato'; font-weight: 800; color: var(--dark); font-size: 1.3rem; flex: 0 0 64px; }
.author-box h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.author-box .role { font-size: .82rem; color: var(--gold); margin-bottom: .7rem; }
.author-box p { font-size: .88rem; margin-bottom: .6rem; }
.author-links a { color: var(--text-muted); font-size: .82rem; text-decoration: none; margin-right: 1rem; }
.author-links a:hover { color: var(--gold); }

.silo-grid a { display: block; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.2rem; color: #fff; text-decoration: none; font-size: .88rem; font-weight: 600; transition: all .2s; }
.silo-grid a:hover { border-color: rgba(201,162,39,.4); background: rgba(201,162,39,.06); }
.silo-grid a i { color: var(--gold); margin-right: .5rem; }
.silo-grid .soon, .silo-grid .tag-cpc { font-size: .72rem; color: var(--text-muted); font-weight: 400; display: block; margin-top: .2rem; }

/* CTA & FOOTER */
.cta-section { background: linear-gradient(135deg, #101010 0%, #1c1c1c 55%, #4a3b12 130%); border-top: 1px solid rgba(201,162,39,0.2); position: relative; overflow: hidden; padding: 80px 0; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A227' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4H6zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -1px; position: relative; z-index: 1; }
.cta-section p { font-size: 1rem; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; color: rgba(255,255,255,0.65); }
.cta-section .btn-row { position: relative; z-index: 1; }

footer { background: #080808; border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 0; }
.footer-brand { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.35rem; margin-bottom: 1rem; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: 'Lato', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: .88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; font-size: .88rem; color: rgba(255,255,255,0.55); }
.footer-contact li { margin-bottom: .7rem; display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: .2rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 3rem; padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: .75rem; }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991.98px) {
    .navbar-collapse { display: none; }
    .navbar-collapse.show { display: flex !important; flex-direction: column; align-items: flex-start; padding: 1.5rem 0 1rem; background: var(--dark); border-bottom: 1px solid var(--border); margin-top: 1rem; }
    .navbar-nav { flex-direction: column; width: 100%; align-items: flex-start; gap: 0; }
    .navbar-nav > li { width: 100%; }
    .navbar-nav > li > a { padding: 0.75rem 0.5rem !important; width: 100%; }
    .navbar-nav .sub-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.02); padding-left: 1rem; display: block; }
    .btn-nav { margin-top: 1rem; width: 100%; justify-content: center; }
    .force-grid { grid-template-columns: 1fr; }
    .funnel-layout { flex-direction: column; align-items: center; }
    .funnel-shape-wrap { flex: none; }
    .funnel-legend { width: 100%; max-width: 480px; }
    .story-label { flex: 0 0 100%; }
}

@media (max-width: 767.98px) {
    .hero-stats { gap: 1.6rem; }
    .stat-banner { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
     ESTILOS ESPECÍFICOS: MARKETING MÉDICO REGIONAL & PÁGINA DO MÉTODO
     ========================================================================== */

  /* QUICK ANSWER (Guia Regional) */
  .quick-answer{background:var(--panel);border:1px solid rgba(201,162,39,.28);border-left:3px solid var(--gold);border-radius:14px;padding:1.6rem 1.8rem;max-width:820px;}
  .quick-answer p{margin-bottom:0;color:rgba(255,255,255,.75);font-size:1rem;}
  .quick-answer .qa-label{font-size:.76rem;font-weight:700;color:var(--gold);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.6rem;display:block;}

  /* TABLE OF CONTENTS (TOC) */
  .toc-card{background:var(--panel);border:1px solid var(--border);border-radius:16px;padding:1.6rem 1.8rem;}
  .toc-card .toc-title{font-family:'Lato';font-weight:800;font-size:.95rem;margin-bottom:1rem;}
  .toc-card ol{list-style:none;margin:0;padding:0;counter-reset:toc;}
  .toc-card li{counter-increment:toc;margin-bottom:.7rem;font-size:.9rem;}
  .toc-card li a{color:rgba(255,255,255,.65);text-decoration:none;display:flex;gap:.7rem;}
  .toc-card li a:hover{color:var(--gold);}
  .toc-card li a::before{content:counter(toc, decimal-leading-zero);color:var(--gold);font-weight:700;font-family:'Lato';flex:0 0 auto;}

  /* CALLOUT / LEAK BOX */
  .leak-box{background:rgba(224,160,63,0.08);border:1px solid rgba(224,160,63,.3);border-radius:14px;padding:1.4rem 1.6rem;margin:1.6rem 0;max-width:760px;}
  .leak-box .lb-title{display:flex;align-items:center;gap:.6rem;font-weight:700;color:var(--amber);font-size:.92rem;margin-bottom:.5rem;}
  .leak-box p{margin-bottom:0;font-size:.92rem;}

  /* REGION STATS */
  .region-stat{background:var(--panel);border:1px solid var(--border);border-radius:16px;padding:1.7rem 1.5rem;text-align:center;height:100%;}
  .region-stat .num{font-family:'Lato';font-weight:800;font-size:1.9rem;color:var(--gold);}
  .region-stat .lbl{font-size:.82rem;color:rgba(255,255,255,.55);margin-top:.4rem;}
  .fictional-tag{display:inline-block;font-size:.72rem;color:rgba(255,255,255,.4);background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:100px;padding:.25rem .7rem;margin-bottom:1rem;}

  /* ==========================================================================
     ESTILOS ESPECÍFICOS: FUNIL DO PACIENTE E MOTOR DE CRESCIMENTO (MÉTODO)
     ========================================================================== */

  /* FUNIL */
  .funnel-layout { display: flex; gap: 3rem; align-items: stretch; flex-wrap: wrap; }
  .funnel-shape-wrap { flex: 0 0 220px; position: relative; }
  .funnel-shape {
    width: 220px; height: 440px; margin: 0 auto;
    clip-path: polygon(0% 0%, 100% 0%, 64% 100%, 36% 100%);
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  }
  .funnel-band { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; transform: scaleX(0); transform-origin: center; transition: transform .6s ease; transition-delay: calc(var(--i, 0) * .12s); }
  .in-view .funnel-band { transform: scaleX(1); }
  .funnel-band b { font-family: 'Lato', sans-serif; font-size: 1.3rem; font-weight: 800; color: rgba(0,0,0,0.55); }
  .funnel-band:nth-child(1) { background: #3a3a3a; }
  .funnel-band:nth-child(2) { background: #54503a; }
  .funnel-band:nth-child(3) { background: #6e6134; }
  .funnel-band:nth-child(4) { background: #a5842c; }
  .funnel-band:nth-child(5) { background: var(--gold); }
  .funnel-shimmer {
    position: absolute; inset: 0; clip-path: polygon(0% 0%, 100% 0%, 64% 100%, 36% 100%);
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.16) 45%, transparent 60%);
    background-size: 100% 300%;
    animation: funnelFlow 4.5s linear infinite;
  }
  @keyframes funnelFlow { 0% { background-position: 0 -100%; } 100% { background-position: 0 200%; } }
  .funnel-legend { flex: 1; min-width: 260px; display: flex; flex-direction: column; }
  .funnel-row { flex: 1; display: flex; align-items: center; gap: 1.1rem; padding: .6rem 0; border-bottom: 1px dashed var(--border); }
  .funnel-row:last-child { border-bottom: none; }
  .funnel-row .ficon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.05rem; }
  .funnel-row h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: .25rem; }
  .funnel-row p { font-size: .85rem; margin-bottom: 0; }
  .funnel-row .leak-flag { display: inline-block; margin-top: .35rem; font-size: .72rem; font-weight: 700; color: #e0a03f; background: rgba(224,160,63,0.12); border-radius: 100px; padding: .15rem .6rem; }

  /* MÁQUINA (MOTOR INTEGRADO) */
  .machine-wrap { display: flex; justify-content: center; }
  .machine-diagram { position: relative; width: 100%; max-width: 560px; aspect-ratio: 1/1; }
  .machine-ring { position: absolute; inset: 6%; border: 1.5px dashed rgba(201,162,39,0.28); border-radius: 50%; animation: spin 70s linear infinite; }
  .machine-ring.ring2 { inset: 16%; border-color: rgba(255,255,255,0.08); animation-duration: 90s; animation-direction: reverse; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .machine-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .flow-line { stroke: rgba(201,162,39,0.55); stroke-width: .5; stroke-dasharray: 2 2.4; animation: flowDash 1.6s linear infinite; }
  @keyframes flowDash { to { stroke-dashoffset: -9.2; } }
  .machine-hub {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 34%; aspect-ratio: 1/1; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #2a2410, #151208);
    border: 1.5px solid var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 8%; z-index: 3;
    animation: pulseGlow 3.2s ease-in-out infinite;
  }
  @keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.25); } 50% { box-shadow: 0 0 0 18px rgba(201,162,39,0); } }
  .machine-hub i { font-size: 1.6rem; color: var(--gold); margin-bottom: .4rem; }
  .machine-hub span { font-family: 'Lato', sans-serif; font-weight: 800; font-size: .92rem; line-height: 1.25; }
  .machine-node {
    position: absolute; transform: translate(-50%, -50%); width: 118px;
    background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
    padding: .7rem .5rem; text-align: center; z-index: 2; transition: transform .3s, border-color .3s;
  }
  .machine-node:hover { border-color: rgba(201,162,39,0.5); transform: translate(-50%, -50%) translateY(-3px); }
  .machine-node i { color: var(--gold); font-size: 1.1rem; display: block; margin-bottom: .35rem; }
  .machine-node span { font-size: .76rem; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.25; }
  .machine-caption { max-width: 600px; margin: 2.8rem auto 0; text-align: center; font-size: .98rem; color: rgba(255,255,255,0.55); }

  /* GRÁFICO E STATS DO MÉTODO */
  .chart-card { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 2.2rem; }
  .chart-legend-note { font-size: .82rem; color: rgba(255,255,255,0.4); margin-top: 1rem; margin-bottom: 0; text-align: center; }
  .chart-wrap { position: relative; height: 340px; }
  .stat-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; padding: 1.9rem 1.6rem; text-align: center; height: 100%; }
  .stat-card .num { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--gold); }
  .stat-card .lbl { font-size: .86rem; color: rgba(255,255,255,0.55); margin-top: .4rem; }

  .pagination-custom, div[style*="justify-content:center; gap:.5rem; margin-top:2rem;"] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .page-numbers {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .page-numbers:hover {
    border-color: var(--gold);
    color: #fff;
    background: rgba(201, 162, 39, 0.08);
  }

  .page-numbers.current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
  }

.cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: .9rem;
    padding: .65rem .9rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all .2s;
}

.wa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Quando ativado via JS */
.wa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-modal-box {
  background: var(--panel, #141414);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 450px;
  position: relative;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.wa-modal-overlay.active .wa-modal-box {
  transform: translateY(0);
}

.wa-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
}

.wa-modal-close:hover {
  color: var(--gold, #d4af37);
}

.wa-modal-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.wa-modal-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
}

.wa-modal-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.wa-modal-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.wa-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.4rem;
}

.wa-form .form-control {
  background: #0b0b0b;
  border: 1px solid var(--border, #2a2a2a);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.wa-form .form-control:focus {
  background: #0b0b0b;
  border-color: var(--gold, #d4af37);
  color: #fff;
  box-shadow: none;
}