
:root {
  --primary: #315fd6;
  --primary-dark: #244cbb;
  --accent: #8bcbd3;
  --accent-soft: #edf8f8;
  --accent-ink: #24616b;
  --accent-border: #c4e1e4;
  --green: #3CB371;
  --gradient: linear-gradient(90deg,#2158de 0%,#638ae8 100%);
  --bg: #f6f8f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --border-soft: #edf1f6;
  --text: #1e293b;
  --text-light: #596b80;
  --text-muted: #596b80;
  --navy: #152b3b;
  --amber: #f4c66a;
  --amber-ink: #7a5410;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(15, 23, 42, 0.035);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.14);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.25; }
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-title { font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 600; letter-spacing: -0.035em; color: var(--navy); margin-bottom: 12px; }
.section-sub { color: var(--text-light); margin-bottom: 28px; max-width: 720px; }
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-head .section-sub { margin-bottom: 0; }
.sec-head { margin-bottom: 28px; }
.eyebrow { font-size: 0.75em; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 12px; }
.center { text-align: center; margin-top: 28px; }
:where(a, button, input):focus-visible { outline: 3px solid var(--primary); outline-offset: 5px; }
:where(section, main, [id]) { scroll-margin-top: 100px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 12px 20px; border-radius: 8px; background: var(--navy); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.text-link { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; font-size: 0.875rem; font-weight: 600; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: #fff; font-weight: 600; font-size: 0.95em;
  padding: 13px 28px; border-radius: 11px; transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(65, 112, 227, 0.25); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid var(--border); color: var(--text); font-weight: 600; font-size: 0.92em;
  padding: 12px 24px; border-radius: 11px; transition: border-color 0.15s, color 0.15s;
  background: var(--card);
}
.btn-ghost:hover { border-color: var(--accent-ink); color: var(--accent-ink); }
.btn-sm { padding: 9px 18px; font-size: 0.85em; }

/* ===== Promo ===== */
.promo { background: var(--navy); color: #fff; font-size: 0.75em; }
.promo .wrap { display: flex; gap: 12px; align-items: center; justify-content: center; padding: 10px 24px; text-align: left; }
.promo .tag, .promo a { flex-shrink: 0; }
.promo .tag { background: var(--accent); color: var(--navy); padding: 2px 10px; border-radius: 999px; font-weight: 600; font-size: 0.9em; }
.promo a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100; 

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 26px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: 1.2em; letter-spacing: -0.04em; }
.brand img { width: 40px; height: 40px; border-radius: 50%; background: #fff; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav > a, .nav-drop > button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 13px; border-radius: 9px; min-height: 44px;
  font-size: 0.9em; font-weight: 500; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.site-nav > a:hover, .nav-drop > button:hover { background: var(--accent-soft); color: var(--accent-ink); }
.nav-drop { position: relative; }
.nav-drop > button svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.15s; }
.nav-drop.open > button svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--border-soft); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; display: none;
}
.nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 0.88em; font-weight: 500; color: var(--text);
}
.nav-drop-menu a:hover { background: var(--accent-soft); color: var(--accent-ink); }
.btn-entrar {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--border); color: var(--navy); font-weight: 600; font-size: 0.88em;
  padding: 9px 20px; border-radius: 10px; transition: background 0.15s, border-color 0.15s;
}
.site-nav > a.btn-entrar { color: var(--navy); }
.site-nav > a.btn-entrar:hover { background: var(--accent-soft); border-color: var(--accent-ink); color: var(--accent-ink); }
.nav-voxi { border: 1.5px solid var(--accent-border); border-radius: 9px; color: var(--accent-ink) !important; font-weight: 600; }
.nav-voxi:hover { background: var(--accent-soft); }
.menu-toggle { display: none; padding: 8px; margin-left: auto; }
.menu-toggle svg { width: 26px; height: 26px; fill: var(--navy); }

/* ===== Hero Voxi ===== */
.voxi-hero {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 203, 211, 0.2), transparent 68%), #fff;
  padding: 48px 24px 0; text-align: center;
}
.hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--accent-ink); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; }
.voxi-logo { width: 32px; height: 32px; border-radius: 50%; object-fit: contain; }
.voxi-title { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 600; letter-spacing: -0.055em; color: var(--navy); line-height: 1.12; }
.voxi-title span { color: var(--primary); }
.voxi-sub { color: var(--text-light); font-size: 1.0625rem; line-height: 1.8; max-width: 620px; margin: 22px auto 30px; }
.voxi-box { width: 100%; max-width: 740px; margin: 0 auto; }
.voxi-input-wrap {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--accent-border); border-radius: 18px;
  padding: 10px 10px 10px 24px; box-shadow: 0 12px 36px rgba(21, 43, 59, 0.06);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.voxi-input-wrap:focus-within { border-color: var(--accent-ink); box-shadow: 0 0 0 4px rgba(139, 203, 211, 0.22); }
.voxi-input-wrap svg.lupa { width: 21px; height: 21px; fill: var(--text-muted); flex-shrink: 0; }
#voxi-input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 1.02em; color: var(--text); background: transparent; min-width: 0; }
#voxi-input::placeholder { color: var(--text-muted); }
.voxi-send {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--primary); color: #fff; font-weight: 500; font-size: 0.92em;
  border-radius: 11px; min-height: 50px; padding: 12px 22px; flex-shrink: 0; transition: background 0.15s;
}
.voxi-send:hover { background: var(--primary-dark); }
.voxi-send svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.voxi-note { font-size: 0.75rem; color: var(--text-light); margin-top: 12px; line-height: 1.8; }
.voxi-note a { color: var(--text-light); text-decoration: underline; }
.preview-note { margin-top: 12px; font-size: 0.75rem; color: var(--text-light); }
.hero-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 28px; margin-top: 24px; }
.hero-actions .btn-ghost { font-size: 0.875rem; }
.hero-actions .text-link { color: var(--navy); }
.voxi-panel {
  text-align: left; background: #fff; border: 1px solid var(--border-soft);
  border-radius: 18px; box-shadow: var(--shadow-lg); padding: 24px;
  margin-top: 18px; display: none;
}
.voxi-panel.show { display: block; animation: vfade 0.25s; }
@keyframes vfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.voxi-demo-tag {
  display: inline-block; font-size: 0.7em; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--accent-ink); background: var(--accent-soft);
  border-radius: 6px; padding: 3px 9px; margin-bottom: 12px;
}
.voxi-panel p { font-size: 0.9em; color: var(--text-light); }

/* ===== Indicadores: valores existentes no preview ===== */
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); width: 100%; max-width: 1152px; margin-top: 36px; padding: 28px 0; border-top: 1px solid var(--accent-border); font-size: 0.8125rem; color: var(--text-light); }
.hero-stats > span { padding: 0 16px; }
.hero-stats > span + span { border-left: 1px solid var(--accent-border); }
.hero-stats b { display: block; margin-bottom: 4px; font-weight: 600; letter-spacing: -0.04em; font-size: 1.875rem; color: var(--navy); font-variant-numeric: tabular-nums; }

/* ===== Especialidades ===== */
.spec-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.spec {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 16px; text-align: left; min-height: 86px;
  display: flex; align-items: center; gap: 12px; color: var(--text);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.spec:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #a8bce9; color: var(--text); }
.spec .ico { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: rgba(65, 112, 227, 0.09); color: #2f5fd0; display: grid; place-items: center; transition: transform 0.15s; }
.spec .ico svg { width: 25px; height: 25px; display: block; }
.spec:hover .ico { transform: scale(1.06); }
.spec-grid .spec:nth-child(8n+1) .ico { background: #fdeaea; color: #c0392b; }
.spec-grid .spec:nth-child(8n+2) .ico { background: #e3f5ec; color: #1d8a55; }
.spec-grid .spec:nth-child(8n+3) .ico { background: #e8eefc; color: #2f5fd0; }
.spec-grid .spec:nth-child(8n+4) .ico { background: #fdf3dd; color: #b7791f; }
.spec-grid .spec:nth-child(8n+5) .ico { background: #fde7f0; color: #b83280; }
.spec-grid .spec:nth-child(8n+6) .ico { background: #efe9fc; color: #6b46c1; }
.spec-grid .spec:nth-child(8n+7) .ico { background: #e2f4f4; color: #2c7a7b; }
.spec-grid .spec:nth-child(8n+8) .ico { background: #fdeee3; color: #c05621; }
.spec b { font-size: 0.8125rem; font-weight: 500; line-height: 1.5; color: var(--navy); overflow-wrap: anywhere; }
.spec small { font-size: 0.72em; color: var(--text-muted); }
.spec.more { border-style: dashed; box-shadow: none; justify-content: center; color: var(--primary); font-weight: 600; font-size: 0.9em; }

/* ===== Percurso ===== */
.percurso { background: var(--card); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.path { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.step { padding: 24px; text-align: left; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--border); border-radius: 16px; background: #fff; transition: border-color 0.15s, transform 0.15s; }
.step:hover { transform: translateY(-3px); border-color: var(--accent-ink); }
.step:last-child { background: var(--accent-soft); border-color: var(--accent-border); }
.step .dot { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; margin-bottom: 22px; }
.step .dot svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 12px; }
.step p { margin: 0 0 22px; color: var(--text-light); font-size: 0.8125rem; line-height: 1.8; }
.step small { display: block; font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); width: 100%; }

/* ===== Cards Insights ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s; color: var(--text);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--text); }
.card .cover { aspect-ratio: 16/9; background: var(--border-soft); position: relative; overflow: hidden; }
.card .cover img { width: 100%; height: 100%; object-fit: cover; }
.card .cover .date { position: absolute; left: 10px; top: 10px; background: rgba(21, 43, 59, 0.9); color: #fff; font-size: 0.7em; font-weight: 600; padding: 4px 9px; border-radius: 7px; }
.card .body { padding: 15px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pill { display: inline-block; font-size: 0.64em; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: 6px; background: var(--amber); color: var(--amber-ink); width: max-content; }
.pill.blue { background: rgba(65, 112, 227, 0.1); color: var(--primary); }
.pill.green { background: #dff5e8; color: #1d6b40; }
.pill.rose { background: #fde4ee; color: #9b2a5a; }
.card h3 { font-size: 0.94em; font-weight: 600; line-height: 1.4; color: var(--navy); }
.card .meta { font-size: 0.78em; color: var(--text-light); margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.card .meta b { color: var(--navy); font-weight: 700; }
.sponsor { font-size: 0.72em; color: var(--text-muted); }
.sponsor b { color: var(--text-light); font-weight: 600; }

/* ===== Feature MGF ===== */
.feature { background: var(--card); border: 1px solid var(--border-soft); border-radius: 18px; overflow: hidden; display: grid; grid-template-columns: 1.1fr 0.9fr; box-shadow: var(--shadow); }
.feature .txt { padding: 36px 38px; }
.feature .txt h2 { font-size: 1.45em; font-weight: 700; color: var(--navy); margin: 6px 0 12px; }
.feature .txt > p { color: var(--text-light); margin: 0 0 18px; max-width: 58ch; font-size: 0.94em; }
.feature .facts { display: flex; gap: 22px; flex-wrap: wrap; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 14px 0; margin-bottom: 20px; font-size: 0.84em; }
.feature .facts div { display: flex; gap: 8px; align-items: center; }
.feature .facts svg { width: 18px; height: 18px; fill: none; stroke: var(--primary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature .facts b { font-weight: 600; color: var(--navy); }
.feature .art { background: var(--gradient); position: relative; min-height: 320px; display: grid; place-items: center; color: #fff; padding: 30px; }
.feature .art .stack { display: grid; gap: 10px; width: 100%; max-width: 340px; }
.feature .art .row { background: #fff; border-radius: 10px; padding: 11px 14px; display: flex; justify-content: space-between; font-size: 0.8em; color: var(--navy); box-shadow: 0 2px 8px rgba(8, 20, 60, 0.18); }
.feature .art .row b { font-weight: 600; }
.feature .art .row span { color: var(--text-light); }
.feature .art .row.done b::before { content: "✓ "; color: #1d8a55; }
.feature .art .prog { height: 7px; background: rgba(8, 20, 60, 0.28); border-radius: 99px; overflow: hidden; }
.feature .art .prog i { display: block; height: 100%; width: 62%; background: #fff; border-radius: 99px; }
.feature .art small { font-size: 0.78em; font-weight: 600; color: #fff; }

/* ===== Exame Final ===== */
.ef-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ef {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px; display: flex; gap: 14px; align-items: flex-start;
  transition: transform 0.15s, box-shadow 0.15s; color: var(--text);
}
.ef:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--text); }
.ef .mono { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.ef .mono svg { width: 26px; height: 26px; display: block; }
.ef b { display: block; font-size: 0.88em; font-weight: 600; line-height: 1.3; color: var(--navy); }
.ef small { display: block; color: var(--text-light); font-size: 0.74em; margin-top: 3px; line-height: 1.5; }
.ef .price { display: block; margin-top: 6px; font-size: 0.74em; font-weight: 700; color: var(--primary); font-variant-numeric: tabular-nums; }

/* ===== Challenges ===== */
.chal { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.chal .c { border-radius: 18px; padding: 32px; color: #fff; position: relative; overflow: hidden; min-height: 284px; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; transition: transform 0.15s, box-shadow 0.15s; }
.chal .c:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }
.chal .c.a { background: linear-gradient(120deg, #192f50, #244d82); }
.chal .c.b { background: linear-gradient(120deg, #482a44, #753856); }
.chal .c .pill { background: rgba(255, 255, 255, 0.12); color: #fff; align-self: flex-start; max-width: calc(100% - 56px); }
.chal .c h3 { font-size: 1.5em; font-weight: 600; letter-spacing: -0.025em; }
.chal .c p { margin: 0; color: rgba(255, 255, 255, 0.85); font-size: 0.84em; max-width: 48ch; }
.chal .c .trophy { position: absolute; right: 28px; top: 28px; width: 44px; height: 44px; opacity: 0.5; }
.chal .c .trophy svg { width: 100%; height: 100%; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.chal .c .foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.75rem; color: rgba(255, 255, 255, 0.85); }

/* ===== Care / Pharmacy ===== */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.duo .box { background: #edf6f3; border: 1px solid #dce9e3; border-radius: 18px; padding: 32px; display: flex; flex-direction: column; align-items: flex-start; }
.duo .box + .box { background: #faf1f3; border-color: #eddfe4; }
.duo .box h3 { font-size: 1.45em; font-weight: 600; letter-spacing: -0.03em; color: var(--navy); margin: 18px 0 12px; }
.duo .box > p { color: #526575; margin: 0 0 24px; font-size: 0.875rem; line-height: 1.8; }
.duo .box > a { margin-top: auto; background: #fff; }
#care { padding-top: 0; }
.duo ul { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 0; }
.duo li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.84em; padding: 9px 0; border-bottom: 1px solid var(--border-soft); }
.duo li span { color: var(--text-muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.duo li.soon span { color: var(--primary); font-weight: 600; }

/* ===== Coordenacao ===== */
.coord { background: var(--card); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.coord-layout { display: grid; grid-template-columns: 1fr; gap: 28px; }
.coord-intro { max-width: 740px; }
.quote { font-size: 1rem; color: var(--text-light); margin: 20px 0 24px; line-height: 1.9; }
.quote em { color: var(--accent-ink); font-style: normal; }
.faces { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.face { display: flex; gap: 12px; align-items: center; text-align: left; padding: 18px 12px; border-radius: 12px; background: var(--bg); }
.face .av { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-soft); object-fit: cover; flex: 0 0 auto; }
.face b { display: block; font-size: 0.8125rem; font-weight: 600; line-height: 1.5; color: var(--navy); }
.face small { display: block; color: var(--text-light); font-size: 0.75rem; margin-top: 3px; }

/* ===== Parceiros ===== */
.partners-top { background: var(--card); border-bottom: 1px solid var(--border-soft); padding: 56px 0; }
.marquee { overflow: hidden; margin-top: 26px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 40px; }
.motion-ready .marquee-track { flex-wrap: nowrap; justify-content: flex-start; gap: 64px; width: max-content; padding-right: 64px; animation: marq 45s linear infinite; }
.marquee + .marquee { margin-top: 20px; }
.marquee.inv .marquee-track { animation-direction: reverse; animation-duration: 38s; }
.marquee.lenta .marquee-track { animation-duration: 55s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquees-paused .marquee-track { animation-play-state: paused; }
.partner-actions { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: center; margin-top: 28px; }
.motion-toggle { color: var(--text-light); text-decoration: underline; text-underline-offset: 4px; font-size: 0.8125rem; min-height: 44px; padding: 8px; }
.motion-toggle[hidden] { display: none; }
@keyframes marq { to { transform: translateX(-50%); } }
.marquee img { width: auto; max-width: 200px; object-fit: contain; filter: grayscale(20%); opacity: 0.95; transition: filter 0.15s; }
.marquee img:hover { filter: none; opacity: 1; }
.partner-head { text-align: center; margin-bottom: 22px; }
.partner-head h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.035em; color: var(--navy); }
.partner-head p { color: var(--text-light); margin: 6px auto 0; max-width: 60ch; font-size: 0.92em; }
.logos { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center; }
.logos img { height: 36px; width: auto; filter: grayscale(15%); opacity: 0.95; transition: 0.15s; }
.logos img:hover { filter: none; opacity: 1; }
.logos .uls { font-size: 0.78em; color: var(--text-light); font-weight: 500; padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--card); }

/* ===== CTA ===== */
.cta { background: var(--navy); color: #fff; }
.cta .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; padding-top: 52px; padding-bottom: 52px; }
.cta h2 { font-size: 1.6em; font-weight: 700; margin-bottom: 10px; }
.cta p { color: rgba(255, 255, 255, 0.75); margin: 0 0 20px; max-width: 52ch; font-size: 0.94em; }
.btn-white { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: var(--primary-dark); font-weight: 600; font-size: 0.95em; padding: 13px 28px; border-radius: 11px; transition: transform 0.15s; }
.btn-white:hover { transform: translateY(-1px); color: var(--primary-dark); }
.btn-outline-w { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff; font-weight: 600; font-size: 0.92em; padding: 12px 24px; border-radius: 11px; transition: border-color 0.15s; }
.btn-outline-w:hover { border-color: #fff; color: #fff; }
.cta .dg { display: flex; gap: 14px; align-items: center; background: #fff; border-radius: 14px; padding: 14px 18px; color: var(--navy); }
.cta .dg img { height: 52px; }
.cta .dg b { display: block; font-size: 0.85em; }
.cta .dg small { font-size: 0.72em; color: var(--text-light); }

/* ===== Posicionamento / DGERT / Premios ===== */
.posic { background: var(--accent-soft); color: var(--navy); border-top: 1px solid var(--accent-border); border-bottom: 1px solid var(--accent-border); }
.posic .wrap { padding: 48px 24px; text-align: center; }
.posic p { font-size: 1.15em; max-width: 62ch; margin: 0 auto; color: var(--text-light); }
.posic b { color: var(--navy); font-weight: 600; }
.dgert-band { display: flex; gap: 18px; align-items: center; justify-content: center; background: var(--accent-soft); border: 1px solid var(--accent-border); border-radius: 14px; padding: 22px 28px; margin: 32px auto 0; }
.dgert-band img { height: 48px; }
.dgert-band b { display: block; font-size: 0.85em; color: var(--navy); }
.dgert-band small { display: block; margin-top: 4px; font-size: 0.75rem; color: var(--text-light); }
.premios { background: var(--card); border-top: 1px solid var(--border-soft); }
.premios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.premio { border-left: 2px solid var(--accent); padding: 12px 20px; }
.premio b { display: block; font-size: 0.85em; color: var(--navy); }
.premio span { display: block; font-size: 0.78em; color: var(--text-light); margin-top: 2px; }
.premio i { font-style: normal; font-size: 0.75rem; font-weight: 600; color: var(--accent-ink); }
@media (max-width: 900px) { .premios-grid { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.85); }
.site-footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 28px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand img { width: 36px; height: 36px; border-radius: 50%; background: #fff; object-fit: contain; }
.footer-col p { font-size: 0.8125rem; color: #c0ccd5; line-height: 1.8; }
.footer-col h3 { font-size: 0.82em; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #fff; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 0.84em; color: rgba(255, 255, 255, 0.75); padding: 3px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-col a.footer-mail { margin-top: 12px; font-size: 0.9em; font-weight: 600; color: #fff; }
.prr-bar { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; background: #fff; border-radius: 12px; padding: 12px 18px; }
.prr-bar img { height: 44px; object-fit: contain; }
.prr-text { font-size: 0.75rem; color: #bdc9d2; text-align: center; margin-top: 18px; }
.prr-text a { color: rgba(255, 255, 255, 0.8); text-decoration: underline; }
.footer-legal { font-size: 0.75rem; color: #bdc9d2; text-align: center; margin-top: 14px; }

/* ===== Responsivo ===== */
@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--border); padding: 10px 14px 16px;
    box-shadow: var(--shadow-lg); max-height: calc(100dvh - 84px); overflow-y: auto;
  }
  .site-nav.open { display: flex; }
  .nav-drop-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .nav-drop-menu a { min-height: 44px; }
  .nav-drop > button { width: 100%; justify-content: space-between; }
  .btn-entrar { justify-content: center; margin-top: 8px; }
  .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cards, .ef-grid { grid-template-columns: repeat(2, 1fr); }
  .coord-intro { max-width: 640px; }
  .faces { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature, .cta .wrap, .duo, .chal { grid-template-columns: 1fr; }
  .path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .promo .wrap { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; padding: 10px 20px; font-size: 0.6875rem; }
  .promo .tag { grid-row: span 2; align-self: start; }
  .promo a { grid-column: 2; width: fit-content; padding: 4px 0; }
  .promo-extra { display: none; }
  .site-header-inner { padding: 10px 20px; }
  .brand { font-size: 1.125rem; }
  .brand img { width: 36px; height: 36px; }
  .menu-toggle { min-width: 44px; min-height: 44px; }
  .voxi-hero { padding: 36px 20px 0; }
  .hero-eyebrow { font-size: 0.625rem; letter-spacing: 0.05em; gap: 8px; margin-bottom: 20px; }
  .voxi-logo { width: 26px; height: 26px; }
  .voxi-title { font-size: clamp(2.1rem, 9.4vw, 3.25rem); }
  .voxi-sub { font-size: 0.9375rem; line-height: 1.8; margin: 18px auto 24px; }
  .voxi-input-wrap { border-radius: 14px; padding: 7px 7px 7px 16px; }
  .voxi-input-wrap svg.lupa { display: none; }
  #voxi-input { font-size: 1rem; min-height: 44px; }
  .voxi-send { min-width: 46px; min-height: 46px; padding: 12px; border-radius: 9px; }
  .voxi-send span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .voxi-note, .preview-note { font-size: 0.75rem; }
  .hero-actions { gap: 8px 16px; margin-top: 20px; }
  .hero-actions .btn-ghost { padding: 12px 16px; font-size: 0.8125rem; }
  .hero-actions .text-link { font-size: 0.8125rem; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); font-size: 0.75rem; margin-top: 28px; padding: 12px 0; }
  .hero-stats > span { padding: 14px 8px; }
  .hero-stats > span:nth-child(3) { border-left: 0; }
  .hero-stats b { font-size: 1.5rem; }
  .dgert-band { flex-wrap: wrap; text-align: center; justify-content: center; }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .spec { min-height: 84px; padding: 12px; gap: 8px; }
  .spec .ico { width: 28px; height: 28px; border-radius: 8px; }
  .spec .ico svg { width: 20px; height: 20px; }
  .spec b { font-size: 0.75rem; }
  .spec.more { font-size: 0.8125rem; justify-content: center; }
  .cards, .ef-grid, .path { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 12px 14px; padding: 20px; }
  .step .dot { width: 36px; height: 36px; margin: 0; }
  .step h3, .step p { margin: 0; align-self: center; }
  .step p, .step small { grid-column: 1 / -1; }
  .step small { margin-top: 0; padding-top: 12px; }
  .section { padding: 48px 0; }
  .sec-head { gap: 12px; margin-bottom: 24px; }
  .section-sub { font-size: 0.875rem; line-height: 1.8; }
  .faces { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .face { flex-direction: column; text-align: center; padding: 12px 10px; gap: 8px; }
  .face .av { width: 44px; height: 44px; }
  .face b { font-size: 0.75rem; }
  .face small { font-size: 0.75rem; }
  .quote { font-size: 0.875rem; margin: 12px 0; }
  .duo .box, .chal .c { padding: 24px; }
  .duo .box h3 { font-size: 1.25rem; }
  .chal .c { min-height: 260px; }
  .chal .c h3 { font-size: 1.35rem; }
  .chal .c .pill { max-width: calc(100% - 44px); }
  .chal .c .trophy { width: 32px; height: 32px; right: 20px; top: 24px; }
  .posic .wrap { padding: 32px 20px; }
  .posic p { font-size: 0.9375rem; }
  .premios-grid { gap: 20px; }
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .footer-col a { min-height: 36px; }
  .site-footer-inner { padding: 40px 20px 24px; }
  .prr-bar { padding: 16px 12px; }
  .prr-bar img { height: auto; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .motion-ready .marquee-track { width: auto; flex-wrap: wrap; justify-content: center; gap: 24px; padding-right: 0; }
  .marquee-clone, .motion-toggle { display: none; }
}
