/* ===== VARIABLES ===== */
:root {
  --orange: #F26522;
  --orange-dark: #D4561E;
  --orange-light: #F58B4E;
  --cream: #FBEBD5;
  --teal: #2B8D93;
  --teal-light: #71ACB2;
  --navy: #18405B;
  --white: #FFFFFF;
  --black: #1C1C1C;
  --gray: #4A4A4A;
  --gray-light: #F7F8FA;
  --gray-subtle: #8C8C8C;

  /* Editorial type system (solo hero) */
  --font-display: 'Nunito Sans', 'Montserrat', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --display-weight: 900;
  --display-tracking: -0.025em;
  --display-line: 0.92;
}

/* ===== WAVY BACKGROUND PATTERN ===== */
.wavy-bg {
  position: relative;
}
.wavy-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cpath d='M-50 200 C100 150 200 300 350 250 S500 100 650 200 S800 350 950 250' fill='none' stroke='%23F26522' stroke-width='2' opacity='0.07'/%3E%3Cpath d='M-50 280 C100 230 200 380 350 330 S500 180 650 280 S800 430 950 330' fill='none' stroke='%23F26522' stroke-width='2' opacity='0.05'/%3E%3Cpath d='M-50 360 C100 310 200 460 350 410 S500 260 650 360 S800 510 950 410' fill='none' stroke='%23F26522' stroke-width='2' opacity='0.04'/%3E%3Cpath d='M-50 500 C100 450 200 600 350 550 S500 400 650 500 S800 650 950 550' fill='none' stroke='%232B8D93' stroke-width='2' opacity='0.06'/%3E%3Cpath d='M-50 580 C100 530 200 680 350 630 S500 480 650 580 S800 730 950 630' fill='none' stroke='%232B8D93' stroke-width='2' opacity='0.04'/%3E%3Cpath d='M-50 700 C100 650 200 800 350 750 S500 600 650 700 S800 850 950 750' fill='none' stroke='%23F26522' stroke-width='1.5' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 800px 800px;
}
/* On dark backgrounds, use white waves */
.wavy-bg-light::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cpath d='M-50 200 C100 150 200 300 350 250 S500 100 650 200 S800 350 950 250' fill='none' stroke='white' stroke-width='2' opacity='0.06'/%3E%3Cpath d='M-50 280 C100 230 200 380 350 330 S500 180 650 280 S800 430 950 330' fill='none' stroke='white' stroke-width='2' opacity='0.04'/%3E%3Cpath d='M-50 360 C100 310 200 460 350 410 S500 260 650 360 S800 510 950 410' fill='none' stroke='white' stroke-width='2' opacity='0.04'/%3E%3Cpath d='M-50 500 C100 450 200 600 350 550 S500 400 650 500 S800 650 950 550' fill='none' stroke='white' stroke-width='2' opacity='0.05'/%3E%3Cpath d='M-50 580 C100 530 200 680 350 630 S500 480 650 580 S800 730 950 630' fill='none' stroke='white' stroke-width='2' opacity='0.03'/%3E%3Cpath d='M-50 700 C100 650 200 800 350 750 S500 600 650 700 S800 850 950 750' fill='none' stroke='white' stroke-width='1.5' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 800px 800px;
}
.wavy-bg > * { position: relative; z-index: 1; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
.mont { font-family: 'Montserrat', sans-serif; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo span { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 24px; color: var(--orange); letter-spacing: 1.5px; }
.navbar-logo small { font-family: 'Montserrat', sans-serif; font-weight: 300; font-size: 18px; color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 13px;
  color: var(--gray); letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 8px; font-weight: 600 !important; font-size: 13px !important;
  transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.navbar-logos { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.navbar-separator { width: 1px; height: 32px; background: rgba(0,0,0,0.12); }
.navbar-partner-logo { height: 44px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.navbar-partner-logo:hover { opacity: 1; }
.navbar-partner-logo.invert { filter: invert(1); height: 52px; }
.nav-cta-teal {
  background: var(--teal) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 8px; font-weight: 600 !important; font-size: 13px !important;
  transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.nav-cta-teal:hover { background: var(--navy) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--black); transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, rgba(43,141,147,0.45) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: linear-gradient(270deg, rgba(43,141,147,0.45) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}
.hero-bg-pattern { position: absolute; inset: 0; opacity: 0.08; pointer-events: none; }
.hero-bg-pattern img { width: 100%; height: 100%; object-fit: cover; }
.hero-decorative-right { position: absolute; right: -80px; bottom: -80px; width: 500px; opacity: 0.12; pointer-events: none; }
.hero-decorative-left { position: absolute; left: -120px; top: -60px; width: 400px; opacity: 0.10; pointer-events: none; transform: rotate(180deg); }
.hero-layout {
  position: relative; z-index: 2; display: flex; align-items: center;
  justify-content: center; gap: 40px; padding: 120px 24px 80px;
  max-width: 1800px; width: 100%;
}
.hero-quote-side {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
  max-width: 220px; text-align: center;
}
.hero-estro-side {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  max-width: 360px; gap: 24px;
}
.hero-estro-side > img {
  width: 100%; max-width: 320px;
}
.hero-mockup-placeholder {
  width: 100%; min-height: 200px; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 2px dashed rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.hero-mockup-placeholder img {
  width: 100%; border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hero-quote-avatar {
  width: 160px; height: 160px; border-radius: 50%; overflow: hidden;
  border: 4px solid rgba(255,255,255,0.4); margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-quote-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-quote-text {
  font-family: 'Lato', sans-serif; font-style: italic; font-size: 15px;
  color: var(--white); line-height: 1.6; margin-bottom: 12px;
}
.hero-quote-author {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
  color: rgba(255,255,255,0.8); letter-spacing: 1px; text-transform: uppercase;
}
.hero-quote-role {
  font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 11px;
  color: rgba(255,255,255,0.6); margin-top: 2px;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 700px; flex: 1;
}
.hero-logos {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.hero-logos img {
  height: 50px; width: auto;
}
.hero-logos img.hero-logo-card {
  background: rgba(255,255,255,0.95); padding: 8px 16px; border-radius: 6px;
}
.hero-badge {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 20px;
}
.hero-title {
  font-weight: 900; font-size: clamp(60px, 12vw, 120px);
  color: var(--white); letter-spacing: 4px; line-height: 0.95; margin-bottom: 8px;
}
.hero-year {
  font-family: 'Montserrat', sans-serif; font-weight: 300;
  font-size: clamp(32px, 6vw, 56px); color: var(--white);
  letter-spacing: 8px; margin-bottom: 28px;
}
.hero-subtitle {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: clamp(16px, 2.5vw, 22px); color: var(--white); margin-bottom: 12px;
}
.hero-tagline {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px; color: var(--orange);
  background: var(--white); padding: 10px 28px; letter-spacing: 2px; margin: 20px 0;
}
.hero-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 32px; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 15px; }
.hero-meta-item svg { width: 20px; height: 20px; fill: var(--white); opacity: 0.8; }
.hero-cta-group { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* Buttons */
.btn {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 1px; padding: 16px 36px; border: none; border-radius: 6px;
  cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-white { background: var(--white); color: var(--orange); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,101,34,0.3); }

.hero-scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.hero-scroll-hint svg { width: 28px; height: 28px; fill: rgba(255,255,255,0.5); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-title { font-weight: 700; font-size: clamp(28px, 4vw, 42px); color: var(--navy); margin-bottom: 20px; }
.section-desc { font-size: 18px; color: var(--gray); max-width: 700px; line-height: 1.7; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--navy); padding: 0 24px; }
.stats-bar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-card { padding: 48px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-card:last-child { border: none; }
.stat-number { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 44px; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; align-items: start; }
.about-text p { font-size: 16px; color: var(--gray); margin-bottom: 20px; line-height: 1.75; }
.about-quote {
  background: var(--teal); color: var(--white);
  padding: 32px 36px; font-style: italic; font-size: 17px; line-height: 1.7;
  position: relative; margin-top: 24px;
}
.about-quote::before {
  content: '\201C'; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 80px;
  position: absolute; top: -10px; left: 16px; opacity: 0.2; line-height: 1;
}
.about-quote .author { font-style: normal; font-size: 13px; margin-top: 16px; opacity: 0.7; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex; gap: 16px; padding: 24px;
  background: var(--gray-light); border-left: 4px solid var(--teal); transition: transform 0.2s;
}
.about-feature:hover { transform: translateX(4px); }
.about-feature-icon {
  width: 48px; height: 48px; background: var(--cream); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-feature-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.about-feature h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-feature p { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ===== PROGRAM ===== */
.program-section { background: var(--gray-light); }
.program-timeline { margin-top: 48px; }
.program-block {
  display: grid; grid-template-columns: 140px 1fr;
  margin-bottom: 2px; background: var(--white); transition: transform 0.2s;
}
.program-block:hover { transform: translateX(4px); }
.program-time {
  padding: 24px 20px; background: var(--navy); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.3;
}
.program-content { padding: 24px 28px; display: flex; align-items: center; gap: 16px; }
.program-content h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.program-content p { font-size: 13px; color: var(--gray-subtle); line-height: 1.5; }
.program-tag {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 10px;
  padding: 4px 10px; border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.tag-mesa { background: var(--teal); color: var(--white); }
.tag-plenaria { background: var(--navy); color: var(--white); }
.tag-cafe { background: var(--cream); color: var(--orange-dark); }
.program-block-break { background: var(--cream); }
.program-block-break .program-time { background: var(--orange); }
.program-block-close .program-time { background: var(--teal); }

/* ===== AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.area-card {
  background: var(--white); padding: 32px; border-top: 4px solid var(--teal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s;
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.area-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 12px; }
.area-card ul { list-style: none; padding: 0; }
.area-card li { font-size: 14px; color: var(--gray); padding: 6px 0 6px 16px; position: relative; }
.area-card li::before {
  content: ''; width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; position: absolute; left: 0; top: 13px;
}

/* ===== FACTS ===== */
.facts-section { background: var(--navy); position: relative; overflow: hidden; }
.facts-section .section-label { color: var(--orange); }
.facts-section .section-title { color: var(--white); }
.facts-section .section-desc { color: rgba(255,255,255,0.7); }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.fact-card { border-radius: 8px; overflow: hidden; transition: transform 0.3s; }
.fact-card:hover { transform: translateY(-4px); }
.fact-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ===== ESTRO ===== */
.estro-section { background: var(--gray-light); }
.estro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: start; }
.estro-badge { background: var(--teal); color: var(--white); padding: 36px; }
.estro-badge h3 { font-size: 20px; margin-bottom: 16px; }
.estro-badge p { font-size: 14px; opacity: 0.85; line-height: 1.7; }
.estro-values { display: flex; flex-direction: column; gap: 16px; }
.estro-value { padding: 20px 24px; background: var(--white); border-left: 4px solid var(--orange); }
.estro-value h4 { font-size: 14px; color: var(--orange-dark); margin-bottom: 4px; }
.estro-value p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ===== INSCRIPTION ===== */
.inscription-section { background: var(--orange); position: relative; overflow: hidden; }
.inscription-section .section-label { color: rgba(255,255,255,0.6); }
.inscription-section .section-title { color: var(--white); }
.inscription-bg-deco { position: absolute; right: -100px; top: -100px; width: 500px; opacity: 0.08; pointer-events: none; }
.inscription-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px; position: relative; z-index: 1;
}
.inscription-card {
  background: var(--white); padding: 36px 28px; text-align: center;
  border-radius: 8px; transition: transform 0.2s, box-shadow 0.2s;
}
.inscription-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.inscription-card h4 { font-size: 14px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.inscription-price {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 48px;
  color: var(--orange); line-height: 1; margin-bottom: 8px;
}
.inscription-card p { font-size: 14px; color: var(--gray); line-height: 1.5; }
.inscription-note {
  position: relative; z-index: 1; text-align: center; margin-top: 48px;
  color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.inscription-note strong { color: var(--white); }

/* ===== AUDIENCE ===== */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.audience-card {
  text-align: center; padding: 36px 20px; background: var(--gray-light);
  border-radius: 8px; transition: transform 0.2s;
}
.audience-card:hover { transform: translateY(-4px); }
.audience-icon {
  width: 64px; height: 64px; background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.audience-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.audience-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.audience-card p { font-size: 13px; color: var(--gray); }

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 60px 24px; background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06);
}
.logos-bar-inner { max-width: 800px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 80px; flex-wrap: wrap; }
.logos-bar img { height: 60px; width: auto; opacity: 0.85; transition: opacity 0.2s; }
.logos-bar img:hover { opacity: 1; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--teal); padding: 100px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-final-bg { position: absolute; left: -100px; bottom: -80px; width: 400px; opacity: 0.06; pointer-events: none; }
.cta-final h2 { font-weight: 800; font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-final p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; position: relative; }
.cta-final .btn { position: relative; }

/* ===== COUNTDOWN ===== */
.countdown {
  display: flex; justify-content: center; gap: 20px; margin-top: 28px; flex-wrap: wrap;
}
.countdown-item {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  padding: 14px 20px; border-radius: 8px; min-width: 80px;
}
.countdown-number {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 32px;
  color: var(--white); line-height: 1;
}
.countdown-label {
  font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 11px;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--orange); color: var(--white); cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--orange-dark); }
.back-to-top svg { width: 24px; height: 24px; fill: var(--white); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== GRADIENT TITLE ===== */
.gradient-title {
  background: linear-gradient(135deg, var(--orange) 0%, var(--teal) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== FLOATING BANNER ===== */
.floating-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); padding: 12px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  transform: translateY(100%); transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.floating-banner.visible { transform: translateY(0); }
.floating-banner p {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--white); margin: 0;
}
.floating-banner .btn {
  padding: 10px 24px; font-size: 12px; letter-spacing: 0.5px;
}
.floating-banner-close {
  background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer;
  font-size: 20px; padding: 4px 8px; line-height: 1; transition: color 0.2s;
}
.floating-banner-close:hover { color: var(--white); }

/* ===== ENHANCED PROGRAM HOVER ===== */
.program-block {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.program-block:hover {
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--orange), 0 4px 16px rgba(0,0,0,0.06);
}
.program-block-break:hover { box-shadow: -4px 0 0 var(--orange-light), 0 4px 16px rgba(0,0,0,0.06); }

/* ===== PROGRAM DOWNLOAD BUTTON ===== */
.program-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px dashed rgba(24,64,91,0.15);
}
.program-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.program-download-btn svg {
  transition: transform 0.25s ease;
}
.program-download-btn:hover svg {
  transform: translateY(2px);
}
.program-download-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--gray-subtle);
  max-width: 520px;
  text-align: center;
  line-height: 1.55;
  margin: 0;
}
.program-download-hint strong {
  color: var(--navy);
  font-weight: 600;
}
@media (max-width: 600px) {
  .program-download { margin-top: 32px; padding-top: 24px; }
  .program-download-hint { font-size: 11px; }
}

/* ===== PONENTES ===== */
.speakers-section { background: var(--white); }
.speakers-mesa { margin-top: 36px; }
.speakers-mesa-title {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange-dark);
  margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--orange);
}
.speakers-mesa-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.speaker-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-light); padding: 6px 16px 6px 6px; border-radius: 40px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.speaker-chip:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.speaker-chip-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 2px solid var(--teal-light);
}
.speaker-chip-avatar img { width: 100%; height: 100%; object-fit: cover; }
.speaker-chip-avatar svg { width: 22px; height: 22px; fill: var(--orange); opacity: 0.5; }
.speaker-chip-info h4 { font-size: 13px; color: var(--navy); margin: 0; line-height: 1.3; }
.speaker-chip-info p { font-size: 11px; color: var(--gray-subtle); margin: 0; line-height: 1.3; }
.speaker-chip--mod { background: var(--cream); border: 1px dashed var(--orange); }
.speaker-chip--mod .speaker-chip-info p { color: var(--orange-dark); font-weight: 600; }

/* ===== MAP ===== */
.map-section { padding: 0; }
.map-container { position: relative; width: 100%; height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }
.map-overlay {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(24,64,91,0.9) 0%, transparent 100%);
  padding: 32px 40px; pointer-events: none;
}
.map-overlay h3 { font-size: 18px; color: var(--white); margin-bottom: 4px; }
.map-overlay p { font-size: 14px; color: rgba(255,255,255,0.7); }
.map-overlay a { pointer-events: auto; }
.map-fallback {
  display: none; width: 100%; height: 100%; background: var(--navy);
  align-items: center; justify-content: center; text-align: center;
  flex-direction: column; gap: 12px; padding: 24px;
}
.map-fallback svg { width: 48px; height: 48px; fill: var(--orange); opacity: 0.6; }
.map-fallback p { font-family: 'Montserrat', sans-serif; font-size: 14px; color: rgba(255,255,255,0.7); }
.map-fallback a { color: var(--orange); text-decoration: underline; pointer-events: auto; }

/* ===== FINES COLLAPSIBLE ===== */
.fines-hidden { display: none; }
.fines-hidden.show { display: flex; flex-direction: column; gap: 10px; }
.fines-toggle {
  background: none; border: 2px solid var(--teal); color: var(--teal);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px;
  padding: 10px 24px; border-radius: 6px; cursor: pointer; margin-top: 16px;
  transition: all 0.2s;
}
.fines-toggle:hover { background: var(--teal); color: var(--white); }

/* ===== WAVY DIVIDER ===== */
.wavy-divider { height: 6px; background: linear-gradient(90deg, var(--orange), var(--teal), var(--orange)); opacity: 0.3; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 60px 24px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-weight: 800; font-size: 28px; color: var(--orange); letter-spacing: 2px; margin-bottom: 4px; }
.footer-brand small { font-family: 'Montserrat', sans-serif; font-weight: 300; font-size: 16px; color: var(--teal-light); }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.6; }
.footer h5 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; }
.footer-hashtags { display: flex; gap: 16px; }
.footer-hashtags span { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: var(--teal-light); }

/* ===== COLABORADORES ===== */
.colaboradores-section { background: var(--white); text-align: center; }
.colaboradores-inner { max-width: 800px; margin: 0 auto; }
.colaboradores-icon {
  width: 80px; height: 80px; margin: 0 auto 28px; background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.colaboradores-icon svg { width: 40px; height: 40px; fill: var(--orange); }
.colaboradores-desc { font-size: 18px; color: var(--gray); line-height: 1.7; max-width: 600px; margin: 0 auto 40px; }
.colaboradores-card {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-radius: 16px;
  padding: 48px 40px; color: var(--white); position: relative; overflow: hidden;
}
.colaboradores-card::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
}
.colaboradores-card::after {
  content: ''; position: absolute; bottom: -40px; left: -40px; width: 150px; height: 150px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
}
.colaboradores-card > * { position: relative; z-index: 1; }
.colaboradores-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 24px; margin-bottom: 12px;
}
.colaboradores-card p { font-size: 16px; opacity: 0.9; line-height: 1.6; margin-bottom: 32px; }
.btn-download {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--orange); font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 15px; padding: 16px 36px; border-radius: 8px;
  border: none; cursor: pointer; transition: all 0.25s; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-download:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-download svg { width: 20px; height: 20px; fill: var(--orange); }
.colaboradores-note { font-size: 13px; color: var(--gray-subtle); margin-top: 28px; font-style: italic; }

/* ===== VIDEO HERO THUMBNAIL ===== */
.hero-video-thumb {
  position: relative; width: 100%; border-radius: 12px; overflow: hidden;
  cursor: pointer; background: rgba(0,0,0,0.3); aspect-ratio: 16/9;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3); transition: transform 0.3s;
}
.hero-video-thumb:hover { transform: scale(1.03); }
.hero-video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-video-thumb .play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25); transition: background 0.3s;
}
.hero-video-thumb:hover .play-btn { background: rgba(0,0,0,0.15); }
.play-btn-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(242,101,34,0.5); transition: transform 0.3s, box-shadow 0.3s;
}
.hero-video-thumb:hover .play-btn-circle { transform: scale(1.1); box-shadow: 0 6px 32px rgba(242,101,34,0.7); }
.play-btn-circle svg { width: 28px; height: 28px; fill: white; margin-left: 3px; }
.hero-video-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
  color: rgba(255,255,255,0.8); letter-spacing: 2px; text-transform: uppercase;
  margin-top: 12px; text-align: center;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity 0.3s;
}
.video-modal.active { display: flex; opacity: 1; }
.video-modal-inner { position: relative; width: 100%; max-width: 960px; aspect-ratio: 16/9; }
.video-modal-inner iframe { width: 100%; height: 100%; border: none; border-radius: 12px; }
.video-modal-close {
  position: absolute; top: -48px; right: 0; background: none; border: none;
  color: white; font-size: 36px; cursor: pointer; font-family: 'Montserrat', sans-serif;
  font-weight: 300; opacity: 0.7; transition: opacity 0.2s;
}
.video-modal-close:hover { opacity: 1; }

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--navy); padding: 80px 24px; position: relative; overflow: hidden;
}
.video-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(242,101,34,0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%); pointer-events: none;
}
.video-section-inner {
  max-width: 860px; margin: 0 auto; position: relative; z-index: 1; text-align: center;
}
.video-section-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.video-section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: clamp(24px, 4vw, 36px); color: var(--white); margin-bottom: 40px;
}
.video-embed-wrapper {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 60px rgba(242,101,34,0.15), 0 20px 60px rgba(0,0,0,0.4);
  aspect-ratio: 16/9; background: #000;
}
.video-embed-wrapper iframe { width: 100%; height: 100%; border: none; }
.video-embed-wrapper .video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(135deg, rgba(24,64,91,0.9), rgba(43,141,147,0.7));
  cursor: pointer; transition: background 0.3s;
}
.video-embed-wrapper .video-placeholder:hover { background: linear-gradient(135deg, rgba(24,64,91,0.7), rgba(43,141,147,0.5)); }
.video-placeholder .play-btn-circle { width: 80px; height: 80px; }
.video-placeholder .play-btn-circle svg { width: 36px; height: 36px; }
.video-placeholder p {
  font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 14px;
  color: rgba(255,255,255,0.8); letter-spacing: 1px;
}

/* ===== HERO COLABORADORES COLUMNS ===== */
.hero-collab-col {
  flex: 0 0 240px; display: flex; flex-direction: column; align-items: center;
  gap: 14px; align-self: stretch; justify-content: center;
}

/* ===== RESPONSIVE ===== */
/* Tablets / pantallas medianas: ocultar columnas colaboradores, apilar hero */
@media (max-width: 1200px) {
  .hero-collab-col { display: none; }
  .hero-layout { max-width: 800px !important; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 80px; left: 0; right: 0; background: var(--white);
    padding: 24px; gap: 16px; border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .about-grid, .estro-content { grid-template-columns: 1fr; }
  .areas-grid, .facts-grid, .inscription-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr; }
  .program-block { grid-template-columns: 100px 1fr; }
  .program-time { font-size: 12px; padding: 16px 8px; }
  .program-content { padding: 16px; flex-direction: column; align-items: flex-start; }
  .navbar-partner-logo { height: 30px; }
  .navbar-partner-logo.invert { height: 36px; }
  .navbar-separator { height: 26px; }
  .hero-logos img { height: 36px; padding: 6px 12px; }
  .hero-layout { flex-direction: column; gap: 32px; max-width: 100% !important; }
  .hero-content { order: 1; max-width: 100% !important; }
  .hero-meta { flex-direction: column; align-items: center; gap: 12px; }
  .speakers-mesa-grid { gap: 8px; }
  .speaker-chip { padding: 4px 12px 4px 4px; }
  .speaker-chip-avatar { width: 36px; height: 36px; }
  .speaker-chip-info h4 { font-size: 12px; }
  .countdown { gap: 12px; }
  .countdown-item { min-width: 65px; padding: 10px 14px; }
  .countdown-number { font-size: 24px; }
  .map-container { height: 300px; }
}
@media (max-width: 768px) {
  .video-section { padding: 60px 16px; }
  .play-btn-circle { width: 52px; height: 52px; }
  .play-btn-circle svg { width: 22px; height: 22px; }
  .hero-video-label { font-size: 10px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 16px; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-desc { font-size: 15px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .logos-bar-inner { gap: 40px; }
  .logos-bar img { height: 40px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(44px, 14vw, 80px); letter-spacing: 2px; }
  .hero-year { font-size: clamp(24px, 8vw, 40px); letter-spacing: 4px; }
  .hero-subtitle { font-size: clamp(14px, 3.5vw, 18px); }
  .hero-tagline { font-size: 12px; padding: 8px 20px; letter-spacing: 1px; }
  .hero-layout { padding: 100px 16px 60px; gap: 24px; }
  .btn { padding: 14px 28px; font-size: 13px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 32px; }
  .stat-card { padding: 28px 16px; }
  .program-block { grid-template-columns: 80px 1fr; }
  .program-time { font-size: 11px; padding: 12px 6px; }
  .program-content { padding: 12px; }
  .program-content h4 { font-size: 14px; }
  .program-content p { font-size: 12px; }
  .program-tag { font-size: 9px; padding: 3px 8px; }
  .about-quote { padding: 24px; font-size: 15px; }
  .about-feature { padding: 16px; }
  .area-card { padding: 20px; }
  .inscription-price { font-size: 36px; }
  .speakers-mesa-title { font-size: 12px; }
  .speaker-chip-info p { font-size: 10px; }
  .floating-banner { flex-wrap: wrap; gap: 8px; padding: 10px 16px; }
  .floating-banner p { font-size: 12px; }
  .floating-banner .btn { padding: 8px 18px; font-size: 11px; }
  .countdown { gap: 8px; }
  .countdown-item { min-width: 55px; padding: 8px 10px; }
  .countdown-number { font-size: 20px; }
  .countdown-label { font-size: 9px; }
  .estro-badge { padding: 24px; }
  .footer-inner { padding: 48px 16px; }
  .map-container { height: 250px; }
}

/* ==================================================================== */
/* ===== AUDIENCE EDITORIAL (Dirigido a · 2026-04) ==================== */
/* ==================================================================== */
.audience-editorial {
  background: var(--cream);
  padding: 120px 24px;
  position: relative;
}
.audience-editorial .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.audience-editorial .aud-head {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(24,64,91,.15);
  margin-bottom: 8px;
}
.audience-editorial .aud-eyebrow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.audience-editorial .aud-count {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.02em;
}
.audience-editorial .aud-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
}
.audience-editorial .aud-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--navy);
  margin: 0;
}
.audience-editorial .aud-title em {
  font-style: italic;
  color: var(--orange);
}

.audience-editorial .aud-list {
  display: flex;
  flex-direction: column;
}
.audience-editorial .aud-row {
  display: grid;
  grid-template-columns: 120px 1fr 56px;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(24,64,91,.12);
  position: relative;
  transition: padding-left .25s ease, background .25s ease;
}
.audience-editorial .aud-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
  transition: width .3s ease;
}
.audience-editorial .aud-row:hover {
  padding-left: 36px;
}
.audience-editorial .aud-row:hover::before { width: 24px; }

.audience-editorial .aud-index {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  color: rgba(24,64,91,.32);
  letter-spacing: -.02em;
  line-height: 1;
  transition: color .25s ease;
}
.audience-editorial .aud-row:hover .aud-index {
  color: var(--orange);
}

.audience-editorial .aud-body { min-width: 0; }
.audience-editorial .aud-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--navy);
  margin: 0 0 6px 0;
}
.audience-editorial .aud-p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(24,64,91,.62);
  margin: 0;
}

.audience-editorial .aud-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(24,64,91,.06);
  transition: background .25s ease, transform .25s ease;
  justify-self: end;
}
.audience-editorial .aud-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--navy);
  opacity: .55;
  transition: fill .25s ease, opacity .25s ease;
}
.audience-editorial .aud-row:hover .aud-icon {
  background: var(--orange);
  transform: scale(1.08);
}
.audience-editorial .aud-row:hover .aud-icon svg {
  fill: var(--white);
  opacity: 1;
}

@media (max-width: 860px) {
  .audience-editorial { padding: 80px 24px; }
  .audience-editorial .aud-head {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 36px;
  }
  .audience-editorial .aud-row {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .audience-editorial .aud-icon { display: none; }
  .audience-editorial .aud-index { font-size: 22px; }
  .audience-editorial .aud-h { font-size: 18px; }
  .audience-editorial .aud-row:hover { padding-left: 0; }
  .audience-editorial .aud-row:hover::before { width: 0; }
}

/* ==================================================================== */
/* ===== HERO SPLIT (editorial remix · 2026-04) ======================= */
/* Sobrescribe las reglas .hero antiguas cuando se aplica .hero-split.  */
/* ==================================================================== */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  padding: 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
/* Neutraliza el ::before/::after teal del .hero original */
.hero-split::before,
.hero-split::after { display: none; }

.hero-split .hero-left {
  padding: 140px 56px 80px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  position: relative;
}
.hero-split .hero-right {
  padding: 140px 56px 80px;
  background: var(--orange);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.hero-split .hero-right::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.6) 0, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,.25) 0, transparent 45%);
}
.hero-split .hero-right > * { position: relative; z-index: 1; }

/* Kicker con punto pulsante */
.hero-split .hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-split .hero-kicker .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: hero-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hero-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(242,101,34,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(242,101,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,101,34,0); }
}

/* Titular editorial */
.hero-split .hero-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-line);
  font-size: clamp(56px, 8.5vw, 128px);
  color: var(--navy);
  margin-bottom: 28px;
  text-align: left;
}
.hero-split .hero-title em {
  font-style: italic;
  color: var(--orange);
}

/* Brand mark DIMURA */
.hero-split .hero-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: .88;
  letter-spacing: -.035em;
  font-size: clamp(72px, 13vw, 180px);
  margin-bottom: 32px;
}
.hero-split .hero-brand-word {
  color: var(--navy);
  font-weight: var(--display-weight);
}
.hero-split .hero-brand-year {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: .25em;
  color: var(--orange);
  padding-top: .9em;
  white-space: nowrap;
}
/* Subraya el remate con una línea orgánica tipo editorial */
.hero-split .hero-brand-word::after {
  content: "";
  display: block;
  width: .42em;
  height: .09em;
  background: var(--orange);
  margin-top: .18em;
  border-radius: 2px;
}

.hero-split .hero-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(24,64,91,.65);
  max-width: 540px;
  margin-bottom: 40px;
}

/* Meta grid con labels monoespaciadas */
.hero-split .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(24,64,91,.15);
  border-bottom: 1px solid rgba(24,64,91,.15);
  margin: 0;
  justify-content: flex-start;
}
.hero-split .hero-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-split .hero-meta .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(24,64,91,.45);
}
.hero-split .hero-meta .v {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 22px;
  line-height: 1.1;
  color: var(--navy);
}

/* Botones */
.hero-split .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: flex-start;
}
.hero-split .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  border: 1px solid transparent;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.hero-split .btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.hero-split .btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,101,34,.25);
}
.hero-split .btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(24,64,91,.25);
}
.hero-split .btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.hero-split .btn-arrow {
  font-family: var(--font-mono);
  transition: transform .25s;
}
.hero-split .btn:hover .btn-arrow { transform: translateX(4px); }

/* Testimonial card glass */
.hero-split .hero-quote-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(24,64,91,.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 20px 22px;
  max-width: 560px;
}
.hero-split .hero-quote-card img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid rgba(24,64,91,.2);
}
.hero-split .hero-quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 6px 0;
}
.hero-split .hero-quote-card .attr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(24,64,91,.6);
}

/* Columna derecha — logos arriba */
.hero-split .hero-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-split .hero-logos img {
  height: 44px;
  width: auto;
  opacity: .95;
}
.hero-split .hero-logos img[alt="SEGRA"] {
  filter: brightness(0) invert(1);
}
.hero-split .hero-logos img[alt="Sello Fenin"] {
  border-radius: 50%;
  background: white;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* Fecha tipográfica grande */
.hero-split .hero-big-date {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(60px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -.025em;
}
.hero-split .hero-big-date .sep {
  color: rgba(255,255,255,.4);
  margin: 0 .04em;
}
.hero-split .hero-big-date .mo {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .22em;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: .85;
  line-height: 1;
}

/* Hero countdown — estilo hype integrado en naranja */
.hero-split .hero-countdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-split .hc-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-split .hc-head .eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.hero-split .hc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 0 rgba(251,235,213,.8);
  animation: hc-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hc-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(251,235,213,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(251,235,213,0); }
  100% { box-shadow: 0 0 0 0 rgba(251,235,213,0); }
}

.hero-split .hc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hero-split .hc-unit {
  position: relative;
  padding: 18px 10px 14px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 8px 24px rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-split .hc-unit .num {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  text-shadow: 0 2px 18px rgba(24,64,91,.35);
}
.hero-split .hc-unit .lbl {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251,235,213,.85);
}
.hero-split .hc-unit.flip .num { animation: hc-flip .45s ease-out; }
@keyframes hc-flip {
  0%   { transform: scale(1);    filter: brightness(1); }
  50%  { transform: scale(1.18); filter: brightness(1.4); }
  100% { transform: scale(1);    filter: brightness(1); }
}
.hero-split .hc-live {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-align: center;
  padding: 16px;
}

/* Colaboradores mock-ups */
.hero-split .hero-collab {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-split .hero-collab-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.hero-split .hero-collab-head .eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.hero-split .hero-collab-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.hero-split .hero-collab-link:hover {
  color: var(--white);
  transform: translateX(3px);
}
.hero-split .hero-collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-split .collab-slot {
  aspect-ratio: 2.6 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s;
}
.hero-split .collab-slot:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
}
.hero-split .collab-slot span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* Línea convoca */
.hero-split .hero-convoca {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.25);
}
.hero-split .hero-convoca .eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero-split .hero-convoca .brand {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 22px;
  letter-spacing: .02em;
}
.hero-split .hero-convoca .sep-dot {
  color: rgba(255,255,255,.45);
}
.hero-split .hero-convoca .note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}

/* Scroll hint con contraste contra cream */
.hero-split .hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-split .hero-scroll-hint svg {
  fill: rgba(24,64,91,.45);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split .hero-left { padding: 110px 28px 60px; gap: 40px; }
  .hero-split .hero-right { padding: 80px 28px 80px; gap: 40px; }
  .hero-split .hero-brand { font-size: clamp(64px, 18vw, 140px); gap: 12px; }
  .hero-split .hero-collab-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero-split .hero-left { padding: 96px 20px 52px; gap: 32px; }
  .hero-split .hero-right { padding: 56px 20px 72px; gap: 32px; }
  .hero-split .hero-kicker { font-size: 11px; margin-bottom: 24px; gap: 10px; }
  .hero-split .hero-title { font-size: clamp(44px, 13vw, 80px); }
  .hero-split .hero-brand {
    font-size: clamp(56px, 18vw, 96px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 24px;
  }
  .hero-split .hero-brand-year { font-size: 11px; padding-top: 0; letter-spacing: .22em; }
  .hero-split .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-split .hero-big-date { font-size: clamp(56px, 17vw, 88px); }
  .hero-split .hero-big-date .mo { font-size: .24em; margin-top: 12px; }
  .hero-split .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    padding: 20px 0;
  }
  .hero-split .hero-meta .v { font-size: 17px; }
  .hero-split .hero-actions { margin-top: 28px; gap: 10px; }
  .hero-split .hero-actions .btn { padding: 14px 22px; font-size: 13px; }
  .hero-split .hero-logos { gap: 16px; }
  .hero-split .hero-logos img { height: 36px; }
  .hero-split .hero-quote-card { padding: 16px 18px; gap: 14px; }
  .hero-split .hero-quote-card img { width: 48px; height: 48px; }
  .hero-split .hero-quote-card p { font-size: 14px; }
  .hero-split .hero-quote-card .attr { font-size: 10px; }
  .hero-split .hero-collab-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-split .collab-slot { aspect-ratio: 3 / 1; }
  .hero-split .collab-slot span { font-size: 9px; }
  .hero-split .hc-grid { gap: 8px; }
  .hero-split .hc-unit { padding: 14px 6px 12px; border-radius: 12px; }
  .hero-split .hc-unit .lbl { font-size: 9px; letter-spacing: .18em; }
  .hero-split .hero-convoca { gap: 8px; padding-top: 20px; }
  .hero-split .hero-convoca .brand { font-size: 19px; }
  .hero-split .hero-convoca .note { font-size: 11px; }
}
@media (max-width: 400px) {
  .hero-split .hero-left { padding: 88px 16px 44px; }
  .hero-split .hero-right { padding: 48px 16px 64px; }
  .hero-split .hero-brand { font-size: 52px; }
  .hero-split .hero-big-date { font-size: 56px; }
  .hero-split .hero-sub { font-size: 15px; }
  .hero-split .hero-meta { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-split .hero-meta .v { font-size: 16px; }
  .hero-split .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-split .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-split .hc-grid { gap: 6px; }
  .hero-split .hc-unit { padding: 12px 4px 10px; }
  .hero-split .hc-unit .num { font-size: 26px; }
  .hero-split .hc-unit .lbl { font-size: 8px; letter-spacing: .14em; }
  .hero-split .hero-collab-grid { gap: 6px; }
  .hero-split .collab-slot { aspect-ratio: 3.2 / 1; }
}
