
/* ============================================================
   LiveDirecto 2026 — CSS mejorado
   Paleta, logos y estructura: sin cambios.
   Mejoras: tipografía, espaciados, transiciones, nav, footer.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

:root {
  --bg:    #0f1722;
  --bg2:   #151f2c;
  --card:  #111c29;
  --text:  #ffffff;
  --muted: #cfd6df;
  --orange:  #ff5b00;
  --orange2: #ff9f00;
  --line:  rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.40);
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, 90%); margin: 0 auto; }

/* ── Nav ── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 20;
  transition: background var(--transition), box-shadow var(--transition);
}

header.scrolled {
  background: rgba(9, 14, 22, .96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(9,14,22,.92) 0%, rgba(9,14,22,.40) 70%, transparent 100%);
  backdrop-filter: blur(4px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; }

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(238,243,248,.85);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .01em;
  transition: color var(--transition), background var(--transition);
}
nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
nav a.active { color: var(--orange); }

.nav-cta {
  background: #fff !important;
  color: #111 !important;
  font-weight: 800 !important;
  padding: 9px 18px !important;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--orange) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,91,0,.35) !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0b1118;
}

.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .65;
}
.video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.77vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  border: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,14,22,.97) 0%, rgba(9,14,22,.80) 44%, rgba(9,14,22,.38) 100%),
    linear-gradient(180deg, rgba(9,14,22,.12) 0%, rgba(9,14,22,.82) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 900px;
}

.hero-logo {
  width: min(340px, 68vw);
  height: auto;
  margin: 0 0 32px;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,.45));
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(255,91,0,.28);
}
.btn.primary:hover { box-shadow: 0 18px 40px rgba(255,91,0,.42); }

.btn.secondary {
  background: #fff;
  color: #111;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.btn.secondary:hover { background: #f0f0f0; }

.btn.ghost {
  border-color: rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.06);
}
.btn.ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.38); }

/* ── Typography ── */
.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
}

h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: .97;
  letter-spacing: -2.5px;
  font-weight: 900;
  margin: 16px 0 22px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -1.8px;
  font-weight: 900;
}

h3 { font-size: 22px; line-height: 1.18; font-weight: 800; }

.hero p {
  max-width: 620px;
  color: rgba(237,242,247,.88);
  font-size: 18px;
  line-height: 1.65;
  margin: 0 0 32px;
}

.actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Sections ── */
section { padding: 88px 0; }
.section-dark { background: var(--bg2); }

.section-title {
  max-width: 800px;
  margin-bottom: 44px;
}
.section-title h2 { margin: 0 0 14px; }
.section-title p { color: var(--muted); font-size: 18px; line-height: 1.65; }

/* ── Cards ── */
.card {
  background: linear-gradient(160deg, rgba(255,255,255,.065) 0%, rgba(255,255,255,.022) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,91,0,.30);
  box-shadow: 0 28px 72px rgba(0,0,0,.48);
}

.icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,91,0,.13);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,91,0,.18);
}

.card h3 { font-size: 22px; margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.6; }

/* ── Grid ── */
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ── Split ── */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }

/* ── Panel ── */
.panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,91,0,.14), rgba(255,255,255,.04)), var(--card);
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: var(--shadow);
}
.panel h2 { margin: 0 0 16px; }
.panel p { color: var(--muted); font-size: 17px; line-height: 1.65; }

.checks { list-style: none; padding: 0; margin: 22px 0 0; }
.checks li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #eef3f8;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.checks li::before { content: "✓"; color: var(--orange); flex-shrink: 0; font-weight: 900; }

/* ── Photo card ── */
.photo-card {
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,91,0,.32), rgba(0,0,0,.28)),
    url("https://livedirecto.com/aaweb/2026/assets/images/offer-image1.jpg") center/cover;
  box-shadow: var(--shadow);
  position: relative;
}
.photo-card::before {
  content: "";
  position: absolute;
  top: 24px; right: 24px;
  width: 88px; height: 88px;
  background: url("assets/images/isologo.png") center/contain no-repeat;
  opacity: .88;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}
.photo-card::after {
  content: "Experiencia real en eventos corporativos e institucionales desde 2010";
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(8,13,20,.82);
  backdrop-filter: blur(8px);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  border: 1px solid rgba(255,255,255,.08);
}

/* ── Logos ── */
.logos { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.logo-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  color: #e8eef5;
  background: rgba(255,255,255,.04);
  font-weight: 800;
  font-size: 14px;
  transition: background var(--transition), border-color var(--transition);
}
.logo-item:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }

/* ── Worldcup ── */
.worldcup-highlight {
  background:
    radial-gradient(circle at top left, rgba(255,91,0,.32), transparent 32%),
    linear-gradient(135deg, #0b111a, #192638);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}
.worldcup-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  padding: 44px;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.worldcup-box::before {
  content: "";
  position: absolute; right: 32px; top: 32px;
  width: 80px; height: 80px;
  background: url("assets/images/isologo.png") center/contain no-repeat;
  opacity: .14;
}
.worldcup-box h2 { margin: 0 0 12px; }
.worldcup-box p { color: var(--muted); font-size: 17px; margin: 0; max-width: 700px; }
.worldcup-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Steps ── */
.steps { display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: border-color var(--transition), background var(--transition);
}
.step:hover { background: rgba(255,255,255,.07); border-color: rgba(255,91,0,.25); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255,91,0,.25);
}
.step h3 { margin: 0 0 5px; font-size: 20px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* ── CTA block ── */
.cta {
  background:
    radial-gradient(circle at top right, rgba(255,91,0,.30), transparent 34%),
    linear-gradient(135deg, #0c121a, #172331);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta h2 { margin: 0 0 10px; }
.cta p { color: var(--muted); margin: 0; font-size: 17px; }

/* ── Orange panel ── */
.orange-panel {
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255,159,0,.28), transparent 30%),
    linear-gradient(135deg, var(--orange), #e84e00);
  padding: 40px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(255,91,0,.30);
}
.orange-panel h2 { margin: 0 0 16px; }
.orange-panel p { font-size: 17px; margin: 0 0 14px; line-height: 1.65; opacity: .92; }

/* ── Footer ── */
footer {
  padding: 52px 0 36px;
  border-top: 1px solid var(--line);
  background: #090e16;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-logo { height: 32px; width: auto; }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 4px;
}
.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.social-links a {
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition: background var(--transition), border-color var(--transition);
}
.social-links a:hover { background: rgba(255,91,0,.18); border-color: rgba(255,91,0,.40); }

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(185,195,207,.55); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 12px; color: rgba(185,195,207,.55); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }

/* ── Page Hero (inner pages) ── */
.page-hero, .v3-hero {
  padding: 150px 0 78px;
  background:
    radial-gradient(circle at 70% top, rgba(255,91,0,.22), transparent 38%),
    radial-gradient(circle at bottom left, rgba(255,159,0,.10), transparent 30%),
    linear-gradient(150deg, #090f16, #172331);
  border-bottom: 1px solid var(--line);
}
.page-hero h1, .v3-hero h1 {
  font-size: clamp(40px, 6.5vw, 78px);
  line-height: .97;
  letter-spacing: -2.5px;
  margin: 16px 0 18px;
}
.page-hero p, .v3-hero p { color: var(--muted); font-size: 19px; max-width: 820px; line-height: 1.65; }

/* ── Feature list ── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 26px;
}
.feature-list .item {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: border-color var(--transition), background var(--transition);
}
.feature-list .item:hover { border-color: rgba(255,91,0,.28); background: rgba(255,255,255,.07); }
.feature-list .item strong { color: #fff; display: block; font-size: 20px; margin-bottom: 6px; }
.feature-list .item span { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ── Client grid ── */
.client-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
}
.client-grid div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  font-weight: 800;
  font-size: 13.5px;
  color: #eef3f8;
  transition: background var(--transition), border-color var(--transition);
}
.client-grid div:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }

/* ── Stats ── */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.stat {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.stat strong { display: block; font-size: 36px; line-height: 1; color: var(--orange); margin-bottom: 8px; font-weight: 900; }
.stat span { font-size: 14px; color: var(--muted); }

/* ── Kicker ── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,91,0,.11);
  color: var(--orange);
  border: 1px solid rgba(255,91,0,.24);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 11.5px;
}

/* ── Text columns ── */
.text-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.text-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color var(--transition), background var(--transition);
}
.text-box:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); }
.text-box h3 { font-size: 24px; margin: 0 0 12px; line-height: 1.1; }
.text-box p { color: var(--muted); margin: 0; font-size: 15px; line-height: 1.65; }

/* ── Timeline ── */
.timeline { display: grid; gap: 12px; }
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  padding: 22px;
}
.timeline-item strong { color: var(--orange); font-size: 19px; font-weight: 900; }

/* ── Table-like ── */
.table-like {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.table-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.1fr;
  border-bottom: 1px solid var(--line);
}
.table-row:last-child { border-bottom: 0; }
.table-row div { padding: 18px; font-size: 14px; }
.table-row strong { color: #fff; font-weight: 700; }
.table-row span { color: var(--muted); }

/* ── Badge list ── */
.badge-list { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 20px; }
.badge-list span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  padding: 8px 14px;
  color: #eef3f8;
  font-weight: 700;
  font-size: 13px;
}

.cta-mini { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FAQ ── */
.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); }
.faq-item h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; }
.faq-item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── v3 cards / grids ── */
.mega-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.mega-card {
  background: linear-gradient(160deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}
.mega-card:hover { transform: translateY(-4px); border-color: rgba(255,91,0,.28); }
.mega-card h3 { margin: 0 0 10px; font-size: 21px; line-height: 1.12; }
.mega-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.v3-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.v3-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.v3-card {
  background: linear-gradient(160deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}
.v3-card:hover { transform: translateY(-4px); border-color: rgba(255,91,0,.28); }
.v3-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.12; font-weight: 800; }
.v3-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.v3-card .mini {
  color: var(--orange);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.v3-list { list-style: none; padding: 0; margin: 16px 0 0; }
.v3-list li {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 0;
  color: #eef3f8;
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: baseline; gap: 9px;
}
.v3-list li::before { content: "✓"; color: var(--orange); flex-shrink: 0; font-weight: 900; }

/* ── v3 compare table ── */
.v3-compare {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.v3-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1.4fr;
  border-bottom: 1px solid var(--line);
}
.v3-row:last-child { border-bottom: 0; }
.v3-row div { padding: 16px; font-size: 14px; }
.v3-row.head { background: rgba(255,91,0,.14); font-weight: 800; color: #fff; }
.v3-row strong { color: #fff; font-weight: 700; }
.v3-row span { color: var(--muted); }

/* ── v3 flow ── */
.v3-flow {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
  margin-top: 26px;
}
.v3-flow div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  transition: background var(--transition), border-color var(--transition);
}
.v3-flow div:hover { background: rgba(255,91,0,.12); border-color: rgba(255,91,0,.30); }
.v3-flow div span { display: block; color: var(--orange); margin-bottom: 6px; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.v3-note {
  border-left: 4px solid var(--orange);
  background: rgba(255,91,0,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Mega nav ── */
.v3-mega-nav { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.v3-mega-nav a {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  padding: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.v3-mega-nav a:hover {
  background: rgba(255,91,0,.15);
  border-color: rgba(255,91,0,.38);
  transform: translateY(-2px);
}

/* ── Complementary ── */
.complementary-wheel { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.complementary-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(255,91,0,.18), transparent 33%),
    linear-gradient(160deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}
.complementary-block:hover { transform: translateY(-3px); border-color: rgba(255,91,0,.28); }
.complementary-block h3 { margin: 0 0 12px; font-size: 28px; line-height: 1.05; letter-spacing: -.8px; }
.complementary-block p { color: var(--muted); margin: 0 0 18px; font-size: 15px; line-height: 1.65; }

.complementary-core {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px; min-height: 104px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
  margin-bottom: 18px;
  box-shadow: 0 16px 44px rgba(255,91,0,.30);
  text-align: center;
  padding: 12px;
}

.service-orbit { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; }
.service-orbit span {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.05);
  color: #fff;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.service-orbit span:hover { background: rgba(255,91,0,.14); border-color: rgba(255,91,0,.32); }

.complementary-band {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  padding: 44px;
  background:
    radial-gradient(circle at top left, rgba(255,91,0,.28), transparent 32%),
    linear-gradient(135deg, #0b111a, #192638);
  box-shadow: var(--shadow);
}
.complementary-band h2 { font-size: clamp(32px, 5vw, 60px); line-height: 1; letter-spacing: -1.8px; margin: 0 0 14px; }
.complementary-band p { color: var(--muted); font-size: 17px; max-width: 840px; line-height: 1.65; }

/* ── Segments horizontal ── */
.segment-horizontal {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
  margin-top: 28px;
}
.segment-horizontal a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  padding: 22px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.segment-horizontal a:hover {
  transform: translateY(-5px);
  background: rgba(255,91,0,.14);
  border-color: rgba(255,91,0,.42);
  box-shadow: 0 16px 40px rgba(255,91,0,.14);
}
.segment-horizontal small {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}
.segment-horizontal strong { display: block; font-size: 21px; line-height: 1.06; letter-spacing: -.4px; margin-bottom: 9px; }
.segment-horizontal span { display: block; color: var(--muted); font-size: 13.5px; line-height: 1.45; font-weight: 500; }
.segment-horizontal em {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,.7);
  font-style: normal;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 12px;
  font-weight: 700;
  transition: color var(--transition);
}
.segment-horizontal a:hover em { color: #fff; }

/* ── Video library ── */
.library-tools { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.library-search {
  flex: 1; min-width: 260px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.library-search::placeholder { color: rgba(185,195,207,.7); }
.library-search:focus { border-color: rgba(255,91,0,.5); background: rgba(255,255,255,.10); }

.video-library { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.video-card {
  background: linear-gradient(160deg, rgba(255,255,255,.065), rgba(255,255,255,.022));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-5px); border-color: rgba(255,91,0,.42); box-shadow: 0 28px 64px rgba(0,0,0,.48); }

.video-thumb {
  position: relative; aspect-ratio: 16/9;
  display: block; background: #000; overflow: hidden;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .88;
  transition: transform .28s ease, opacity .28s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); opacity: 1; }

.play-badge {
  position: absolute; inset: auto auto 14px 14px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; font-size: 20px;
  box-shadow: 0 10px 30px rgba(255,91,0,.40);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover .play-badge { transform: scale(1.1); box-shadow: 0 14px 40px rgba(255,91,0,.55); }

.video-meta { padding: 20px; }
.video-meta .number {
  color: var(--orange); font-weight: 800; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
}
.video-meta .video-title { margin: 8px 0 14px; font-size: 18px; line-height: 1.22; min-height: 44px; font-weight: 700; }
.video-meta .video-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.video-meta a, .video-meta button {
  border: 0; border-radius: 999px;
  padding: 10px 14px; cursor: pointer;
  text-decoration: none; font-weight: 800;
  font-size: 13px; font-family: inherit;
  transition: background var(--transition), transform var(--transition);
}
.video-meta a:hover, .video-meta button:hover { transform: translateY(-1px); }
.video-meta a { background: rgba(255,255,255,.08); color: #fff; border: 1px solid var(--line); }
.video-meta a:hover { background: rgba(255,255,255,.14); }
.video-meta button { background: linear-gradient(135deg, var(--orange), var(--orange2)); color: #fff; box-shadow: 0 6px 18px rgba(255,91,0,.25); }
.video-meta button:hover { box-shadow: 0 10px 26px rgba(255,91,0,.40); }

/* ── Modal ── */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(8px);
  z-index: 1000; display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-box {
  width: min(1080px, 96vw);
  background: #0a1018;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,.65);
}
.video-modal-head {
  display: flex; justify-content: space-between;
  align-items: center; gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.video-modal-head strong { font-size: 17px; font-weight: 700; }
.video-modal-close {
  background: #fff; color: #111; border: 0;
  border-radius: 999px; padding: 8px 14px;
  cursor: pointer; font-weight: 900; font-size: 13px;
  font-family: inherit;
  transition: background var(--transition);
}
.video-modal-close:hover { background: var(--orange); color: #fff; }
.video-modal-frame { aspect-ratio: 16/9; background: #000; }
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Video grid (video.html) ── */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-info { padding: 20px; }
.video-info span { color: var(--orange); font-weight: 800; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.video-info h3 { margin: 8px 0 12px; font-size: 19px; line-height: 1.15; font-weight: 800; }
.video-info a { color: #fff; text-decoration: none; font-weight: 800; border-bottom: 2px solid var(--orange); padding-bottom: 1px; transition: color var(--transition); }
.video-info a:hover { color: var(--orange); }

.decada-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }

/* ── Nav scroll script hint ── */
[data-scroll-nav] { scroll-margin-top: 80px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .mega-grid, .v3-grid-4, .v3-flow, .v3-mega-nav { grid-template-columns: repeat(2,1fr); }
  .video-library { grid-template-columns: repeat(2,1fr); }
  .video-grid { grid-template-columns: repeat(2,1fr); }
  .segment-horizontal { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  nav { display: none; }
  .grid, .split, .logos, .cta, .v3-grid-3, .complementary-wheel { grid-template-columns: 1fr; }
  .worldcup-box { grid-template-columns: 1fr; padding: 30px; }
  h1, .v3-hero h1, .page-hero h1 { letter-spacing: -1.8px; }
  .hero-content { padding-top: 130px; }
  .card, .mega-card { min-height: auto; }
  .photo-card { min-height: 400px; }
  .cta { grid-template-columns: 1fr; padding: 32px; }
  .brand img { height: 34px; }
  .v3-row { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .segment-horizontal { grid-template-columns: 1fr; }
  .segment-horizontal a { min-height: auto; }
  .feature-list, .client-grid, .stat-row, .decada-intro { grid-template-columns: 1fr; }
  .text-columns { grid-template-columns: 1fr; }
  .v3-grid-4, .v3-flow, .v3-mega-nav, .mega-grid { grid-template-columns: 1fr; }
  .video-library, .video-grid { grid-template-columns: 1fr; }
  .service-orbit { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}

/* ── Nav scroll active (JS añade .scrolled a header) ── */
