/* Audity novedades — tokens from audityone.com v5 */
:root {
  --white: #ffffff;
  --tint: #f5f7fa;
  --ink: #17203a;
  --muted: #55607a;
  --navy: #1e3a8a;
  --navy-deep: #16265a;
  --navy-night: #0f1b40;
  --wash: #eaf1fb;
  --rule: #e2e6ee;
  --rule-strong: #c9d1e0;
  --ok: #1d7a4f;
  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Geist", -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(30, 58, 138, 0.14); }

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 80;
  text-decoration: none;
}
.skip:focus { top: 12px; }

.shell { max-width: 1140px; margin: 0 auto; padding: 0 32px; position: relative; }
.shell-narrow { max-width: 760px; }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
}

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 18px 0 22px;
}
h1 em { font-style: italic; font-weight: 500; }
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.012em;
}
h2 em, h3 em { font-style: italic; color: var(--navy); font-weight: 500; }
.lede { font-size: 18px; color: var(--muted); max-width: 560px; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand-logo { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 480;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 0;
  background: var(--navy);
  transition: width .35s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--navy); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 520;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover {
  background: var(--navy-deep);
  box-shadow: 0 16px 34px -14px rgba(30,58,138,.6);
  transform: translateY(-2px);
}
.btn-line { border-color: var(--rule-strong); color: var(--ink); background: #fff; }
.btn-line:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 88px;
  background:
    radial-gradient(1000px 520px at 78% 8%, rgba(30,58,138,.55), transparent 62%),
    radial-gradient(700px 420px at 8% 96%, rgba(30,58,138,.35), transparent 60%),
    var(--navy-night);
  color: #fff;
}
.hero .kicker { color: #8fb0fa; }
.hero h1 { color: #fff; }
.hero h1 em { color: #a9c0f7; }
.hero .lede { color: rgba(255,255,255,.72); }
.hero-knot {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 380px;
  opacity: .07;
  pointer-events: none;
}

.section { padding: 72px 0 96px; background: var(--tint); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 24px 50px -36px rgba(23, 32, 58, 0.45);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-strong);
  box-shadow: 0 32px 60px -32px rgba(23, 32, 58, 0.5);
}
.news-card img { width: 100%; height: 200px; object-fit: cover; display: block; background: var(--wash); }
.news-card > div { padding: 22px 24px 26px; }
.news-card h2 { font-size: 28px; margin: 10px 0 8px; }
.news-card p { color: var(--muted); }
.news-card .more {
  margin-top: 16px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 520;
}

.empty {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 640px;
}
.empty p { color: var(--muted); font-size: 17px; }

.article { padding: 148px 0 40px; }
.article h1 { font-size: clamp(36px, 4.4vw, 54px); margin-top: 16px; }
.article h1 em { color: var(--navy); }
.article .lede { margin-bottom: 18px; }
.meta { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }

.benefits { list-style: none; display: grid; gap: 16px; margin: 8px 0 36px; }
.benefits li { display: flex; gap: 14px; align-items: flex-start; }
.benefits .check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(29, 122, 79, 0.12);
  color: var(--ok);
  display: grid;
  place-items: center;
  font-size: 14px;
  margin-top: 2px;
}
.benefits strong { display: block; font-weight: 570; }
.benefits span { color: var(--muted); }

.visual {
  margin: 8px 0 18px;
  background: var(--wash);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.visual img { width: 100%; height: auto; display: block; }
.figure-slot {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--muted);
  text-align: center;
}
.footnote { color: var(--muted); font-size: 14.5px; margin-bottom: 36px; }
.footnote a, .page-footer a, .article a:not(.btn) { color: var(--navy); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 48px; }

.audio-list { display: grid; gap: 16px; margin: 8px 0 28px; }
.audio-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 18px 20px 16px;
}
.audio-card h2 { font-size: 26px; margin: 8px 0 4px; }
.audio-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.audio-hint { font-size: 12.5px; margin: 10px 0 0; }
.audio-card audio { width: 100%; height: 40px; }

.page-footer {
  border-top: 1px solid var(--rule);
  padding: 36px 0 42px;
  background: var(--white);
}
.page-footer .brand-logo { height: 40px; margin-bottom: 12px; }
.page-footer p { color: var(--muted); }
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--navy); }

@media (max-width: 720px) {
  .shell { padding: 0 20px; }
  .nav-inner { gap: 16px; }
  .brand-logo { height: 38px; }
  .nav-links { gap: 16px; }
  .hero { padding: 132px 0 64px; }
  .section { padding: 48px 0 72px; }
  .article { padding-top: 124px; }
  .hero-knot { width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .news-card { transition: none; }
}
