/* ============================================================
   EGGO Digital — Sistema gráfico "Ascenso"
   Bloom skeleton · identidad EGGO · metáfora montaña
   Build de producción · jun 2026
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/BricolageGrotesque.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("assets/fonts/Spectral-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("assets/fonts/Spectral-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("assets/fonts/Spectral-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Spectral";
  src: url("assets/fonts/Spectral-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --blue: #3d38f5;
  --blue-deep: #2a26c4;
  --coral: #ff6245;

  --growth: #16e37d;
  --marketing: #1fb6ff;
  --branding: #8a5bff;
  --comunicacion: #ff7a1a;
  --people: #ff3d7f;

  --ink: #0e0f15;
  --ink-2: #15171f;
  --ink-card: #1b1e29;
  --paper: #f0eee9;
  --white: #ffffff;
  --cloud: #e9eae6;
  --cream: #f5f2ec;
  --grey: #e4e5e2;
  --sand: #efe9df;
  --line: rgba(14,15,21,0.10);
  --line-dark: rgba(255,255,255,0.12);

  --t-ink: #14161c;
  --t-muted: #6c7080;
  --t-muted-dark: #9aa0b4;
  --t-on-dark: #eef0f6;

  --accent: var(--blue);

  --sans: "Bricolage Grotesque", system-ui, sans-serif;
  --serif: "Spectral", Georgia, serif;

  --r-block: 22px;
  --r-card: 14px;
  --r-pill: 100px;
  --gap: 8px;
  --maxw: 1200px;
  --pad: 8px;

  --grad: 0.62;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--t-ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- Layout shell ---------- */
.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.block {
  position: relative;
  border-radius: var(--r-block);
  overflow: hidden;
}
.block.light { background: var(--white); }
.block.cloud { background: var(--cloud); }
.block.cream { background: var(--cream); }
.block.sand { background: var(--sand); }
.block.dark { background: var(--ink); color: var(--t-on-dark); }
.block.ink2 { background: var(--ink-2); color: var(--t-on-dark); }
.pad-l { padding: clamp(28px, 5vw, 64px); }
.pad-xl { padding: clamp(40px, 7vw, 96px); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dark .eyebrow, .ink2 .eyebrow { color: var(--t-muted-dark); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.display {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 0;
  text-wrap: balance;
}
.h-xl { font-size: clamp(48px, 8.5vw, 104px); }
.h-l { font-size: clamp(40px, 6vw, 72px); }
.h-m { font-size: clamp(30px, 4vw, 50px); }
.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--t-muted);
  letter-spacing: -0.01em;
  max-width: 46ch;
}
.dark .lead, .ink2 .lead { color: var(--t-muted-dark); }
.tnum { font-feature-settings: "tnum" 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.985); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--t-ink); }
.dark .btn-ghost, .ink2 .btn-ghost { border-color: var(--line-dark); color: var(--t-on-dark); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f1f1f4; }

/* ---------- Badge "Digital" ---------- */
.badge-digital {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0;
  transition: background .3s var(--ease);
}

/* ---------- Motif: curvas de nivel ---------- */
.topo {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.topo.hero { color: var(--blue); opacity: calc(0.16 + var(--grad) * 0.12); }
.cream .topo, .sand .topo, .light .topo, .cloud .topo { color: var(--blue); opacity: calc(0.10 + var(--grad) * 0.08); }
.dark .topo, .ink2 .topo { color: #fff; opacity: calc(0.05 + var(--grad) * 0.05); }

.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: var(--grad);
  pointer-events: none;
  mix-blend-mode: normal;
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: var(--pad);
  z-index: 50;
  margin-bottom: 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 14px 0 22px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 30px rgba(14,15,21,0.07);
}
.nav-logo { display: flex; align-items: center; gap: 9px; }
.nav-logo .wordmark { height: 21px; width: auto; }
.logo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 30px; padding: 0 10px; border-radius: 8px;
  background: var(--blue); color: #fff;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 15px; line-height: 1;
}
.logo-lockup { display: inline-flex; align-items: center; gap: 9px; }
.logo-lockup .wordmark { height: 22px; width: auto; }
.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--t-ink);
  transition: background .18s var(--ease), color .18s;
}
.nav-menu a:hover { background: rgba(14,15,21,0.06); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav .btn { height: 44px; padding: 0 18px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero { min-height: 760px; display: flex; flex-direction: column; }
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 56px);
}
.hero-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.hero-mark { font-family: var(--sans); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.hero-meta { text-align: right; font-size: 14px; font-weight: 500; color: var(--t-muted); max-width: 200px; line-height: 1.35; }
.hero-h1 { margin: clamp(24px,5vw,48px) 0 0; }
.hero-h1 em { font-family: var(--serif); font-style: italic; font-weight: 200; }
.hero-grad-text {
  background: linear-gradient(100deg, var(--growth), var(--marketing) 32%, var(--branding) 58%, var(--comunicacion) 80%, var(--people));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 40px;
}
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.disc-dots { display: flex; gap: 8px; align-items: center; }
.disc-dots .d { width: 12px; height: 12px; border-radius: 50%; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-x 26s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.marquee-item .d { width: 14px; height: 14px; border-radius: 50%; }

/* ---------- Section header ---------- */
.sec-head { display: flex; flex-direction: column; gap: 16px; }
.sec-head.center { align-items: center; text-align: center; }

/* ---------- Disciplinas grid ---------- */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
  margin-top: 40px;
}
.disc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--white);
  color: var(--t-ink);
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.disc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card, 0 18px 40px rgba(14,15,21,.08)); }
.disc-card .glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(46px);
  top: -60px; right: -60px;
  opacity: calc(0.22 + var(--grad)*0.4);
  background: var(--c);
}
.disc-card.span-2 { grid-column: span 2; }
.disc-card.span-3 { grid-column: span 3; }
.disc-card .num { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--c); position: relative; z-index: 2; }
.disc-card .body { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
.disc-card .name { font-size: clamp(26px, 2.4vw, 38px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.disc-card .phase { font-family: var(--serif); font-style: italic; font-weight: 200; font-size: 18px; color: var(--t-ink); opacity: .75; }
.disc-card .desc { font-size: 14.5px; line-height: 1.45; color: var(--t-muted); max-width: 34ch; }
.disc-card .chip {
  align-self: flex-start;
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 500;
}
.disc-card .chip .d { width: 9px; height: 9px; border-radius: 50%; background: var(--c); }

/* ---------- Ruta / route ---------- */
.route { display: flex; flex-direction: column; gap: var(--gap); margin-top: 40px; }
.route-step {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--r-card);
  background: var(--white);
  border: 1px solid var(--line);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.route-step:hover { background: var(--cream); box-shadow: 0 14px 34px rgba(14,15,21,.06); }
.route-alt { font-family: var(--sans); font-weight: 700; font-size: clamp(40px,5vw,72px); letter-spacing: -0.04em; line-height: 1; color: var(--accent); opacity: .9; }
.route-step .title { font-size: clamp(22px, 2.2vw, 32px); font-weight: 600; letter-spacing: -0.03em; }
.route-step .concept { font-family: var(--serif); font-style: italic; font-weight: 200; font-size: 18px; color: var(--t-muted); margin-top: 6px; line-height: 1.3; }
.route-step .angle { font-size: 15px; line-height: 1.5; color: var(--t-muted); }
.route-step .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.route-tag { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: var(--r-pill); border: 1px solid var(--line); font-size: 12px; font-weight: 500; }
.route-tag .d { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- Works / casos ---------- */
.works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin-top: 8px; }
.work-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 1 / 0.84;
  background: var(--cloud);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.work-card .veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,9,13,0.78)); z-index: 2; }
.work-card .meta { position: relative; z-index: 3; padding: 28px; color: #fff; display: flex; flex-direction: column; gap: 8px; }
.work-card .meta .top { display: flex; justify-content: space-between; align-items: center; }
.work-card .meta .cat { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.work-card .meta .cat .d { width: 9px; height: 9px; border-radius: 50%; }
.work-card .meta .yr { font-size: 13px; opacity: .8; }
.work-card .meta .title { font-size: clamp(26px, 2.6vw, 40px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.work-card .meta .sub { font-family: var(--serif); font-style: italic; font-weight: 200; font-size: 17px; opacity: .9; }

/* ---------- Video / showreel ---------- */
.showreel {
  position: relative;
  aspect-ratio: 16 / 8.2;
  border-radius: var(--r-block);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
}
.showreel .scrim { position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 40%, rgba(14,15,21,0.25), rgba(14,15,21,0.72)); z-index: 2; }
.showreel .reel-claim {
  position: relative; z-index: 3;
  text-align: center; color: #fff;
  font-weight: 600; letter-spacing: -0.035em; line-height: 0.95;
  font-size: clamp(36px, 5.5vw, 76px);
  max-width: 16ch;
}
.showreel .reel-claim em { font-family: var(--serif); font-style: italic; font-weight: 200; }
.showreel .play {
  position: absolute; z-index: 4; right: 28px; bottom: 28px;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .25s var(--ease);
  border: none;
}
.showreel .play:hover { transform: scale(1.07); }
.showreel .play svg { margin-left: 4px; }

/* ---------- Testimonial ---------- */
.testi { display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; min-height: 540px; }
.testi .img { position: relative; background: var(--cloud); }
.testi .quote { display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: clamp(32px,5vw,72px); }
.testi .quote .q { font-family: var(--serif); font-style: italic; font-weight: 200; font-size: clamp(26px, 3vw, 42px); line-height: 1.15; letter-spacing: -0.01em; }
.testi .quote .who { display: flex; flex-direction: column; gap: 3px; }
.testi .quote .who .n { font-weight: 600; font-size: 16px; }
.testi .quote .who .r { font-size: 15px; color: var(--t-muted); }

/* ---------- Programas / planes ---------- */
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin-top: 8px; }
.prog-card { position: relative; overflow: hidden; border-radius: var(--r-card); padding: 40px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 28px; }
.prog-card .pmesh { position: absolute; inset: -40% 30% 40% -40%; border-radius: 50%; filter: blur(55px); opacity: calc(0.28 + var(--grad)*0.32); z-index: 0; }
.prog-card > * { position: relative; z-index: 1; }
.prog-card .ptitle { font-size: clamp(30px, 3.4vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.prog-card .ptag { font-family: var(--serif); font-style: italic; font-weight: 200; font-size: 18px; color: var(--t-muted); }
.prog-list { display: flex; flex-direction: column; gap: 14px; }
.prog-list .li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--t-ink); }
.prog-list .li svg { flex: none; margin-top: 3px; color: var(--accent); }

/* ---------- Blog / diario ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); margin-top: 8px; }
.blog-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-card);
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  min-height: 300px;
  transition: transform .3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card .ph { height: 180px; position: relative; overflow: hidden; }
.blog-card .bbody { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.blog-card .bcat { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--t-muted); }
.blog-card .bcat .d { width: 8px; height: 8px; border-radius: 50%; }
.blog-card .btitle { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
.blog-card .bmeta { margin-top: auto; font-size: 13px; color: var(--t-muted); }

/* ---------- Footer / CTA ---------- */
.footer { position: relative; overflow: hidden; }
.footer .topo { color: var(--blue); }
.cta-big {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding: clamp(60px, 9vw, 130px) 24px;
  position: relative; z-index: 2;
}
.cta-big h2 { font-size: clamp(40px, 7vw, 92px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.95; margin: 0; color: var(--t-ink); }
.cta-big h2 em { font-family: var(--serif); font-style: italic; font-weight: 200; }
.footer-foot {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  padding: 36px clamp(28px,5vw,56px);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-foot .fl { display: flex; align-items: center; gap: 20px; }
.footer-logo { height: 24px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .ct { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--t-muted); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 15px; color: var(--t-ink); opacity: .85; }
.footer-col a:hover { opacity: 1; color: var(--accent); }

/* social pills */
.social { display: flex; gap: 6px; }
.social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s var(--ease), border-color .18s, color .18s;
}
.social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---- Dark footer legibility (texto, datos e iconos sobre fondo oscuro) ---- */
.footer.dark .footer-foot { border-top-color: var(--line-dark); }
.footer.dark .footer-col .ct { color: var(--t-muted-dark); }
.footer.dark .footer-col a,
.footer.dark .footer-col span { color: var(--t-on-dark); opacity: .9; }
.footer.dark .footer-col a:hover { color: #fff; opacity: 1; }
.footer.dark .social a { border-color: var(--line-dark); color: var(--t-on-dark); opacity: 1; }
.footer.dark .social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Section meta two-col ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-menu { display: none; }
  .disc-grid { grid-template-columns: 1fr 1fr; }
  .disc-card.span-2, .disc-card.span-3 { grid-column: span 1; }
  .route-step { grid-template-columns: 60px 1fr; }
  .route-step .angle { grid-column: 1 / -1; }
  .works-grid, .prog-grid, .blog-grid, .split { grid-template-columns: 1fr; }
  .testi { grid-template-columns: 1fr; }
  .testi .img { min-height: 320px; }
}
@media (max-width: 560px) {
  .disc-grid { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
}

/* ---------- Discipline color helpers ---------- */
.c-growth { --c: var(--growth); }
.c-marketing { --c: var(--marketing); }
.c-branding { --c: var(--branding); }
.c-comunicacion { --c: var(--comunicacion); }
.c-people { --c: var(--people); }
.c-blue { --c: var(--blue); }
.dot-c { background: var(--c) !important; }
.txt-c { color: var(--c); }
.cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.no-topo .topo { display: none; }

/* ---------- Hero con imagen de fondo (montaña) ---------- */
.hero-img { position: relative; overflow: hidden; background: var(--ink); }
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 28%;
  z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,11,16,0.74) 0%, rgba(10,11,16,0.44) 30%, rgba(10,11,16,0.52) 60%, rgba(10,11,16,0.92) 100%),
    linear-gradient(90deg, rgba(10,11,16,0.60) 0%, rgba(10,11,16,0.08) 60%),
    rgba(10,11,16,0.22);
}
.hero-img .hero-mark { color: #fff; }
.hero-img .hero-meta { color: rgba(255,255,255,0.82); }
.hero-img .eyebrow { color: #fff; }
.hero-img .hero-h1 h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.45); }
.hero-img .hero-h1 em { color: #fff; }
.hero-img .lead { color: rgba(255,255,255,0.92); text-shadow: 0 1px 16px rgba(0,0,0,0.4); }
.hero-img .btn-ghost { border-color: rgba(255,255,255,0.55); color: #fff; }
.hero-img .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); }

/* ---------- Marca registrada Play to Scale® ---------- */
.reg { font-size: 0.58em; vertical-align: super; line-height: 0; font-weight: inherit; }

/* ---------- Logo de marca 2026 (lockup completo) ---------- */
.brand-logo { height: 38px; width: auto; display: block; }
.logo-lockup .brand-logo { height: 40px; }
@media (max-width: 560px){ .brand-logo { height: 32px; } }
