/* ==========================================================================
   EXACTO Research — Design tokens & base system
   Paleta de marca: navy #041958 · purple #6D35B4 · lime #ABDE43
   ========================================================================== */

:root {
  /* Brand */
  --navy: #041958;
  --navy-deep: #020d33;
  --navy-rgb: 4, 25, 88;
  --purple: #6d35b4;
  --purple-rgb: 109, 53, 180;
  --purple-tint: #efe7fa;
  --lime: #abde43;
  --lime-deep: #7ea82f;
  --lime-rgb: 171, 222, 67;

  /* Light theme surface tokens — Propuesta 5: base cálida tipo editorial */
  --bg: #fbf6ee;
  --bg-subtle: #f4ecdd;
  --bg-inset: #eee3cf;
  --surface: #fffdf9;
  --surface-2: #f4ecdd;
  --border: #e8dcc6;
  --border-strong: #d9c9a8;
  --ink: #1a1710;
  --muted: #6b6355;
  --muted-2: #948a76;
  --shadow-color: 26, 23, 16;

  /* Paleta de acento extendida (chips de color, estilo editorial) */
  --acc-navy: #041958;
  --acc-purple: #6d35b4;
  --acc-lime: #7ea82f;
  --acc-coral: #d9540c;
  --acc-gold: #c98a12;
  --acc-teal: #147a72;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --font-head: "Fraunces", "Cambria", Georgia, serif;
  --font-body: "Inter", "Calibri", -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px rgba(var(--shadow-color), 0.06), 0 1px 1px rgba(var(--shadow-color), 0.04);
  --shadow-md: 0 6px 20px -4px rgba(var(--shadow-color), 0.14), 0 2px 6px rgba(var(--shadow-color), 0.06);
  --shadow-lg: 0 20px 45px -12px rgba(var(--shadow-color), 0.22), 0 6px 16px rgba(var(--shadow-color), 0.08);

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

:root[data-theme="dark"] {
  --bg: #060b1a;
  --bg-subtle: #0a1122;
  --bg-inset: #0d152a;
  --surface: #0d1528;
  --surface-2: #101a32;
  --border: #1c2740;
  --border-strong: #283552;
  --ink: #eef1fa;
  --muted: #a7b0c4;
  --muted-2: #7a8399;
  --shadow-color: 0, 0, 0;
  --purple-tint: #1c1533;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #060b1a;
    --bg-subtle: #0a1122;
    --bg-inset: #0d152a;
    --surface: #0d1528;
    --surface-2: #101a32;
    --border: #1c2740;
    --border-strong: #283552;
    --ink: #eef1fa;
    --muted: #a7b0c4;
    --muted-2: #7a8399;
    --shadow-color: 0, 0, 0;
    --purple-tint: #1c1533;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--lime); color: var(--navy);
  padding: 12px 18px; font-weight: 700; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--purple);
}
.kicker::before { content: ""; width: 18px; height: 2px; background: var(--lime); border-radius: 2px; }
.section-title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 600; margin-top: 12px; }
.section-lede { color: var(--muted); font-size: 16.5px; max-width: 640px; margin-top: 14px; }
.eyebrow-row { display: flex; flex-direction: column; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--lime); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--lime-deep); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
:root[data-theme="dark"] .brand .logo-light,
@media (prefers-color-scheme: dark) { .brand .logo-light { display: none; } }
.brand .logo-dark { display: none; }
:root[data-theme="dark"] .brand .logo-dark { display: block; }
:root[data-theme="dark"] .brand .logo-light { display: none; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 16px; border-radius: var(--radius-pill); font-size: 14.5px; font-weight: 600; color: var(--muted);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--navy); background: var(--bg-subtle); }
:root[data-theme="dark"] .nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a[aria-current="page"] { color: var(--purple); background: var(--purple-tint); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.theme-toggle:hover { border-color: var(--purple); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong);
  background: var(--surface); align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 76px 0 0 0; height: calc(100vh - 76px); background: var(--bg);
    flex-direction: column; align-items: stretch; padding: 18px; gap: 4px; transform: translateX(100%);
    transition: transform 0.3s var(--ease); overflow-y: auto; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 16px 18px; font-size: 17px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-actions .btn-sm.nav-cta { display: none; }
  .nav-links .mobile-cta { display: block; margin-top: 14px; }
  .nav-toggle { display: flex; }
}
@media (min-width: 901px) { .nav-links .mobile-cta { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--navy);
  padding: 96px 0 110px;
}
.hero-rings { position: absolute; inset: 0; pointer-events: none; }
.hero-rings span {
  position: absolute; border-radius: 50%; border: 1.5px solid rgba(171, 222, 67, 0.18);
}
.hero-rings span:nth-child(1) { width: 620px; height: 620px; top: -280px; right: -160px; border-color: rgba(109,53,180,0.35); }
.hero-rings span:nth-child(2) { width: 420px; height: 420px; bottom: -220px; left: -140px; border-color: rgba(171,222,67,0.22); }
.hero-grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero-copy .kicker { color: var(--lime); }
.hero-copy .kicker::before { background: var(--lime); }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 58px); font-weight: 600; margin-top: 18px; }
.hero h1 em { color: var(--lime); font-style: italic; }
.hero-copy p.lede { color: #cbd5f0; font-size: 18px; max-width: 540px; margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; max-width: 560px; }
.hero-stat { border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 16px; background: rgba(255,255,255,0.04); }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 30px; color: var(--lime); }
.hero-stat span { font-size: 12.5px; color: #aeb6c4; }

.hero-panel { position: relative; }
.hero-card {
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-lg);
}
.hero-card .tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); font-weight: 700; }
.hero-card h3 { color: #fff; font-size: 18px; margin-top: 8px; font-weight: 600; }
.mini-chart { margin-top: 18px; height: 120px; }
.hero-card .kpi-row { display: flex; justify-content: space-between; margin-top: 18px; }
.hero-card .kpi b { display: block; font-family: var(--font-head); font-size: 22px; color: #fff; }
.hero-card .kpi span { font-size: 11px; color: #aeb6c4; }

/* ---------- Sections ---------- */
section { padding: 92px 0; }
.section-alt { background: var(--bg-subtle); }
.section-head { max-width: 680px; }
.section-head.centered { max-width: 640px; margin: 0 auto; text-align: center; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card h3 { font-size: 17px; font-weight: 600; margin-top: 16px; }
.card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

.icon-circle {
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; flex-shrink: 0;
}
.icon-circle svg { width: 22px; height: 22px; }
.icon-circle.purple { background: var(--purple); }
.icon-circle.lime { background: var(--lime); color: var(--navy-deep); }
.icon-circle.tint { background: var(--purple-tint); color: var(--purple); }

.card-dark { background: var(--navy-deep); border-color: rgba(255,255,255,0.08); }
.card-dark h3, .card-dark b { color: #fff; }
.card-dark p { color: #aeb6c4; }
.card-dark:hover { border-color: rgba(255,255,255,0.2); }

/* Section (dark) */
.section-dark { background: var(--navy); color: #fff; }
.section-dark .kicker { color: var(--lime); }
.section-dark .kicker::before { background: var(--lime); }
.section-dark .section-title, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-lede { color: #cbd5f0; }

/* ---------- Chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 18px; border-radius: var(--radius-pill); background: var(--bg-subtle); font-size: 13.5px; font-weight: 600;
  color: var(--navy); border: 1px solid var(--border);
}
:root[data-theme="dark"] .chip { color: var(--ink); }
.chip.tint { background: var(--purple-tint); color: var(--purple); border-color: transparent; }
.chip.on-dark { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.14); }

/* ---------- Stat blocks ---------- */
.stat-block { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; background: var(--surface); }
.stat-block b { display: block; font-family: var(--font-head); font-size: 40px; color: var(--purple); }
.stat-block span { color: var(--muted); font-size: 13px; }

/* ---------- Feature rows (icon left, text right) ---------- */
.feature-row { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.feature-row:last-child { border-bottom: none; }
.feature-row h4 { font-size: 16px; font-weight: 600; }
.feature-row p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* ---------- Timeline (methodology / trajectory) ---------- */
.stepper { display: flex; justify-content: space-between; position: relative; margin-top: 56px; }
.stepper::before { content: ""; position: absolute; top: 21px; left: 5%; right: 5%; height: 2px; background: var(--border-strong); }
.step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; flex: 1; text-align: center; }
.step-dot { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); border: 4px solid var(--bg); }
.step:last-child .step-dot { background: var(--lime); color: var(--navy-deep); }
.step span { display: block; margin-top: 12px; font-size: 13px; font-weight: 600; max-width: 90px; }
@media (max-width: 760px) { .stepper { flex-wrap: wrap; gap: 24px 0; } .stepper::before { display: none; } .step { flex: 0 0 33.33%; } }

.timeline-dark { display: flex; justify-content: space-between; position: relative; margin-top: 60px; }
.timeline-dark::before { content: ""; position: absolute; top: 9px; left: 2%; right: 2%; height: 2px; background: #2a3a6b; }
.tl-node { position: relative; z-index: 1; text-align: center; flex: 1; }
.tl-node .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--purple); border: 3px solid var(--navy); margin: 0 auto; }
.tl-node:last-child .dot { background: var(--lime); width: 24px; height: 24px; }
.tl-node .yr { display: block; margin-top: 14px; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff; }
.tl-node .lbl { display: block; margin-top: 6px; font-size: 12px; color: #aeb9de; }
@media (max-width: 760px) { .timeline-dark { flex-wrap: wrap; gap: 28px 0; } .timeline-dark::before { display: none; } .tl-node { flex: 0 0 33%; } }

/* ---------- Office / contact cards ---------- */
.office-card { background: var(--navy-deep); border-radius: var(--radius-lg); padding: 30px; color: #fff; border: 1px solid rgba(255,255,255,0.08); }
.office-card .tag { color: var(--lime); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.office-card h3 { color: #fff; font-size: 22px; margin-top: 8px; }
.office-line { display: flex; gap: 12px; align-items: flex-start; margin-top: 16px; }
.office-line .icon-circle { width: 36px; height: 36px; background: rgba(255,255,255,0.1); }
.office-line .icon-circle svg { width: 16px; height: 16px; }
.office-line p, .office-line a { font-size: 14px; color: #cbd5f0; line-height: 1.5; }
.office-line a:hover { color: var(--lime); }

/* ---------- Forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-top: 16px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong); background: var(--bg);
  color: var(--ink); font-family: var(--font-body); font-size: 14.5px; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(var(--purple-rgb), 0.16);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; }
.form-status { margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.form-status.ok { display: block; background: rgba(171,222,67,0.15); color: var(--navy); border: 1px solid var(--lime); }
.form-status.err { display: block; background: rgba(217,83,79,0.1); color: #b3261e; border: 1px solid rgba(217,83,79,0.4); }
:root[data-theme="dark"] .form-status.ok { color: var(--lime); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- Map embed ---------- */
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); filter: grayscale(0.15); }
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); border-radius: var(--radius-lg); padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(171,222,67,0.12), transparent 55%); }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); position: relative; }
.cta-band p { color: #cbd5f0; margin-top: 12px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #cbd5f0; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #aeb6c4; font-size: 14px; transition: color 0.2s var(--ease); }
.site-footer a:hover { color: var(--lime); }
.footer-brand p { color: #aeb6c4; font-size: 14px; margin-top: 14px; max-width: 320px; }
.footer-brand img { height: 32px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background-color 0.2s var(--ease), transform 0.2s var(--ease); }
.social-btn:hover { background: var(--purple); transform: translateY(-3px); }
.social-btn svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--muted-2); }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy); padding: 68px 0 64px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-top: 14px; }
.page-hero p { color: #cbd5f0; margin-top: 14px; max-width: 620px; font-size: 16.5px; }
.breadcrumb { font-size: 13px; color: #aeb6c4; }
.breadcrumb a:hover { color: var(--lime); }

/* ---------- Confidentiality panel ---------- */
.confid-panel { display: flex; gap: 22px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.confid-panel .icon-circle { width: 60px; height: 60px; }
.confid-panel .icon-circle svg { width: 26px; height: 26px; }

/* ---------- Utility ---------- */
.mt-8 { margin-top: 8px; } .mt-16{margin-top:16px;} .mt-24{margin-top:24px;} .mt-32{margin-top:32px;} .mt-48{margin-top:48px;} .mt-64{margin-top:64px;}
.text-muted { color: var(--muted); }
.badge-new { background: var(--lime); color: var(--navy-deep); font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: var(--radius-pill); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Photography components (Propuesta 2) ---------- */
.photo-hero {
  position: relative; overflow: hidden; min-height: 640px; display: flex; align-items: center;
  padding: 96px 0 100px;
}
.photo-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-hero .bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(2,13,51,0.88) 0%, rgba(2,13,51,0.82) 45%, rgba(2,13,51,0.94) 100%),
    linear-gradient(100deg, rgba(2,13,51,0.55) 0%, rgba(2,13,51,0.15) 60%);
}
.photo-hero .container { position: relative; z-index: 2; }

.photo-hero-page {
  position: relative; overflow: hidden; min-height: 300px; display: flex; align-items: center;
  padding: 76px 0 70px;
}
.photo-hero-page .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-hero-page .bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(2,13,51,0.93) 0%, rgba(4,25,88,0.86) 55%, rgba(4,25,88,0.62) 100%);
}
.photo-hero-page .container { position: relative; z-index: 2; }

.img-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 9 / 7; isolation: isolate;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.img-card:hover img { transform: scale(1.045); }
.img-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(2,13,51,0.55) 100%); pointer-events: none; }
.img-card .img-card-tag {
  position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; gap: 8px; letter-spacing: 0.02em;
}
.img-card .img-card-tag svg { width: 16px; height: 16px; color: var(--lime); }

/* Leyendas del carrusel de directores: texto en azul corporativo sobre chip claro para legibilidad en cualquier foto */
.hero-carousel .img-card-tag {
  color: var(--navy); background: rgba(255,255,255,0.92); padding: 7px 14px 7px 10px; border-radius: var(--radius-pill);
  left: 16px; bottom: 16px; box-shadow: var(--shadow-sm);
}
.hero-carousel .img-card-tag svg { color: var(--purple); }

.banner-photo {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 340px;
  display: flex; align-items: center; box-shadow: var(--shadow-lg);
}
.banner-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.banner-photo .banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(2,13,51,0.92) 0%, rgba(2,13,51,0.7) 45%, rgba(2,13,51,0.28) 100%);
}
.banner-photo .banner-content { position: relative; z-index: 2; padding: 44px 48px; max-width: 640px; }
.banner-photo .banner-content h3 { color: #fff; font-size: clamp(20px, 2.6vw, 28px); }
.banner-photo .banner-content p { color: #cbd5f0; margin-top: 10px; }
@media (max-width: 760px) { .banner-photo { min-height: auto; } .banner-photo .banner-content { padding: 32px 24px; } }

.media-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media-copy.reverse { direction: rtl; } .media-copy.reverse > * { direction: ltr; }
@media (max-width: 860px) { .media-copy, .media-copy.reverse { grid-template-columns: 1fr; direction: ltr; } }

.avatar-strip { display: flex; margin-top: 18px; }
.avatar-strip img { width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--bg); object-fit: cover; margin-left: -12px; }
.avatar-strip img:first-child { margin-left: 0; }

/* ---------- Card with photo header (Propuesta 3) ---------- */
.card-photo { padding: 0; overflow: hidden; }
.card-photo .card-photo-img { position: relative; height: 150px; overflow: hidden; }
.card-photo .card-photo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card-photo:hover .card-photo-img img { transform: scale(1.06); }
.card-photo .card-photo-body { padding: 20px 22px 24px; }
.card-photo .icon-circle { margin-top: -38px; position: relative; z-index: 1; border: 3px solid var(--surface); }

/* ---------- Ventajas competitivas: big alternating rows ---------- */
.adv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.adv-row.reverse { direction: rtl; } .adv-row.reverse > * { direction: ltr; }
.adv-row + .adv-row { margin-top: 64px; }
.adv-row .adv-num { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--lime); letter-spacing: 0.1em; }
.adv-row .img-card { aspect-ratio: 4 / 3; }
@media (max-width: 860px) { .adv-row, .adv-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 24px; } .adv-row + .adv-row { margin-top: 40px; } }

/* ---------- Mosaic gallery ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: 12px; }
.mosaic .img-card { aspect-ratio: auto; border-radius: var(--radius); }
.mosaic .m-tall { grid-row: span 2; }
.mosaic .m-wide { grid-column: span 2; }
@media (max-width: 760px) { .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; } .mosaic .m-wide { grid-column: span 2; } }

/* ---------- Propuesta 4: full-bleed photo section w/ triangle bullet list ---------- */
.photo-band { position: relative; overflow: hidden; padding: 100px 0; }
.photo-band .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-band .bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(2,13,51,0.94) 0%, rgba(4,25,88,0.88) 45%, rgba(4,25,88,0.7) 100%); }
.photo-band .container { position: relative; z-index: 2; }
.photo-band .huge-title { color: #fff; font-size: clamp(30px, 4.2vw, 48px); font-weight: 600; letter-spacing: 0.01em; }

.tri-list { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 48px; }
@media (max-width: 760px) { .tri-list { grid-template-columns: 1fr; } }
.tri-item { display: flex; align-items: flex-start; gap: 18px; }
.tri-item .tri-icon { flex-shrink: 0; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.tri-item .tri-icon svg { width: 30px; height: 30px; color: var(--lime); filter: drop-shadow(0 0 8px rgba(171,222,67,0.5)); }
.tri-item h4 { color: #fff; font-size: 20px; font-weight: 600; line-height: 1.3; }
.tri-item p { color: #b9c3de; font-size: 14px; margin-top: 6px; }

/* ---------- Región / cobertura split ---------- */
.region-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.region-split .region-cell { position: relative; height: 360px; overflow: hidden; }
.region-split .region-cell img { width: 100%; height: 100%; object-fit: cover; }
.region-split .region-cell .region-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,13,51,0.85) 0%, rgba(2,13,51,0.05) 55%); }
.region-split .region-cell .region-label { position: absolute; left: 20px; bottom: 18px; color: #fff; font-weight: 700; font-size: 16px; }
.region-split .region-cell .region-label span { display: block; font-weight: 500; font-size: 12.5px; color: #cbd5f0; margin-top: 2px; }
@media (max-width: 700px) { .region-split { grid-template-columns: 1fr; } .region-split .region-cell { height: 240px; } }

/* ---------- Propuesta 5: tipografía editorial / bold display ---------- */
.display-huge {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(38px, 6vw, 78px); line-height: 0.98; letter-spacing: -0.01em; color: var(--ink);
}
.display-huge .hl { color: var(--acc-lime); font-style: italic; }
.eyebrow-tri {
  display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow-tri span::after { content: "·"; margin-left: 18px; color: var(--border-strong); }
.eyebrow-tri span:last-child::after { content: none; }
.fragment-copy { font-family: var(--font-head); font-size: clamp(20px, 2.6vw, 30px); line-height: 1.35; color: var(--ink); }
.fragment-copy b { font-weight: 600; }
.fragment-copy .accent { color: var(--acc-purple); }

/* ---------- Color-chip cards con fotografía duotono (grid de ventajas estilo editorial) ---------- */
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .chip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .chip-grid { grid-template-columns: 1fr; } }
.chip-card {
  border-radius: var(--radius-lg); min-height: 280px; display: flex; flex-direction: column;
  justify-content: flex-end; color: #fff; position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.28);
}
.chip-card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px -14px rgba(0,0,0,0.34); }
.chip-card:hover .chip-bg { transform: scale(1.06); }
.chip-card .chip-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s var(--ease); }
.chip-card .chip-tint { position: absolute; inset: 0; z-index: 1; mix-blend-mode: multiply; }
.chip-card .chip-fade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%); }
.chip-card .chip-body { position: relative; z-index: 2; padding: 26px 24px; }
.chip-card .chip-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.24); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; }
.chip-card .chip-icon svg { width: 20px; height: 20px; color: #fff; }
.chip-card h3 { color: #fff; font-size: 19.5px; margin-top: 16px; font-weight: 600; }
.chip-card p { color: rgba(255,255,255,0.92); font-size: 13.5px; line-height: 1.5; margin-top: 8px; }
.chip-card .chip-num { position: absolute; right: 18px; top: 14px; z-index: 2; font-family: var(--font-head); font-size: 34px; font-weight: 600; color: rgba(255,255,255,0.55); }
.chip-c1 .chip-tint { background: var(--acc-navy); opacity: 0.82; } .chip-c2 .chip-tint { background: var(--acc-purple); opacity: 0.8; } .chip-c3 .chip-tint { background: var(--acc-coral); opacity: 0.78; }
.chip-c4 .chip-tint { background: var(--acc-teal); opacity: 0.8; } .chip-c5 .chip-tint { background: var(--acc-gold); opacity: 0.75; } .chip-c6 .chip-tint { background: var(--acc-lime); opacity: 0.72; }

/* ---------- Numbered process (estilo bold/editorial) ---------- */
.proc-list { display: flex; flex-direction: column; margin-top: 40px; }
.proc-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--border); align-items: start; }
.proc-item:first-child { padding-top: 0; }
.proc-item:last-child { border-bottom: none; }
.proc-item .proc-n { font-family: var(--font-head); font-size: 44px; font-weight: 600; color: var(--border-strong); line-height: 1; }
.proc-item:hover .proc-n { color: var(--acc-lime); transition: color 0.3s var(--ease); }
.proc-item h4 { font-size: 19px; font-weight: 600; color: var(--ink); }
.proc-item p { color: var(--muted); font-size: 14.5px; margin-top: 6px; max-width: 620px; }

/* ---------- Editorial photo frame (offset color block behind image) ---------- */
.ed-frame { position: relative; }
.ed-frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; background: var(--acc-lime); border-radius: var(--radius-lg); z-index: 0;
}
.ed-frame .img-card { position: relative; z-index: 1; }
@media (max-width: 620px) { .ed-frame::before { inset: 12px -12px -12px 12px; } }

/* ---------- Hero carousel (rotación de fotos) ---------- */
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease); z-index: 0; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stat { padding: 10px; }
  .hero-stat b { font-size: 22px; }
  .cta-band { padding: 36px 22px; }
  .footer-bottom { flex-direction: column; }
  .photo-hero { min-height: auto; padding: 64px 0 56px; }
  .photo-hero-page { min-height: auto; padding: 56px 0 48px; }
  .media-copy, .media-copy.reverse { gap: 28px; }
}
