:root{
  --bg:#050607;            /* negro profundo */
  --bg2:#0b0d0f;           /* negro secundario */
  --txt:#f3f3f3;           /* blanco */
  --muted:rgba(243,243,243,.72);
  --muted2:rgba(243,243,243,.55);
  --line:rgba(243,243,243,.10);
  --gold:#c8a34a;          /* dorado premium */
  --gold2:rgba(200,163,74,.35);
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --container: 1160px;
  --bg-main: #050607;   /* negro absoluto premium */
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: radial-gradient(1200px 700px at 70% 0%, rgba(200,163,74,.08), transparent 55%),
              radial-gradient(900px 500px at 0% 30%, rgba(243,243,243,.06), transparent 50%),
              var(--bg);
  color:var(--txt);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .1px;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: transparent;
  color:var(--txt);
  font-weight:600;
  letter-spacing:.4px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}

.btn-primary{
  background: linear-gradient(180deg, rgba(200,163,74,.95), rgba(200,163,74,.78));
  border-color: rgba(200,163,74,.6);
  color:#0b0b0b;
  box-shadow: 0 14px 38px rgba(200,163,74,.18);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 22px 56px rgba(200,163,74,.22); }

.btn-ghost{
  border-color: rgba(243,243,243,.16);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(200,163,74,.55);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid rgba(243,243,243,.12);
  border-radius:999px;
  color:rgba(243,243,243,.82);
  font-size:12px;
}

/* =========================
   Header / Nav
========================= */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  background: rgba(5,6,7,.35);
  border-bottom: 1px solid rgba(243,243,243,.08);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.is-solid{
  background: rgba(5,6,7,.78);
  border-color: rgba(243,243,243,.10);
}

.header-inner{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-mark {
  font-family: "Playfair Display", serif;
  letter-spacing: 1.8px;   /* más aire = más autoridad */
  font-weight:700;
  font-size: 22px;         /* antes 18px */
}

.nav{ display:flex; }
.nav-list{
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
  margin:0;padding:0;
}
.nav-link{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  opacity:.92;
  padding:10px 10px;
  border-radius: 999px;
  border:1px solid transparent;
  transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}
.nav-link:hover{
  opacity:1;
  border-color: rgba(200,163,74,.35);
  background: rgba(200,163,74,.06);
}
.nav-cta{
  border-color: rgba(200,163,74,.45);
  background: rgba(200,163,74,.10);
}
.nav-cta:hover{
  border-color: rgba(200,163,74,.70);
  background: rgba(200,163,74,.16);
}

/* Mobile Nav Toggle */
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius: 12px;
  border:1px solid rgba(243,243,243,.12);
  background: rgba(255,255,255,.03);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
}
.nav-toggle span{
  width:18px;height:2px;
  background: rgba(243,243,243,.8);
  border-radius:2px;
}

/* =========================
   Mega Menu
========================= */
.has-mega{ position:relative; }
.mega{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  top:52px;
  width:min(980px, calc(100vw - 40px));
  background: linear-gradient(180deg, rgba(11,13,15,.92), rgba(5,6,7,.92));
  border: 1px solid rgba(243,243,243,.10);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.has-mega.is-open .mega{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform: translateX(-50%) translateY(6px);
}

.mega-inner{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:18px;
  padding:16px;
}

.mega-photo{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  min-height: 280px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
}
.mega-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}

.mega-photo-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, transparent, rgba(5,6,7,.65) 70%),
    radial-gradient(600px 300px at 60% 0%, rgba(200,163,74,.20), transparent 55%);
}
.mega-caption{
  position:absolute;
  left:16px; right:16px;
  bottom:14px;
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.30);
  border:1px solid rgba(243,243,243,.10);
  backdrop-filter: blur(10px);
}
.caption-title{
  font-size:11px;
  letter-spacing: 1.2px;
  font-weight:800;
  opacity:.92;
}
.caption-sub{
  margin-top:6px;
  font-size:11px;
  letter-spacing: 1.1px;
  font-weight:800;
  opacity:.72;
}

.mega-kicker{
  color: var(--gold);
  font-weight:800;
  letter-spacing: 2px;
  font-size: 11px;
  text-transform: uppercase;
}
.mega-title{
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin: 8px 0 10px;
  letter-spacing:.3px;
}
.mega-text{
  color: rgba(243,243,243,.78);
  line-height: 1.6;
  margin:0 0 14px;
  max-width: 52ch;
}
.mega-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.mega-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  padding-top: 10px;
  border-top:1px solid rgba(243,243,243,.10);
}
.mega-links a{
  font-size: 12px;
  color: rgba(243,243,243,.78);
  padding:6px 8px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.mega-links a:hover{
  background: rgba(200,163,74,.08);
  color: rgba(243,243,243,.92);
}

/* =========================
   Sections / Typography
========================= */
.main{ overflow:hidden; }

.section{
  padding: 86px 0;
}
.section-dark{
  background:
    radial-gradient(700px 380px at 80% 0%, rgba(200,163,74,.08), transparent 55%),
    linear-gradient(180deg, rgba(11,13,15,.35), rgba(5,6,7,.10));
  border-top: 1px solid rgba(243,243,243,.08);
  border-bottom: 1px solid rgba(243,243,243,.08);
}

.section-kicker{
  color: var(--gold);
  font-weight:800;
  letter-spacing: 2.2px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom:10px;
}
.section-title{
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin:0 0 10px;
  letter-spacing:.2px;
}
.section-text{
  color: rgba(243,243,243,.80);
  line-height: 1.7;
  max-width: 68ch;
  margin:0;
}
.section-text.subtle{ color: rgba(243,243,243,.70); }

.section-head{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom: 26px;
}

/* =========================
   Hero
========================= */
.hero{
  padding-bottom: 0px;
  position:relative;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:center;
}
.kicker{
  color: rgba(243,243,243,.70);
  font-weight:800;
  letter-spacing: 3px;
  font-size: 11px;
}
.hero-title{
  font-family:"Playfair Display", serif;
  font-size: 48px;
  line-height: 1.08;
  margin: 12px 0 12px;
}
.hero-sub{
  color: rgba(243,243,243,.80);
  line-height:1.7;
  max-width: 58ch;
  margin:0 0 20px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
/* === HERO: TAMAÑO FINAL CERRADO === */
.hero-frame{
  position: relative;
}

.hero-frame img{
  width: 100%;
  height: 65vh;                 /* deja altura grande */
  object-fit: cover;
  object-position: center 10%;  /* 🔥 SUBE la imagen (antes 22%/30%) */
}
.hero-glow{
  position:absolute; inset:-30px;
  background: radial-gradient(420px 300px at 70% 0%, rgba(200,163,74,.18), transparent 60%);
  pointer-events:none;
}
.hero-signature{
  position:absolute;
  right: 18px;
  bottom: -14px;
  font-family:"Playfair Display", serif;
  font-size: 64px;
  color: rgba(200,163,74,.28);
  letter-spacing: 2px;
}
.hero-divider{
  height:1px;
  width:100%;
  margin-top: 46px;
  background: linear-gradient(90deg, transparent, rgba(200,163,74,.35), transparent);
}
/* =========================
   Hero (Centered Photo)
========================= */
.hero-centered{
  padding: 2px 0 10px; /* 🔥 reduce el aire superior */
}

.hero-centered-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: 18px;
}

/* Foto SIN recuadro */
.hero-photo{
  width: min(450px, 85vw);
}
.hero-photo img{
  width:100%;
  height:auto;
  display:block;

  /* Look premium: b/n + contraste */
  filter: grayscale(1) contrast(1.12) brightness(.92);
}

/* Texto “MENTOR OF MEN” grande y ancho */
.hero-identity{
  width: min(980px, 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
}

.hero-mentor{
  font-weight: 900;
  letter-spacing: px;
  text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 30px);
  color: rgba(243,243,243,.95);
}

/* Founder / CEO debajo, institucional */
.hero-role{
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 6px;
}
.hero-institution{
  display: flex;
  flex-direction: column;
  gap: 0px;              /* 🔥 elimina separación interna */
  margin-top: -6px;     /* 🔥 acerca al título superior */
}

.hero-institution span{
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;                /* delgado */
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}


/* =========================
   About split
========================= */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:start;
}
.about-roles{
  display:flex;
  gap:14px;
  margin-top:18px;
  flex-wrap:wrap;
}
.role{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
}
.role-label{
  color: var(--gold);
  font-weight:800;
  letter-spacing: 1.6px;
  font-size: 11px;
}
.role-value{
  display:block;
  margin-top:6px;
  font-weight:800;
  letter-spacing: .9px;
  font-size: 12px;
  opacity:.92;
}
.about-actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.card-glass{
  border-radius: 26px;
  border:1px solid rgba(243,243,243,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.card-glass-inner{
  padding: 18px;
}
.quote{
  position:relative;
  padding: 16px 16px 14px;
  border-radius: 22px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(0,0,0,.18);
}
.quote-mark{
  position:absolute;
  top: -12px;
  left: 12px;
  font-family:"Playfair Display", serif;
  font-size: 64px;
  color: rgba(200,163,74,.30);
}
.quote p{
  margin:0;
  line-height:1.7;
  color: rgba(243,243,243,.86);
  font-weight:600;
}
.quote-sig{
  margin-top:10px;
  color: rgba(243,243,243,.60);
  font-weight:800;
  letter-spacing:1.1px;
  font-size: 12px;
}
.metrics-mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 14px;
}
.metric-mini{
  padding:12px 12px;
  border-radius: 18px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
  text-align:center;
}
.metric-mini-value{
  font-family:"Playfair Display", serif;
  font-size: 24px;
  color: rgba(243,243,243,.94);
}
.metric-mini-label{
  margin-top:4px;
  font-size: 12px;
  color: rgba(243,243,243,.65);
}
.fineprint{
  margin-top: 12px;
  color: rgba(243,243,243,.55);
  font-size: 12px;
}


/* =========================
   Programs (vertical rectangles)
========================= */
.programs{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.program{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:0;
  border-radius: 28px;
  overflow:hidden;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s ease;
}
.program:hover{
  border-color: rgba(200,163,74,.28);
}
.program-media{
  position:relative;
  min-height: 320px;
  overflow:hidden;
}
.program-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.10) brightness(.90);
  transform: scale(1.05);
  transition: transform .55s ease;
}
.program:hover .program-media img{ transform: scale(1.10); }
.program-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(500px 260px at 70% 0%, rgba(200,163,74,.18), transparent 60%),
    linear-gradient(90deg, rgba(5,6,7,.55), rgba(5,6,7,.10));
}
.program-body{
  padding: 22px 22px;
  position:relative;
}
.program-tier{
  position:absolute;
  top:16px;
  right:18px;
  font-family:"Playfair Display", serif;
  font-size: 46px;
  color: rgba(200,163,74,.20);
  letter-spacing: 2px;
}
.program-title{
  font-family:"Playfair Display", serif;
  font-size: 28px;
  margin:0 0 8px;
}
.program-text{
  margin:0 0 12px;
  color: rgba(243,243,243,.78);
  line-height:1.7;
}
.program-bullets{
  margin:0;
  padding-left: 18px;
  color: rgba(243,243,243,.72);
  line-height:1.9;
  font-weight:600;
}
.program-actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* =========================
   Timeline Conferences
========================= */
.timeline{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top: 18px;
}
.timeline-item{
  display:grid;
  grid-template-columns: 80px 1fr 180px;
  gap:14px;
  align-items:center;
  border-radius: 22px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
  padding: 14px 16px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.timeline-item:hover{
  transform: translateY(-2px);
  border-color: rgba(200,163,74,.25);
  background: rgba(200,163,74,.04);
}
.timeline-month{
  font-family:"Playfair Display", serif;
  font-size: 34px;
  color: rgba(243,243,243,.88);
  text-align:center;
}
.timeline-title{
  font-weight:800;
  letter-spacing: .6px;
}
.timeline-meta{
  margin-top:6px;
  color: rgba(243,243,243,.62);
  font-size: 12px;
  letter-spacing: .2px;
}
.timeline-cta{
  justify-self:end;
  font-weight:800;
  letter-spacing: 1.2px;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid rgba(200,163,74,.35);
  background: rgba(200,163,74,.10);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.timeline-cta:hover{
  transform: translateY(-1px);
  border-color: rgba(200,163,74,.60);
  background: rgba(200,163,74,.16);
}

.booking-strip{
  margin-top: 18px;
  border-radius: 26px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(0,0,0,.18);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.booking-title{
  font-weight:800;
  letter-spacing: 1.2px;
}
.booking-text{
  margin-top:6px;
  color: rgba(243,243,243,.65);
  font-size: 12px;
}

/* =========================
   Books Duel
========================= */
.books-duel{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:18px;
  align-items:stretch;
}
.duel-divider{
  background: linear-gradient(180deg, transparent, rgba(200,163,74,.45), transparent);
  border-radius: 999px;
}
.book{
  border-radius: 28px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s ease;
}
.book:hover{
  transform: translateY(-2px);
  border-color: rgba(200,163,74,.25);
}
.book-cover{
  position:relative;
  height: 360px;
  overflow:hidden;
}
.book-cover img{
  width:100%;
  height:100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.92);
  transform: scale(1.05);
  transition: transform .55s ease;
}
.book:hover .book-cover img{ transform: scale(1.10); }
.book-glint{
  position:absolute; inset:-40px;
  background: linear-gradient(120deg, transparent, rgba(200,163,74,.20), transparent);
  transform: translateX(-60%);
  transition: transform .9s ease;
  pointer-events:none;
}
.book:hover .book-glint{ transform: translateX(30%); }
.book-body{
  padding: 18px;
}
.book-title{
  font-family:"Playfair Display", serif;
  font-size: 26px;
  margin:0;
}
.book-subtitle{
  margin-top:6px;
  color: rgba(243,243,243,.72);
  font-weight:700;
  letter-spacing: .2px;
}
.book-text{
  margin:12px 0 14px;
  color: rgba(243,243,243,.78);
  line-height:1.7;
}
.book-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* =========================
   Offers
========================= */
.offers{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.offer{
  border-radius: 26px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
  transition: transform .25s ease, border-color .25s ease;
}
.offer:hover{
  transform: translateY(-2px);
  border-color: rgba(200,163,74,.25);
}
.offer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.offer-title{
  font-weight:900;
  letter-spacing: 1.4px;
  font-size: 12px;
}
.offer-tag{
  color: rgba(243,243,243,.70);
  font-size: 12px;
  padding: 6px 10px;
  border:1px solid rgba(243,243,243,.12);
  border-radius: 999px;
}
.offer-text{
  margin: 12px 0 12px;
  color: rgba(243,243,243,.78);
  line-height:1.7;
}
.offer-list{
  margin:0 0 14px;
  padding-left: 18px;
  color: rgba(243,243,243,.72);
  line-height:1.9;
  font-weight:600;
}
.apply-panel{
  margin-top: 14px;
  border-radius: 26px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(0,0,0,.18);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.apply-title{
  font-weight:900;
  letter-spacing: 1.2px;
}
.apply-text{
  margin-top:6px;
  color: rgba(243,243,243,.65);
  font-size: 12px;
}

/* =========================
   Podcast
========================= */
.podcast-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.pod-ep{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 16px;
  border-radius: 22px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.pod-ep:hover{
  transform: translateY(-2px);
  border-color: rgba(200,163,74,.25);
  background: rgba(200,163,74,.04);
}
.ep-title{
  font-weight:800;
  letter-spacing: .2px;
}
.ep-meta{
  margin-top:6px;
  color: rgba(243,243,243,.62);
  font-size: 12px;
}
.ep-play{
  border-radius: 999px;
  border:1px solid rgba(200,163,74,.35);
  background: rgba(200,163,74,.10);
  color: rgba(243,243,243,.92);
  padding: 10px 14px;
  font-weight:900;
  letter-spacing: 1px;
  cursor:pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.ep-play:hover{
  transform: translateY(-1px);
  border-color: rgba(200,163,74,.60);
  background: rgba(200,163,74,.16);
}

/* =========================
   Subscribe
========================= */
.subscribe{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:center;
}
.subscribe-form{
  border-radius: 26px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(0,0,0,.18);
  padding: 16px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:10px;
}
.subscribe-form input{
  width:100%;
  border-radius: 999px;
  border:1px solid rgba(243,243,243,.12);
  background: rgba(255,255,255,.03);
  padding: 12px 14px;
  color: rgba(243,243,243,.92);
  outline:none;
}
.subscribe-form input:focus{
  border-color: rgba(200,163,74,.55);
  box-shadow: 0 0 0 6px rgba(200,163,74,.10);
}
.form-note{
  grid-column: 1 / -1;
  color: rgba(243,243,243,.55);
  font-size: 12px;
}

/* =========================
   Contact
========================= */
.contact-form{
  margin-top: 18px;
  border-radius: 26px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
  padding: 18px;
}
.field-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field label{
  color: rgba(243,243,243,.70);
  font-size: 12px;
  font-weight:800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.field input, .field select, .field textarea{
  border-radius: 16px;
  border:1px solid rgba(243,243,243,.12);
  background: rgba(0,0,0,.18);
  padding: 12px 12px;
  color: rgba(243,243,243,.92);
  outline:none;
}
.field textarea{ resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(200,163,74,.55);
  box-shadow: 0 0 0 6px rgba(200,163,74,.10);
}

/* =========================
   Footer
========================= */
.footer{
  border-top: 1px solid rgba(243,243,243,.08);
  background: linear-gradient(180deg, rgba(11,13,15,.30), rgba(5,6,7,.92));
  padding: 34px 0 24px;
}
.footer-inner{ display:flex; flex-direction:column; gap:18px; }
.footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}
.footer-brand-mark{
  font-size: 18px;
}
.footer-tagline{
  margin-top:8px;
  color: rgba(243,243,243,.65);
  font-weight:700;
}
.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.footer-col{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-title{
  color: var(--gold);
  font-weight:900;
  letter-spacing: 2px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom:2px;
}
.footer-col a{
  color: rgba(243,243,243,.70);
  font-weight:600;
  transition: color .2s ease;
}
.footer-col a:hover{ color: rgba(243,243,243,.92); }
.social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;height:36px;
  border-radius: 12px;
  border:1px solid rgba(243,243,243,.10);
  background: rgba(255,255,255,.02);
}
.social a:hover{
  border-color: rgba(200,163,74,.35);
  background: rgba(200,163,74,.06);
}
.footer-note{
  margin-top:10px;
  color: rgba(243,243,243,.55);
  font-size: 12px;
}
.gold-dot{
  display:inline-block;
  width:8px;height:8px;border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200,163,74,.10);
  margin-right:8px;
  transform: translateY(1px);
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top: 14px;
  border-top: 1px solid rgba(243,243,243,.08);
  color: rgba(243,243,243,.60);
  font-size: 12px;
}
.footer-seal{
  color: rgba(200,163,74,.70);
  font-weight:900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================
   Toast
========================= */
.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  opacity:0;
  pointer-events:none;
  background: rgba(0,0,0,.75);
  border:1px solid rgba(243,243,243,.12);
  color: rgba(243,243,243,.92);
  padding: 12px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: opacity .25s ease, transform .25s ease;
  max-width: min(760px, calc(100% - 40px));
  text-align:center;
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(0);
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-frame img{ height: 420px; }
  .split{ grid-template-columns: 1fr; }
  .impact-grid{ grid-template-columns: 1fr; }
  .impact-cards{ grid-template-columns: 1fr; }
  .program{ grid-template-columns: 1fr; }
  .program-media{ min-height: 240px; }
  .timeline-item{ grid-template-columns: 70px 1fr; }
  .timeline-cta{ justify-self:start; }
  .books-duel{ grid-template-columns: 1fr; }
  .duel-divider{ height:1px; width:100%; }
  .offers{ grid-template-columns: 1fr; }
  .subscribe{ grid-template-columns: 1fr; }
  .field-grid{ grid-template-columns: 1fr; }

  .nav-toggle{ display:flex; }
  .nav{
    position: fixed;
    inset: 70px 20px auto 20px;
    background: rgba(5,6,7,.92);
    border:1px solid rgba(243,243,243,.10);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
    opacity:0;
    visibility:hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav.is-open{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
  }
  .nav-list{
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav-link{ display:flex; justify-content:space-between; }

  /* Mega menus disabled on mobile (simpler) */
  .mega{ display:none; }
  .has-mega.is-open .mega{ display:none; }

  .footer-top{ flex-direction:column; }
  .footer-cols{ grid-template-columns: 1fr; }
}
.brand {
  text-decoration: none;
}

.brand-mark {
  transition: opacity .2s ease;
}

.brand:hover .brand-mark {
  opacity: 0.85;
}
@media (max-width: 768px){
  .hero-role{
    font-size: 42px;
    letter-spacing: 2px;
  }
}
@media (max-width: 768px){
  .hero-role{
    font-size: 40px;
    letter-spacing: 2px;
  }
}
/* === UNIFICACIÓN TOTAL DE FONDO === */
html,
body,
main,
section,
header,
footer,
.hero,
.block,
.card,
.container,
.wrapper{
  background-color: var(--bg-main) !important;
}
/* =========================
   PROGRAMAS VERTICALES (cards altas)
========================= */
.programs-vertical{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 26px;
}

.program-v{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius: 26px;
  background: transparent;          /* fondo unificado negro (sin cajas visibles) */
}

.program-v-media{
  position: relative;
  height: 360px;                    /* altura vertical (ajústala) */
  overflow:hidden;
}

.program-v-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(.82);
}

/* ligera integración (sin “bloques” visibles) */
.program-v-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(5,6,7,0) 55%, rgba(5,6,7,.90) 100%);
  pointer-events:none;
}

.program-v-body{
  padding: 18px 4px 0;              /* sin caja, respira sobre fondo negro */
}

.program-v-title{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: .6px;
}

.program-v-text{
  margin: 0 0 14px;
  color: rgba(243,243,243,.72);
  line-height: 1.7;
  max-width: 46ch;
}

.program-v-cta{
  width: fit-content;               /* botón premium, no full width */
  padding: 12px 18px;
}

/* Responsive */
@media (max-width: 980px){
  .programs-vertical{
    grid-template-columns: 1fr;
  }
  .program-v-media{
    height: 300px;
  }
}
.footer-doctrine{
  margin-top: 40px;
  opacity: .7;
  font-size: 13px;
}

.footer-doctrine form{
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.footer-doctrine input{
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: #fff;
}

.footer-doctrine button{
  background: transparent;
  color: var(--gold);
  letter-spacing: .12em;
}
/* === FOOTER BOTTOM CENTER FIX === */
.footer-bottom{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom div{
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}
/* === FOOTER MANIFEST GOLD === */
.footer-tagline{
  color: #C9A24D !important; /* dorado premium */
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
}
.program-card {
  width: 100%;
  max-width: 800px;
  min-height: 620px; /* ⬅️ CLAVE */
  background: #0b0b0b;
  border-radius: 18px;
  overflow: hidden; /* 🔑 CLAVE: corta lo que sobresale */
  display: flex;
  flex-direction: column;
}

/* CONTENEDOR DE IMAGEN */
.program-image {
  height: 480px;
  overflow: hidden;
}

/* IMAGEN */
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}


/* CONTENIDO */
.program-content {
  padding: 28px;
  text-align: left;
}

.program-content h3 {
  color: #fff;
  margin-bottom: 10px;
}

.program-content p {
  color: #b5b5b5;
  font-size: 14px;
  margin-bottom: 20px;
}

/* BOTÓN */
.program-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: #c9a24d; /* dorado */
  color: #000;
  font-weight: 600;
  text-decoration: none;
}
.agenda-visual {
  padding: 80px 0;
}

.agenda-visual h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.agenda-card {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.agenda-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.35)
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.agenda-date {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c9a24d;
}

.agenda-card h3 {
  font-size: 28px;
  margin: 8px 0;
}

.agenda-card p {
  font-size: 14px;
  opacity: 0.8;
}

.btn-gold{
  display: inline-block;
  background: linear-gradient(135deg, #c8a34a, #e0c36a);
  color: #111;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow:
    0 10px 26px rgba(200,163,74,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow:
    0 16px 36px rgba(200,163,74,.45),
    inset 0 1px 0 rgba(255,255,255,.45);
}
.volumes {
  background: #0b0b0b;
  padding: 120px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
  font-family: 'Canela', 'Playfair Display', serif;
}

.volume {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 40px;
}

.volume-index {
  display: block;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.volume-title {
  font-size: 42px;
  font-weight: 500;
  color: #f5f5f5;
  margin-bottom: 28px;
}

.volume-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 50px;
}

.volume-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.volume-link {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5f5f5;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.volume-link:hover {
  border-bottom-color: #ffffff;
}

.volume-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
/* =========================
   AGENDA 2026 – ELITE EDITORIAL
========================= */

.agenda-elite{
  background: var(--bg-main);
}

.agenda-head{
  margin-bottom: 48px;
}

.agenda-head h2{
  font-family: "Playfair Display", serif;
  font-size: 48px;
  letter-spacing: .6px;
  margin-bottom: 8px;
}

.agenda-head p{
  color: rgba(243,243,243,.65);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.agenda-list{
  display: flex;
  flex-direction: column;
}

.agenda-row{
  display: grid;
  grid-template-columns: 160px 1fr 1fr 160px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(243,243,243,.12);
  transition: background .3s ease;
}

.agenda-row:hover{
  background: rgba(200,163,74,.04);
}

.agenda-date{
  font-size: 12px;
  letter-spacing: 1.6px;
  color: rgba(243,243,243,.55);
}

.agenda-city{
  font-weight: 800;
  letter-spacing: 1.8px;
}

.agenda-type{
  font-size: 13px;
  color: rgba(243,243,243,.70);
}

.agenda-cta{
  justify-self: end;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 16px;
  border: 1px solid rgba(200,163,74,.45);
  border-radius: 999px;
  transition: background .3s ease, border-color .3s ease;
}

.agenda-cta:hover{
  background: rgba(200,163,74,.12);
  border-color: rgba(200,163,74,.75);
}

/* Responsive */
@media (max-width: 900px){
  .agenda-row{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .agenda-cta{
    justify-self: start;
    margin-top: 10px;
  }
}
.books-alt{
  gap: 180px; /* antes 120 */
}
/* =========================
   TRANSMISSIONS – ELITE LIST
========================= */

.transmissions{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.episode{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(200,163,74,.18);
  transition: background .25s ease;
}

.episode:hover{
  background: rgba(200,163,74,.04);
}

.episode-meta{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.episode-kicker{
  color: rgba(200,163,74,.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.episode-title{
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: .4px;
}

.episode-sub{
  color: rgba(243,243,243,.65);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.episode-cta{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8a34a, #e0c36a);
  color: #111;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(200,163,74,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.episode-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200,163,74,.30);
}
/* ===============================
   AGENDA PREMIUM – BLOQUE HORIZONTAL
   =============================== */

.agenda-row{
  position: relative;
  display: grid;
  grid-template-columns: 160px 1.2fr 1fr 170px;
  gap: 18px;
  align-items: center;

  padding: 18px;
  border-radius: 14px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.agenda-row::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height:28px;                  /* franja premium */
  background-image: var(--flag);
  background-size: cover;
  background-position: center;
  opacity: 0.35;                /* visible pero sutil */
  filter: saturate(1.05) contrast(1.10);
}

.agenda-row::after{
  content:"";
  position:absolute;
  left:0; right:0;
  top:0;
  height:28px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.62),
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.62)
  );
  pointer-events:none;
}


/* columnas */
.agenda-date{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.agenda-city{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-type{
  font-size: 13px;
  opacity: 0.75;
}

/* botón */
.agenda-cta{
  justify-self: end;
  height: 38px;
  padding: 0 14px;

  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  border: 1px solid rgba(218,182,116,0.4);
  background: rgba(218,182,116,0.12);
  color: rgba(218,182,116,1);
  text-decoration: none;
}

.agenda-cta:hover{
  background: rgba(218,182,116,0.2);
}

/* responsive */
@media (max-width: 900px){
  .agenda-row{
    grid-template-columns: 1fr;
  }
  .agenda-cta{
    justify-self: start;
  }
}
/* ===========================
   PROGRAMAS — HOVER PREMIUM
   =========================== */

.program-v{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(10,10,10,.35);
  transition: transform .45s cubic-bezier(.2,.9,.2,1),
              box-shadow .45s cubic-bezier(.2,.9,.2,1);
}

/* Glow elite */
.program-v::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:18px;
  background: radial-gradient(
    900px 300px at 15% 10%,
    rgba(201,166,92,.22),
    transparent 55%
  );
  opacity:0;
  transition: opacity .45s ease;
  pointer-events:none;
}

/* Overlay cinematográfico */
.program-v::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.35) 55%,
    rgba(0,0,0,.65) 100%
  );
  opacity:.35;
  transition: opacity .45s ease;
  pointer-events:none;
}

/* Imagen */
.program-v-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.2,.9,.2,1),
              filter .6s ease;
  filter: saturate(.92) contrast(1.02);
}

/* Título */
.program-v-title{
  position:relative;
  transition: transform .4s cubic-bezier(.2,.9,.2,1);
}

/* Línea dorada */
.program-v-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0%;
  height:2px;
  background: linear-gradient(
    90deg,
    rgba(201,166,92,0),
    rgba(201,166,92,.95),
    rgba(201,166,92,0)
  );
  transition: width .45s cubic-bezier(.2,.9,.2,1);
}

/* Texto */
.program-v-text{
  opacity:.88;
  transition: transform .4s cubic-bezier(.2,.9,.2,1),
              opacity .4s ease;
}

/* ===== HOVER ===== */

.program-v:hover{
  transform: translateY(-10px);
  box-shadow:
    0 25px 55px rgba(0,0,0,.65),
    0 0 0 1px rgba(201,166,92,.18);
}

.program-v:hover::before{
  opacity:1;
}

.program-v:hover::after{
  opacity:.6;
}

.program-v:hover .program-v-media img{
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.08);
}

.program-v:hover .program-v-title{
  transform: translateY(-2px);
}

.program-v:hover .program-v-title::after{
  width:100%;
}

.program-v:hover .program-v-text{
  transform: translateY(-1px);
  opacity:1;
}
/* Offers stacked (one per row) */
.offers--stack{
  grid-template-columns: 1fr; /* 1 columna, filas premium */
  gap: 16px;
}

/* Split layout */
.offer--split{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  overflow: hidden;
  position: relative;
}

/* Reverse order for second block (image to the right) */
.offer--reverse{
  grid-template-columns: 1fr 320px;
}
.offer--reverse .offer-media{
  order: 2;
}
.offer--reverse .offer-content{
  order: 1;
}

/* Media frame */
.offer-media{
  border-radius: 20px;
  border: 1px solid rgba(243,243,243,.10);
  background: rgba(0,0,0,.25);
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.offer-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.55) 100%);
  pointer-events:none;
}

.offer-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(0.98);
}

/* Content spacing inside split */
.offer-content{
  display:flex;
  flex-direction: column;
  justify-content: center;
}

/* Premium hover */
.offer--split{
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.offer--split:hover{
  transform: translateY(-3px);
  border-color: rgba(200,163,74,.28);
  background: rgba(255,255,255,.025);
}
.offer--split:hover .offer-media img{
  transform: scale(1.06);
  transition: transform .35s ease;
}

/* Responsive */
@media (max-width: 900px){
  .offer--split,
  .offer--reverse{
    grid-template-columns: 1fr;
  }
  .offer--reverse .offer-media,
  .offer--reverse .offer-content{
    order: initial;
  }
  .offer-media{
    min-height: 200px;
  }
}
/* === PREMIUM SPLIT OFFERS FIX === */

/* 1 fila = 1 oferta, consistente */
.offers--stack{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Card premium */
.offer--split{
  display: grid;
  grid-template-columns: 420px 1fr;      /* imagen grande */
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  position: relative;

  /* estabilidad visual */
  min-height: 260px;
}

/* Variante invertida (imagen derecha) */
.offer--reverse{
  grid-template-columns: 1fr 420px;
}
.offer--reverse .offer-media{ order: 2; }
.offer--reverse .offer-content{ order: 1; }

/* Marco de imagen tipo poster */
.offer-media{
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(200,163,74,.20);
  background: rgba(0,0,0,.35);
}

/* Imagen ocupa TODO */
.offer-media img{
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(.95);
}

/* Degradado editorial */
.offer-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 60% at 30% 25%, rgba(200,163,74,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.60));
  pointer-events:none;
}

/* Contenido bien alineado */
.offer-content{
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Head más elite */
.offer-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

/* Título con presencia */
.offer-title{
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 12px;
  opacity: .95;
}

/* Badge premium */
.offer-tag{
  font-size: 11px;
  letter-spacing: .10em;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200,163,74,.30);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.88);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Texto con mejor lectura */
.offer-text{
  color: rgba(255,255,255,.80);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0;
}

/* Lista más “cerrada” */
.offer-list{
  margin: 8px 0 0;
  padding-left: 16px;
  color: rgba(255,255,255,.78);
}
.offer-list li{
  margin: 6px 0;
}

/* Acciones: evita botón kilométrico */
.offer-actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  align-items:center;
}

/* Botón premium (no full width) */
.btn.btn-gold{
  width: fit-content !important;
  padding: 12px 18px !important;
  border-radius: 999px;
  letter-spacing: .08em;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(200,163,74,.12);
}

/* Hover ELITE: lift + glow + zoom */
.offer--split{
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.offer--split:hover{
  transform: translateY(-4px);
  border-color: rgba(200,163,74,.35);
  background: rgba(255,255,255,.03);
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}
.offer--split:hover .offer-media img{
  transform: scale(1.06);
  transition: transform .35s ease;
}

/* Responsive */
@media (max-width: 980px){
  .offer--split,
  .offer--reverse{
    grid-template-columns: 1fr;
  }
  .offer-media img{
    min-height: 210px;
  }
}
.is-hidden { display: none !important; }


/* =========================
   SPA Page Container
========================= */
#page{
  
  min-height: calc(100vh - 120px);
}
#home{ padding-top: 90px; }
.truth {
  font-size: 0.6rem;        /* 60–65% del tamaño estándar */
  font-weight: 300;         /* ligero, no dominante */
  letter-spacing: 0.12em;   /* aire y control */
  text-transform: lowercase;
  opacity: 0.75;            /* presencia silenciosa */
  margin-top: 0.6rem;
}
.truth {
  font-size: 9px !important;
  font-weight: 100 !important;
  letter-spacing: 0.18em !important;
  text-transform: lowercase !important;
  opacity: 0.6 !important;
  line-height: 1.2 !important;
}
.truth {
  transform: scale(0.65);
  transform-origin: left top;
  display: inline-block;
}
/* Ocultar bloque de suscripción del footer */
footer form,
footer input,
footer button,
footer .newsletter,
footer .subscribe {
  display: none !important;
}
.footer-legal {
  margin-top: 1.2rem;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  opacity: 0.6;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-legal span {
  margin: 0 6px;
  opacity: 0.4;
}
.footer-block {
  font-size: 11px;
}

.footer-title {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

.footer-item {
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  opacity: 0.65;
}

.footer-item a {
  color: inherit;
  text-decoration: none;
}

.footer-item a:hover {
  opacity: 1;
}
/* Igualar tamaño entre LEGAL e INSTITUCIONAL */
.footer-block,
.footer-block * {
  font-size: 12px !important;
  line-height: 1.4 !important;
}

/* Títulos de bloque */
.footer-title {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
}

/* Ítems dentro del bloque */
.footer-item,
.footer-item a {
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
}
/* ===== FOOTER RESET DEFINITIVO: mismo tamaño para TODO ===== */
footer{
  font-size: 12px !important;
  line-height: 1.4 !important;
}

/* Esto aplasta cualquier font-size distinto dentro del footer */
footer *{
  font-size: inherit !important;
  line-height: inherit !important;
}

/* Títulos (LEGAL / INSTITUCIONAL / SOCIAL): mismo tamaño, solo más peso */
footer .footer-title,
footer .title,
footer h4,
footer h5{
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  opacity: 0.9 !important;
}

/* Items (links): mismo tamaño */
footer a,
footer .footer-item,
footer p,
footer li,
footer span{
  font-weight: 300 !important;
  letter-spacing: 0.08em !important;
  opacity: 0.7 !important;
}
.mega { display: none !important; }
.nav-item.has-mega { position: static !important; }
/* ==============================
   FIX DEFINITIVO HEADER OVERLAP
   ============================== */

/* Header fijo */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px; /* AJUSTE REAL DEL HEADER */
  z-index: 1000;
}

/* Empuja TODO el contenido hacia abajo */
#page,
main,
#home{
  margin-top: 10px !important;
}
/* =========================================
   ABOUT (pages/about.html) — UltraPremium
   ========================================= */

/* Full-width rectangle (ocupa todo el ancho aunque #page esté centrado) */
.about-hero-full{
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(180deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.015) 100%);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 56px 0;
}

.about-hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.about-kicker{
  letter-spacing: .20em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 12px;
  color: rgba(200,163,74,.92);
}

.about-title{
  margin: 14px 0 0;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.94);
}

.about-subtitle{
  margin: 16px 0 0;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.70);
}

.about-cta-row{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-microproof{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.about-chip{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 650;
}

/* Slot de imagen (opcional) dentro del rectángulo */
.about-portrait-slot{
  height: 420px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(200,163,74,.10), transparent 60%),
    radial-gradient(700px 380px at 90% 10%, rgba(120,180,255,.06), transparent 55%),
    rgba(0,0,0,.22);
}

/* MANIFIESTO */
.about-manifesto{
  padding: 64px 0 96px;
  background: transparent;
}

.about-container{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 22px;
}

.about-manifesto-head{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 18px;
}

.about-manifesto-kicker{
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}

.about-manifesto-line{
  flex:1;
  height: 1px;
  background: rgba(255,255,255,.10);
}

.about-manifesto-body p{
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,.86);
  letter-spacing: .01em;
}

.about-manifesto-body p.about-final{
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(200,163,74,.92);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}

/* FIRMA */
.about-signoff{
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.about-signature-line{
  width: 220px;
  height: 1px;
  background: rgba(255,255,255,.20);
}

.about-signature-name{
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.86);
}

.about-signature-sub{
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.60);
}

.about-signature-mark{
  margin-top: 6px;
  font-size: 34px;
  font-style: italic;
  color: rgba(200,163,74,.84);
  letter-spacing: .02em;
  user-select: none;
}

/* Responsive */
@media (max-width: 980px){
  .about-hero-inner{
    grid-template-columns: 1fr;
  }
  .about-portrait-slot{
    height: 320px;
  }
}


/* =========================================================
   PATCH FINAL — SIN FRANJA ARRIBA (HOME + ABOUT)
   - Respeta TODO tu diseño.
   - Elimina offsets dobles (#page/#home/main) que generaban el “hueco”.
   - Suaviza el borde del header para que no “corte” el hero.
   ========================================================= */

:root{
  --header-h: 96px; /* única verdad */
}

/* Header fijo con altura estable */
.site-header{
  height: var(--header-h) !important;
  border-bottom: 0 !important;         /* quita la línea dura */
}

/* Suavizado editorial debajo del header (evita “franja”) */
.site-header::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-1px;
  height: 22px;
  background: linear-gradient(180deg, rgba(5,6,7,.55), rgba(5,6,7,0));
  pointer-events:none;
}

/* Un SOLO offset global: body compensa el header */
body{
  padding-top: var(--header-h) !important;
}

/* Prohibido empujar contenedores SPA (aquí nacía el bug) */
main,
#home,
#page{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Asegura que el contenedor de partials no “se hunda” */
#page{
  min-height: calc(100vh - var(--header-h)) !important;
}

/* =========================================
   ABOUT — EDITORIAL UPGRADE (NO “RECUADRO”)
========================================= */

.about-page--editorial{ padding: 36px 0 60px; }
.about-kicker{
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:800;
  font-size:12px;
  opacity:.72;
  margin-bottom: 14px;
}

/* HERO XL */
.about-hero-frame--xl{
  width:100%;
  aspect-ratio: 21/9;
  border-radius: 22px;
  overflow:hidden;
  position:relative;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,10,.9);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  margin: 0 0 28px;
}

.about-hero-frame--xl img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center 18%;
  display:block;
}

.about-hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 28% 25%, rgba(255,255,255,.07), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62));
  pointer-events:none;
}

/* Plaquita inferior izquierda (luxury) */
.about-hero-plaque{
  position:absolute;
  left: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(5,6,7,.45);
  backdrop-filter: blur(10px);
}
.plaque-title{
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size: 12px;
}
.plaque-sub{
  margin-top: 4px;
  font-size: 12px;
  opacity:.78;
  letter-spacing:.12em;
  text-transform:uppercase;
}

/* MANIFIESTO editorial (sin card) */
.manifesto{ max-width: 980px; }
.manifesto-head{ max-width: 84ch; }
.manifesto-eyebrow{
  letter-spacing:.22em;
  text-transform:uppercase;
  font-weight:900;
  font-size:12px;
  opacity:.8;
}
.manifesto-title{
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.03;
  margin: 10px 0 10px;
}
.manifesto-lead{
  margin: 0 0 18px;
  line-height: 1.75;
  opacity: .80;
  max-width: 78ch;
}

.manifesto-body{
  display:grid;
  grid-template-columns: 14px 1fr;
  gap: 18px;
  align-items:start;
  padding-top: 8px;
}

.manifesto-rule{
  width: 2px;
  border-radius: 99px;
  min-height: 260px;
  background: linear-gradient(180deg, rgba(200,163,74,.85), rgba(200,163,74,0));
  margin-top: 6px;
}

.manifesto-copy{
  max-width: 86ch;
  line-height: 1.9;
  font-size: 15.5px;
}
.manifesto-copy p{ margin: 0 0 14px; }
.manifesto-copy p:nth-child(1){ font-weight: 800; }

/* FIRMA CLÁSICA (script) */
.signature{
  margin-top: 22px;
  padding-top: 10px;
  max-width: 620px;
}
.sig-script{
  font-family: "Allura", "Great Vibes", "Parisienne", cursive;
  font-size: 44px;
  line-height: 1;
  opacity: .95;
  letter-spacing: .02em;
}
.sig-meta{
  margin-top: 10px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .70;
}
.sig-line{
  margin-top: 12px;
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,.38);
}

/* Mobile */
@media (max-width: 900px){
  .about-hero-frame--xl{ aspect-ratio: 16/10; }
  .manifesto-body{ grid-template-columns: 10px 1fr; gap: 14px; }
  .manifesto-rule{ min-height: 220px; }
  .sig-script{ font-size: 38px; }
}
/* MANIFIESTO — CENTRADO / DECRETO */
.manifesto-copy--center{
  text-align: center;
  margin: 0 auto;
  max-width: 70ch;
}

.manifesto-copy--center p{
  margin: 0 0 16px;
}

.manifesto-copy--center .m-strong{
  font-weight: 900;
  letter-spacing: .02em;
}

.manifesto-copy--center .m-knife{
  font-weight: 900;
  font-size: 16.5px;
  letter-spacing: .01em;
  color: rgba(200,163,74,.95);
  text-shadow: 0 10px 30px rgba(200,163,74,.10);
}

.manifesto-copy--center .m-end{
  opacity: .9;
  font-weight: 800;
}

/* Ajuste: si usabas la línea vertical dorada, la centramos también */
.manifesto-body{
  grid-template-columns: 1fr !important;
}
.manifesto-rule{
  display:none !important;
}
/* =========================================
   HERO — ENCAJE TAL CUAL (SIN RECORTE)
   (foreground contain + background blur fill)
========================================= */

.about-hero-frame--fit{
  width:100%;
  max-width: 1200px;
  aspect-ratio: 21 / 9;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #070809;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  margin: 0 auto 28px;
}

/* Fondo blur (rellena sin recortar el main) */
.about-hero-frame--fit .hero-bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: blur(18px) brightness(.55) contrast(1.05);
  opacity: .95;
}

/* Foto principal: COMPLETA, sin recorte */
.about-hero-frame--fit .hero-main{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: contain;          /* <-- esto es lo que garantiza “tal cual” */
  object-position: center;
  filter: contrast(1.03) brightness(.96);
}

/* Overlay luxury (profundidad) */
.about-hero-frame--fit .about-hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 28% 25%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.60));
  pointer-events:none;
}

/* Plaquita */
.about-hero-frame--fit .about-hero-plaque{
  position:absolute;
  left: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(5,6,7,.42);
  backdrop-filter: blur(10px);
}

.about-hero-frame--fit .plaque-title{
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
}

.about-hero-frame--fit .plaque-sub{
  margin-top: 5px;
  font-size: 11px;
  opacity: .78;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 900px){
  .about-hero-frame--fit{
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }
}
/* ================================
   CONFERENCES (PAGE) — PREMIUM
   Pegar al final del styles.css
================================ */

.page-conferences .section-head{
  margin-top: clamp(18px, 2.2vw, 28px);
}

.page-conferences .kicker{
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}


.page-conferences .section-title{
  letter-spacing: -0.02em;
}

.page-conferences .section-subtitle{
  max-width: 62ch;
  opacity: .85;
}

/* HERO FRAME (recuadro horizontal) */
.conf-hero{
  margin-top: clamp(18px, 3vw, 28px);
}

.conf-frame{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,16,.55);
  box-shadow:
    0 20px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  min-height: clamp(220px, 28vw, 420px);
}

/* La foto debe verse "pura": sin filtros heredados */
.conf-frame__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none !important;
  opacity: 1 !important;
  transform: translateZ(0);
}

/* Overlay suave (no “filtro”) */
.conf-frame__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 120% at 50% 60%, rgba(0,0,0,.10), rgba(0,0,0,.55)),
    linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.10));
  pointer-events: none;
}

/* Badge */
.conf-badge{
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,16,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  max-width: min(520px, calc(100% - 36px));
}

.conf-badge__title{
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 12px;
  opacity: .95;
}

.conf-badge__meta{
  margin-top: 4px;
  font-size: 11px;
  opacity: .75;
  letter-spacing: .04em;
}

/* GRID */
.conf-grid{
  margin-top: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.event-card{
  grid-column: span 6;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,16,.45);
  box-shadow:
    0 18px 55px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.05);
  transform: translateY(0);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.event-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 22px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.event-card__media{
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,.35);
}

.event-card__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: none !important;
  opacity: 1 !important;
}

.event-card__body{
  padding: 14px 16px 16px;
}

.event-card__top{
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .9;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.event-flag{
  font-size: 16px;
  line-height: 1;
}

.event-title{
  margin: 10px 0 2px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.event-type{
  margin: 0 0 12px;
  opacity: .8;
  font-size: 13px;
}

.event-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  opacity: .88;
}

/* Firma */
.conf-sign{
  margin-top: clamp(26px, 4vw, 44px);
  display: flex;
  justify-content: flex-end;
}

.conf-sign__right{
  text-align: right;
  padding: 18px 16px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,12,16,.30);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  min-width: min(420px, 100%);
}

/* firma “clásica” (sin traer fuentes externas) */
.conf-sign__sig{
  font-size: 34px;
  letter-spacing: .02em;
  opacity: .95;
  font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
}

.conf-sign__role{
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .85;
}

.conf-sign__rule{
  margin-top: 10px;
  height: 1px;
  width: 220px;
  margin-left: auto;
  background: rgba(255,255,255,.22);
}

/* Mobile */
@media (max-width: 820px){
  .event-card{ grid-column: span 12; }
  .conf-badge{ left: 12px; right: 12px; max-width: none; }
  .conf-sign__right{ min-width: 100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .event-card{ transition: none; }
  .event-card:hover{ transform: none; }
}
/* ================================
   BOTÓN PREMIUM — ACCEDER
================================ */

.event-cta{
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.btn-access{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 26px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(255,255,255,.92);
  text-decoration: none;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.02)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 30px rgba(0,0,0,.45);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

/* Hover = autoridad silenciosa */
.btn-access:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.35);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.12),
      rgba(255,255,255,.04)
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 18px 45px rgba(0,0,0,.6);
}

/* Active = decisión */
.btn-access:active{
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 22px rgba(0,0,0,.55);
}

/* Mobile: botón ocupa ancho */
@media (max-width: 820px){
  .btn-access{
    width: 100%;
    justify-content: center;
  }
}
/* ================================
   BOTÓN ACCEDER — WHATSAPP PREMIUM
================================ */

.event-cta{
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.btn-access{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 28px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;

  color: rgba(255,255,255,.95);
  text-decoration: none;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.02)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 12px 32px rgba(0,0,0,.55);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

/* Hover = decisión */
.btn-access:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.45);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.04)
    );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 22px 48px rgba(0,0,0,.65);
}

/* Active = compromiso */
.btn-access:active{
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 26px rgba(0,0,0,.6);
}

/* Mobile: ocupa todo el ancho */
@media (max-width: 820px){
  .btn-access{
    width: 100%;
    justify-content: center;
  }
}
/* =========================================================
   MENTORING — EXECUTIVE / McKINSEY STYLE
   ========================================================= */


/* CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 80px 20px;
  }
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.mentoring-hero {
  padding-bottom: 80px;
}

.section-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b90a5;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
  color: #b8bccd;
}

/* ---------------------------------------------------------
   CORE BLOCK
   --------------------------------------------------------- */
.mentoring-core {
  
}

.mentoring-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .mentoring-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.mentoring-text h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.mentoring-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #c2c6d6;
  margin-bottom: 16px;
}

.mentoring-points {
  margin-top: 28px;
  padding-left: 0;
  list-style: none;
}

.mentoring-points li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #e6e8ee;
}

.mentoring-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #9fa5bd;
}

/* FRAME */
.mentoring-frame {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );
}

.frame-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fa5bd;
  margin-bottom: 16px;
}

.mentoring-frame p {
  font-size: 15px;
  line-height: 1.6;
  color: #d6d9e6;
}

/* ---------------------------------------------------------
   METHOD
   --------------------------------------------------------- */
.mentoring-method {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.section-title {
  font-size: 42px;
  margin-bottom: 64px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .method-steps {
    grid-template-columns: 1fr;
  }
}

.method-card {
  padding: 32px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .3s ease, border .3s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
}

.step {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #9fa5bd;
  margin-bottom: 12px;
}

.method-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #c5c9d9;
}

/* ---------------------------------------------------------
   FILTER
   --------------------------------------------------------- */
.mentoring-filter {
  background: rgba(255,255,255,0.02);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

@media (max-width: 900px) {
  .filter-grid {
    grid-template-columns: 1fr;
  }
}

.filter-yes h3,
.filter-no h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.filter-yes ul,
.filter-no ul {
  list-style: none;
  padding: 0;
}

.filter-yes li,
.filter-no li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.filter-yes li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #8fd19e;
}

.filter-no li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #e38b8b;
}

/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */
.mentoring-cta {
  text-align: center;
}

.mentoring-cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 40px;
}

.btn-premium {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #0b0f1a;
  background: linear-gradient(135deg, #d4af37, #f5e6a8);
  box-shadow: 0 12px 40px rgba(212,175,55,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.4);
}

.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: #9fa5bd;
}
/* =========================================================
   LIBROS — EXECUTIVE EDITORIAL
   ========================================================= */

.books-hero {
  padding: 8rem 0 4rem;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: #b5b5b5;
}

/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

/* ---------------------------------------------------------
   CARD
   --------------------------------------------------------- */
.book-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #121212, #0c0c0c);
  border-radius: 18px;
  overflow: hidden;
}

.book-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.book-info {
  padding: 2rem;
}

.book-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.book-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c9a25d;
}

.book-info p {
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
  color: #cfcfcf;
}

/* ---------------------------------------------------------
   MANIFIESTO
   --------------------------------------------------------- */
.author-manifesto {
  margin: 8rem auto 6rem;
  max-width: 720px;
  text-align: center;
  font-size: 1.2rem;
  color: #e0e0e0;
}

.author-signature {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-signature img {
  width: 180px;
  opacity: 0.9;
}

.author-signature span {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b9b9b9;
}
/* =========================================================
   PROGRAMAS — ELITE STRUCTURE
   ========================================================= */

.programs-hero {
  max-width: 900px;
  padding-top: 9rem;
}

.program-block {
  margin-top: 6rem;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.program-grid.reverse {
  direction: rtl;
}
.program-grid.reverse > * {
  direction: ltr;
}

/* MEDIA */
.program-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.media-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, #111, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* INFO */
.program-info h2 {
  font-size: 2.2rem;
  margin: 1rem 0;
}

.program-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a25d;
}

.program-info p {
  color: #cfcfcf;
  max-width: 460px;
  line-height: 1.7;
}

.program-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.program-points li {
  margin-bottom: 0.6rem;
  padding-left: 20px;
  position: relative;
}

.program-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c9a25d;
}

/* CIERRE */
.programs-close {
  text-align: center;
  margin: 8rem auto;
  max-width: 700px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .media-placeholder {
    height: 260px;
  }
}
:root{
  --header-h: 0px; /* AJUSTA ESTE VALOR, aquí está el poder */
}

.site-header{
  height: var(--header-h);
}

body{
  padding-top: var(--header-h);
}
/* ==============================
   FOOTER — DOMINANT OVERRIDE
   ============================== */

footer,
.site-footer {
  position: relative !important;

  /* Tamaño real, sin inflarse */
  height: auto !important;
  min-height: unset !important;

  /* Compacto y elegante */
  padding: 20px 0 !important;
  margin-top: 48px !important;

  /* Estética */
  background: transparent !important;
}

/* Contenedor interno */
footer * {
  line-height: 1.4 !important;
}

/* Quita márgenes fantasmas */
footer p,
footer ul,
footer li {
  margin: 0 !important;
  padding: 0 !important;
}

/* Espaciado controlado entre columnas */
footer .footer-inner,
footer .footer-grid {
  gap: 24px !important;
}

/* Evita que el footer empuje la página */
body {
  padding-bottom: 0 !important;
}
footer {
  all: unset;
  display: block;
  padding: 20px 0;
}
/* ==============================
   SOCIAL ICONS — PREMIUM
   ============================== */

.social-icons{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
}

.social-btn{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
  opacity:.92;
}

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.55);   /* toque gold premium */
  background: rgba(212,175,55,.08);
  opacity:1;
}

.social-btn:active{
  transform: translateY(0px);
}

.social-btn .icon{
  width:18px;
  height:18px;
  fill: rgba(255,255,255,.86);
}
/* 🔥 FIX COLOR LIBROS */
.book-card,
.book-card img,
.book-cover,
.libro,
.libros img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Si hay overlay oscuro */
.book-card::before,
.book-card::after,
.libro::before,
.libro::after {
  display: none !important;
}

.programs{
  display:flex;
  flex-direction:column;
  gap:80px;
  padding:120px 6vw;
}

.program-card{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:60px;
  align-items:center;
}

.program-media{
  height:380px;
  border-radius:18px;
  background-size:cover;
  background-position:center;
  box-shadow:0 40px 80px rgba(0,0,0,.6);
}

/* IMÁGENES */
.black-room{
  background-image:url("assets/programs/black-room.jpg");
}

.social-dominance{
  background-image:url("assets/programs/social-dominance.jpg");
}

.elite-physique{
  background-image:url("assets/programs/elite-physique.jpg");
}

/* TEXTO */
.program-tag{
  color:#caa45a;
  font-size:12px;
  letter-spacing:3px;
}

.program-content h3{
  font-size:38px;
  margin:12px 0;
}

.program-desc{
  color:#b9b9b9;
  max-width:520px;
}

.program-points{
  margin:24px 0;
  padding-left:0;
  list-style:none;
}

.program-points li{
  margin-bottom:10px;
  color:#e0e0e0;
}

.program-cta{
  display:inline-block;
  margin-top:24px;
  padding:14px 34px;
  border-radius:40px;
  background:linear-gradient(135deg,#d4b26a,#a17c3a);
  color:#111;
  font-weight:600;
  text-decoration:none;
}
#programas,
.programs {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.program-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 80px 6vw;
  border-radius: 0;
}
/* =========================
   FIX MOBILE – HERO TEXT SUBPAGES
========================= */

@media (max-width: 768px){
  .hero-title-overlay{
    gap: 4px !important;
  }

  .hero-role{
    margin-bottom: 2px !important;
    line-height: 1.05 !important;
  }

  .hero-institution{
    gap: 0 !important;
    margin-top: -4px !important;
  }

  .hero-institution span{
    line-height: 1.1 !important;
  }
}
