/* ============================================================
   FERNANDO ORCIANI · TECNOCUISINE
   Sistema de diseño — claro, profesional, naranja de marca
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Hanken+Grotesk:wght@400;500;600;700;800&family=Yellowtail&display=swap');

:root {
  /* Marca */
  --orange:      #E96E1F;   /* naranja hexágono */
  --orange-deep: #C85A12;
  --orange-soft: #FBE7D6;
  --gold:        #B0852F;   /* firma / acentos dorados */
  --gold-soft:   #C9A24A;
  --ink:         #1A1714;   /* casi negro cálido */
  --ink-2:       #3A332D;

  /* Superficies claras */
  --paper:    #F7F5F1;      /* fondo cálido */
  --paper-2:  #EFEBE4;      /* alternancia */
  --white:    #FFFFFF;

  /* Texto */
  --t-strong: #1A1714;
  --t-base:   #463F38;
  --t-muted:  #837A70;
  --t-faint:  #A89F94;

  /* Líneas */
  --line:        rgba(26,23,20,0.10);
  --line-strong: rgba(26,23,20,0.18);
  --line-orange: rgba(233,110,31,0.30);

  /* Tipografía */
  --display: "Space Grotesk", system-ui, sans-serif;
  --sans:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Radios */
  --r-xl: 24px;
  --r-lg: 16px;
  --r-md: 11px;
  --r-sm: 7px;
  --r-pill: 999px;

  /* Layout */
  --maxw: 1220px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Sombras */
  --shadow-lg: 0 38px 80px -42px rgba(40,28,12,0.40);
  --shadow-md: 0 22px 50px -32px rgba(40,28,12,0.32);
  --shadow-sm: 0 10px 28px -18px rgba(40,28,12,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--t-base);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }
.surface-2 { background: var(--paper-2); }
.surface-ink { background: var(--ink); color: #EDE7DF; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Tipografía ---------- */
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--t-strong);
  margin: 0;
}
.h-sec {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--t-strong);
  margin: 0;
  text-wrap: balance;
}
.h-card {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--t-strong);
  margin: 0;
  line-height: 1.1;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.6; color: var(--ink-2); margin: 0; }
.muted { color: var(--t-muted); margin: 0; }
.faint { color: var(--t-faint); }
.orange { color: var(--orange); }
strong { font-weight: 700; color: var(--t-strong); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px;
}
.eyebrow.no-rule::before { display: none; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 0.96rem;
  letter-spacing: 0.005em;
  padding: 14px 26px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 14px 30px -14px rgba(233,110,31,0.7); }
.btn--orange:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--t-strong); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--lg { padding: 17px 32px; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  color: var(--orange); cursor: pointer;
}
.link-arrow svg { transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 0.82rem; padding: 7px 14px; border-radius: var(--r-pill);
}
.badge--orange { background: var(--orange-soft); color: var(--orange-deep); }
.badge--soft { background: var(--white); border: 1px solid var(--line); color: var(--ink-2); }
.badge--dot::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--orange); }

.wrap-gap { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.card--hover { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-orange); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,245,241,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 38px; height: 38px; object-fit: contain; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.01em; color: var(--t-strong); }
.brand__sub { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t-muted); margin-top: 4px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-weight: 600; font-size: 0.95rem; color: var(--ink-2);
  position: relative; transition: color .18s ease;
}
.nav__link::after {
  content:""; position:absolute; left:0; bottom:-7px; height:2px; width:0; background: var(--orange);
  transition: width .22s ease;
}
.nav__link:hover { color: var(--orange); }
.nav__link:hover::after { width:100%; }
.nav__cta { margin-left: 6px; }
.nav__burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav__burger span { width:24px; height:2px; background: var(--ink); border-radius:2px; }
.mmenu { display:none; flex-direction:column; gap:4px; padding: 8px var(--gutter) 18px; border-bottom:1px solid var(--line); background: var(--paper); }
.mmenu a { padding: 11px 0; font-weight:600; color: var(--ink-2); border-bottom:1px solid var(--line); }
.mmenu a.orange { color: var(--orange); border-bottom:none; }
.mmenu.open { display:flex; }

/* ---------- Mega dropdown (Masterclasses) ---------- */
.nav__item { position: relative; }
.nav__link--has { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__link--has svg { transition: transform .2s ease; }
.nav__item:hover .nav__link--has svg { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(620px, 88vw);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 16px; z-index: 80;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.mega::before { content:""; position:absolute; top:-18px; left:0; right:0; height:18px; }
.nav__item:hover .mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mega__card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  background: var(--paper); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.mega__card img { width: 100%; height: 92px; object-fit: cover; }
.mega__card-txt { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px 12px; }
.mega__tag { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.mega__name { font-family: var(--display); font-weight: 600; font-size: 0.96rem; color: var(--t-strong); }
.mega__card:hover { transform: translateY(-2px); border-color: var(--line-orange); box-shadow: var(--shadow-sm); }
.mega__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--t-muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: min(90vh, 860px);
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; top: 0; bottom: 0; right: 0; left: 38%; z-index: 0;
  background: url('images/fernando-cocina-clean.png') no-repeat;
  background-size: cover; background-position: 55% 15%;
  filter: contrast(1.06) saturate(1.05);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(46% 70% at 70% 44%, rgba(20,16,12,0.15) 0%, rgba(20,16,12,0) 60%),
    linear-gradient(90deg, var(--paper) 30%, rgba(247,245,241,0.55) 41%, rgba(247,245,241,0) 50%),
    linear-gradient(180deg, rgba(247,245,241,0) 64%, rgba(247,245,241,0.32) 100%);
}
.hero__brandword {
  position: absolute; z-index: 1; pointer-events: none; user-select: none;
  right: clamp(-10px, 1vw, 44px); bottom: clamp(14px, 5vh, 64px);
  font-family: var(--display); font-weight: 700; letter-spacing: -0.035em;
  font-size: clamp(2.6rem, 10.5vw, 11rem); line-height: 0.8;
  color: rgba(26,23,20,0.085);
}
.hero__inner { position: relative; z-index: 2; }
.hero__card {
  max-width: clamp(320px, 40vw, 540px);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(11px) saturate(1.05);
  -webkit-backdrop-filter: blur(11px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--r-xl);
  padding: clamp(26px, 3vw, 46px);
  box-shadow: var(--shadow-md);
}
.hero__eyebrow { margin-bottom: 22px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.hero__role {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 500; font-size: clamp(1.05rem,1.7vw,1.35rem);
  color: var(--orange); margin: 18px 0 0;
}
.hero__lead { margin-top: 22px; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__stats { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.hstat__n { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--t-strong); line-height: 1; }
.hstat__l { display:block; font-size: 0.82rem; color: var(--t-muted); margin-top: 7px; max-width: 18ch; }
.hstat { position: relative; padding-left: 22px; }
.hstat::before { content:""; position:absolute; left:0; top:2px; bottom:2px; width:3px; border-radius:3px; background: var(--orange); }
.hstat--projects { padding-left: 0; }
.hstat--projects::before { display: none; }
.hprojects { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
.hprojects img { height: 40px; width: auto; object-fit: contain; }
.hprojects__tile { border-radius: 9px; box-shadow: var(--shadow-sm); }

.hero__caption {
  position: absolute; z-index: 2; right: clamp(16px, 3vw, 44px); bottom: clamp(16px, 3vw, 36px);
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  padding: 9px 16px 9px 11px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.7);
}
.hero__caption img { width: 28px; height: 28px; }
.hero__caption span { display: flex; flex-direction: column; line-height: 1.2; font-size: 0.78rem; color: var(--t-muted); }
.hero__caption strong { font-family: var(--display); font-weight: 700; font-size: 0.92rem; color: var(--ink); }

/* ---------- Tira de empresas ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trustbar__inner { display: flex; align-items: center; gap: clamp(24px,4vw,56px); padding-block: 26px; flex-wrap: wrap; }
.trustbar__label { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t-muted); font-weight: 700; max-width: 16ch; line-height: 1.4; }
.trustbar__logos { display: flex; align-items: center; gap: clamp(22px,3.5vw,46px); flex-wrap: wrap; flex: 1; }
.tlogo { font-family: var(--display); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.02em; color: var(--t-faint); transition: color .2s ease; }
.tlogo:hover { color: var(--ink-2); }
.tlogo em { font-style: normal; font-weight: 400; }

/* ---------- Guarda animada de clientes (marquee) ---------- */
.guarda { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: clamp(40px,6vw,68px); overflow: hidden; }
.guarda__head { text-align: center; display: grid; gap: 8px; justify-items: center; margin-bottom: 38px; }
.guarda__head .h-card { font-size: clamp(1.3rem,2.4vw,1.7rem); }
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; width: max-content; gap: 22px; animation: guarda-scroll 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.chip {
  flex: none; width: 178px; height: 100px;
  display: grid; place-items: center; padding: 0 26px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.chip img { max-height: 56px; max-width: 132px; width: auto; object-fit: contain; }
.chip--fill { padding: 0; overflow: hidden; }
.chip--fill img { max-height: none; max-width: none; width: 100%; height: 100%; object-fit: cover; }
.chip--dark { background: #000; border-color: #000; padding: 0; overflow: hidden; }
.chip--dark img { max-width: none; max-height: none; width: 100%; height: 100%; object-fit: cover; }
.chip--logo-dark { background: #0E0C0A; border-color: #0E0C0A; }
@keyframes guarda-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 11px)); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Credenciales (cofundador / miembro) ---------- */
.creds { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.cred {
  display: flex; align-items: center; gap: 13px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 12px 16px 12px 12px; box-shadow: var(--shadow-sm);
}
.cred__seal { flex: none; width: 52px; height: 52px; border-radius: 9px; display: grid; place-items: center; overflow: hidden; background: var(--paper-2); }
.cred__seal img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cred__seal--dark { background: #0B0B0E; }
.cred__txt { display: flex; flex-direction: column; line-height: 1.25; }
.cred__role { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.cred__name { font-family: var(--display); font-weight: 600; font-size: 0.98rem; color: var(--t-strong); }

/* ============================================================
   SPLIT genérico
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.split--rev .split__text { order: 2; }
.split__text { max-width: 56ch; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-2); }
.tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-deep);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 800; margin-top: 1px;
}

.media-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line); background: #e9e4dc;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sección head centrada ---------- */
.sec-head { max-width: 60ch; margin-inline: auto; text-align: center; display: grid; gap: 16px; justify-items: center; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Redes sociales (bajo la firma) ---------- */
.socials { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 18px; }
.socials a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.socials a svg { width: 26px; height: 26px; }
.socials a:hover { color: var(--orange); border-color: var(--line-orange); transform: translateY(-2px); }

/* ---------- TecnoUniversity ---------- */
.tu-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 56px; }
.tu-cat { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.tu-cat:hover { border-color: var(--line-orange); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.tu-cat__ico { width: 38px; height: 38px; color: var(--orange); }
.tu-cat__ico svg { width: 100%; height: 100%; }
.tu-cat h4 { font-family: var(--display); font-size: 1.06rem; margin: 4px 0 0; line-height: 1.25; }
.tu-cat p { margin: 0; font-size: .88rem; color: var(--t-muted); line-height: 1.5; }

.agenda { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 2px; }
.agenda::-webkit-scrollbar { display: none; }
.agenda > .agenda-card { flex: 0 0 min(340px, 84vw); scroll-snap-align: start; }
.agenda-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.agenda-card__img { aspect-ratio: 4/3; background: var(--paper-2); overflow: hidden; }
.agenda-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.agenda-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.agenda-card__body h4 { font-family: var(--display); font-size: 1.22rem; margin: 0; line-height: 1.22; }
.agenda-card__body p { margin: 0; font-size: .93rem; color: var(--t-muted); line-height: 1.55; }
.agenda-when { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 12px 0; margin-top: auto; border-top: 1px solid var(--line); }
.agenda-when span { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--ink); }
.agenda-when svg { color: var(--orange); flex: none; }
.agenda-host { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--t-muted); }
.agenda-host img { height: 26px; width: auto; }

.bolsa { margin-top: 56px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 18px; padding: 30px 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; justify-content: space-between; }
.bolsa__txt { max-width: 56ch; }
.bolsa__txt h4 { font-family: var(--display); font-size: 1.3rem; margin: 6px 0 8px; }
.bolsa__txt p { margin: 0; color: var(--t-muted); font-size: .95rem; line-height: 1.55; }

.jobs { margin-top: 18px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.jobs__empty { grid-column: 1/-1; margin: 0; padding: 22px 26px; background: var(--paper-2); border: 1px dashed var(--line); border-radius: 16px; color: var(--t-muted); font-size: .95rem; }
.job { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.job__top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.job__top h4 { font-family: var(--display); font-size: 1.12rem; margin: 0; line-height: 1.25; }
.job__tag { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); background: var(--orange-soft); border-radius: 999px; padding: 5px 11px; }
.job__where { margin: 0; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.job__txt { margin: 0; font-size: .92rem; line-height: 1.55; color: var(--t-muted); }
.job .btn { margin-top: 6px; }

/* ---------- Sello "clasificados" en eventos ---------- */
.event__stamp { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%) rotate(-7deg); background: var(--orange); color: #fff; font-family: var(--display); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: clamp(1rem, 2vw, 1.5rem); padding: 10px 26px; border-radius: 6px; box-shadow: 0 10px 26px rgba(0,0,0,.3); z-index: 3; white-space: nowrap; }

/* ---------- Formulario de captación ---------- */
.capta { background: var(--white); border-radius: 22px; padding: 34px; text-align: left; max-width: 760px; margin: 30px auto 0; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.capta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.capta label { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--ink-2); text-transform: uppercase; letter-spacing: .06em; }
.capta label.full { grid-column: 1 / -1; }
.capta input, .capta select, .capta textarea { font: inherit; font-size: .95rem; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink); padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper-2); width: 100%; }
.capta input:focus, .capta select:focus, .capta textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }
.capta textarea { resize: vertical; min-height: 76px; }
.capta__foot { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.capta__foot .faint { font-size: .8rem; color: var(--t-muted); }
@media (max-width: 640px) { .capta { padding: 24px; } .capta__grid { grid-template-columns: 1fr; } }

/* ---------- Carrusel de notas ---------- */
.notas-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: -10px; margin-bottom: 20px; }
.notas-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, color .2s ease; }
.notas-arrow:hover { border-color: var(--line-orange); box-shadow: var(--shadow-sm); color: var(--orange); }
.notas-arrow:disabled { opacity: .35; cursor: default; }
.notas-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; margin: 0; padding-bottom: 2px; }
.notas-track::-webkit-scrollbar { display: none; }
.notas-track .pillar { flex: 0 0 min(340px, 84vw); scroll-snap-align: start; }

/* ---------- Pilar / tarjeta de sección ---------- */
.pillar { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.pillar__img { aspect-ratio: 16/10; background: #e9e4dc; overflow: hidden; }
.pillar__img img { width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.pillar:hover .pillar__img img { transform: scale(1.05); }
.pillar__body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pillar__num { font-family: var(--display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--orange); text-transform: uppercase; }
.pillar__body .link-arrow { margin-top: auto; padding-top: 6px; }

/* ---------- Pilares expandibles ---------- */
.pillars { align-items: start; }
.pillar__head { display: block; width: 100%; text-align: left; margin: 0; padding: 0; background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
.pillar__head:hover .pillar__img img { transform: scale(1.05); }
.pillar--link { text-decoration: none; color: inherit; cursor: pointer; }
.pillar--link:hover .pillar__img img { transform: scale(1.05); }
.pillar--link:hover { border-color: var(--line-orange); box-shadow: var(--shadow-md); }
.tm { font-size: 0.55em; vertical-align: super; font-weight: 600; margin-left: 1px; }
.pillar { transition: box-shadow .22s ease, border-color .22s ease; }
.pillar.is-open { border-color: var(--line-orange); box-shadow: var(--shadow-md); }
.pillar__toggle { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 700; font-size: 0.95rem; color: var(--orange); }
.pillar__toggle .chev { transition: transform .25s ease; }
.pillar.is-open .pillar__toggle .chev { transform: rotate(180deg); }
.pillar__panel { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.pillar.is-open .pillar__panel { max-height: 760px; }
.pillar__panel-inner { padding: 0 26px 28px; }
.courses { list-style: none; margin: 0 0 16px; padding: 16px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.course { display: flex; align-items: center; gap: 13px; }
.course__thumb { flex: none; width: 46px; height: 46px; border-radius: 9px; overflow: hidden; background: var(--paper-2); }
.course__thumb img { width: 100%; height: 100%; object-fit: cover; }
.course__name { flex: 1; font-weight: 600; font-size: 0.9rem; color: var(--t-strong); line-height: 1.32; text-wrap: pretty; }
.course__tag { flex: none; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange); background: var(--orange-soft); padding: 4px 9px; border-radius: var(--r-pill); }
.course__tag--soon { color: var(--t-muted); background: var(--paper-2); }
.pillar__note { font-size: 0.85rem; color: var(--t-muted); margin: 0 0 16px; line-height: 1.5; }
.pillar__note--free { color: var(--t-base); }

/* ============================================================
   PLATAFORMAS (Astro / Red) — bloques con "por qué"
   ============================================================ */
.platform { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
.platform__logo { height: 46px; width: auto; margin-bottom: 22px; }
.platform__why {
  border-left: 3px solid var(--line-orange); padding-left: 20px; margin: 22px 0 0;
  font-size: 1.05rem; color: var(--ink-2); font-style: italic;
}
.platform__card {
  border-radius: var(--r-xl); padding: clamp(28px,4vw,48px);
  display: flex; flex-direction: column; gap: 18px; justify-content: center;
  min-height: 280px;
}
.platform__card--astro { background: var(--ink); color: #ECE6DE; }
.platform__card--red { background: #2A1310; color: #F0E2DE; }
.platform__card h3 { font-family: var(--display); font-weight: 600; font-size: 1.7rem; margin: 0; color: #fff; }
.platform__card .muted { color: rgba(255,255,255,0.62); }
.platform__feats { display: flex; flex-wrap: wrap; gap: 9px; }
.platform__feats .badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.12); }

/* ============================================================
   I+D
   ============================================================ */
.id-band { background: var(--ink); color: #ECE6DE; }
.id-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.id-band .h-sec, .id-band .display { color: #fff; }
.id-band .eyebrow { color: var(--orange); }
.id-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.id-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg); padding: 24px;
}
.id-card h4 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin: 0 0 8px; color: #fff; }
.id-card p { font-size: 0.92rem; color: rgba(255,255,255,0.62); margin: 0; }
.id-card__ico { width: 40px; height: 40px; border-radius: var(--r-md); background: rgba(233,110,31,0.16); color: var(--orange); display:grid; place-items:center; margin-bottom: 16px; }
.id-card__ico svg { width: 21px; height: 21px; }

/* ============================================================
   CTA / Suscripción
   ============================================================ */
.cta { background: var(--orange); color: #fff; overflow: hidden; position: relative; }
.cta .display, .cta .h-sec { color: #fff; }
.cta__lead { color: rgba(255,255,255,0.9); }
.news { display: flex; gap: 10px; max-width: 480px; margin: 30px auto 0; flex-wrap: wrap; }
.news input {
  flex: 1; min-width: 220px; padding: 15px 20px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); color: #fff;
  font-family: var(--sans); font-size: 1rem;
}
.news input::placeholder { color: rgba(255,255,255,0.7); }
.news input:focus { outline: none; border-color: #fff; background: rgba(255,255,255,0.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #C9C0B6; padding-block: 64px 36px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: rgba(255,255,255,0.5); }
.footer__col h4 { font-family: var(--display); font-weight: 600; font-size: 0.92rem; color: #fff; margin: 0 0 16px; letter-spacing: 0.04em; }
.footer__col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.94rem; padding: 6px 0; transition: color .18s ease; }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.84rem; color: rgba(255,255,255,0.45);
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { min-height: auto; align-items: flex-end; }
  .hero__bg { left: 0; background-position: 62% 10%; }
  .hero__scrim {
    background:
      radial-gradient(60% 50% at 64% 30%, rgba(20,16,12,0.12) 0%, rgba(20,16,12,0) 60%),
      linear-gradient(180deg, rgba(247,245,241,0) 32%, rgba(247,245,241,0.82) 68%, var(--paper) 100%);
  }
  .hero__inner { padding-top: 46vh; }
  .hero__card { max-width: none; background: rgba(255,255,255,0.84); }
  .hero__brandword { font-size: clamp(2.2rem, 13vw, 5.4rem); bottom: auto; top: 22vh; opacity: 0.5; }
  .hero__caption { display: none; }
  .split, .platform, .id-grid { grid-template-columns: 1fr; }
  .split--rev .split__text { order: 0; }
  .cols-3 { grid-template-columns: 1fr; }
  .id-cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cols-2, .id-cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* ============================================================
   Eventos
   ============================================================ */
.event {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden;
}
.event__media { position: relative; min-height: 320px; }
.event__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; background: #0a0a0a; }
.event__badge {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.94); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 8px 14px;
  font-size: 0.8rem; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm);
}
.event__body { padding: clamp(28px, 3.2vw, 48px); }
.event__stops { display: flex; flex-wrap: wrap; gap: 20px 42px; margin: 24px 0 28px; }
.event__stop { display: flex; flex-direction: column; gap: 4px; }
.event__date { font-family: var(--display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.07em; color: var(--orange); text-transform: uppercase; }
.event__where { font-size: 0.95rem; color: var(--ink-2); line-height: 1.35; }
.event__where strong { color: var(--ink); }
.event__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.evnotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 40px; }

/* Carrusel de eventos */
.ev-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 2px; }
.ev-track::-webkit-scrollbar { display: none; }
.ev-track > .event { flex: 0 0 min(940px, 92%); scroll-snap-align: start; }
.evnote {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  padding: 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.evnote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-orange); }
.evnote__logo {
  flex: none; width: 100px; height: 76px; border-radius: var(--r-md);
  display: grid; place-items: center; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
}
.evnote__logo img { max-width: 84%; max-height: 70%; width: auto; object-fit: contain; }
.evnote__logo--dark { background: #0E0C0A; border-color: #0E0C0A; }
.evnote__logo--dark img { max-width: 86%; max-height: 76%; }
.evnote__logo--fill { padding: 0; border: none; }
.evnote__logo--fill img { max-width: 100%; max-height: 100%; width: 100%; height: 100%; object-fit: cover; }
.evnote__kicker { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.evnote h4 { font-family: var(--display); font-weight: 700; font-size: 1.18rem; margin: 5px 0 8px; color: var(--ink); }
.evnote p { font-size: 0.92rem; color: var(--t-muted); margin: 0; line-height: 1.5; }
@media (max-width: 860px) {
  .event { grid-template-columns: 1fr; }
  .event__media { min-height: 240px; }
  .evnotes { grid-template-columns: 1fr; }
}

/* ============================================================
   Trayectoria — logos de escuelas / empresas
   ============================================================ */
.sec-head--center { text-align: center; display: grid; justify-items: center; }
.school-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.slogo {
  display: grid; place-items: center;
  min-height: 124px; padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.slogo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-orange); }
.slogo img { max-height: 66px; max-width: 100%; width: auto; object-fit: contain; }
.slogo--wide img { max-height: 60px; }
.slogo--dark { background: #0E0C0A; border-color: #0E0C0A; }
@media (max-width: 760px) { .school-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .school-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Videos — muro de YouTube
   ============================================================ */
.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.vcard {
  display: flex; flex-direction: column; padding: 0; margin: 0; background: var(--white); cursor: pointer;
  width: 100%; text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-orange); }
.vcard__cap { display: flex; flex-direction: column; gap: 5px; padding: 16px 18px 18px; }
.vcard__kicker { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.vcard__title { font-family: var(--display); font-weight: 600; font-size: 1.04rem; color: var(--ink); line-height: 1.25; text-wrap: balance; }
.vcard__thumb { position: relative; display: block; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.vcard__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.vcard:hover .vcard__thumb img { transform: scale(1.06); }
.vcard__thumb::after {
  content: "Ver en YouTube ↗";
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(14,12,10,0.82); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 6px 11px; border-radius: var(--r-pill);
  opacity: 0; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease;
}
.vcard:hover .vcard__thumb::after { opacity: 1; transform: none; }
.vcard__play {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(233,110,31,0.94); color: #fff;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.55);
  transition: transform .2s ease, background .2s ease;
}
.vcard__play svg { width: 30px; height: 30px; margin-left: 3px; }
.vcard:hover .vcard__play { transform: scale(1.08); background: var(--orange-deep); }
.vcard__frame { aspect-ratio: 16/9; width: 100%; border: 0; display: block; background: #000; border-radius: var(--r-md); }

/* ============================================================
   Cita destacada
   ============================================================ */
.quoteband { padding-block: clamp(64px, 9vw, 110px); }
.bigquote { max-width: 60ch; margin: 0 auto; position: relative; text-align: center; }
.bigquote__mark {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(4rem, 9vw, 7rem); line-height: 0.7; color: var(--orange);
  margin-bottom: 8px;
}
.bigquote__text {
  margin: 0; font-family: var(--display); font-weight: 500;
  font-size: clamp(1.45rem, 3.1vw, 2.35rem); line-height: 1.32;
  color: #F3ECE3; text-wrap: balance;
}
.bigquote__text strong { color: #fff; font-weight: 700; }
.bigquote__by { display: flex; flex-direction: column; gap: 3px; margin-top: 28px; }
.bigquote__name { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #fff; }
.bigquote__role { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   Botones flotantes: volver arriba + WhatsApp
   ============================================================ */
.fab-stack { position: fixed; right: 20px; bottom: 24px; z-index: 150; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fab { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer; box-shadow: 0 10px 24px -8px rgba(20,16,12,0.35); transition: transform .18s ease, opacity .18s ease, visibility .18s ease; text-decoration: none; }
.fab:hover { transform: translateY(-2px); }
.fab-top { background: #1A1714; color: #fff; opacity: 0; visibility: hidden; transform: translateY(8px); }
.fab-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab-wsp { background: #25D366; color: #fff; }
@media (max-width: 560px) {
  .fab-stack { right: 14px; bottom: 16px; }
  .fab { width: 46px; height: 46px; }
}

/* ============================================================
   Pop-up de bienvenida
   ============================================================ */
.welcome { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.welcome[hidden] { display: none; }
.welcome__backdrop { position: absolute; inset: 0; background: rgba(14,12,10,0.74); backdrop-filter: blur(6px); animation: wfade .3s ease; }
.welcome__dialog {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 300px minmax(0, 1fr);
  width: min(760px, 94vw); height: 430px; max-height: 90vh; overflow: hidden;
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); animation: wpop .35s cubic-bezier(.2,.7,.3,1);
}
.welcome__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255,255,255,0.92); color: var(--ink); border: 1px solid var(--line);
  transition: background .18s ease, transform .18s ease;
}
.welcome__close:hover { background: #fff; transform: rotate(90deg); }
.welcome__video { position: relative; background: #000; height: 100%; overflow: hidden; }
.welcome__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* El mp4 es una grabación de pantalla (navegador + YouTube). Hacemos zoom al área
   de la cara de Fernando para ocultar el entorno. Box ratio 300/430 = 0.698. */
.welcome__vid { position: absolute; left: -142.86%; top: -56.61%; width: 484.57%; height: auto; max-width: none; display: block; background: #000; }
.welcome__sound {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 15px 0 13px; border: 0; cursor: pointer;
  border-radius: var(--r-pill); background: rgba(20,18,16,0.62);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #fff; font: inherit; font-weight: 600; font-size: 0.82rem; letter-spacing: .01em;
  transition: background .18s ease, transform .18s ease;
}
.welcome__sound:hover { background: var(--orange); transform: translateY(-1px); }
.welcome__sound .ic-sound { display: none; }
.welcome__sound.is-on .ic-muted { display: none; }
.welcome__sound.is-on .ic-sound { display: inline; }
.welcome__poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: #000; display: block; overflow: hidden; }
.welcome__poster img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.welcome__poster:hover img { transform: scale(1.05); }
.welcome__playbtn {
  position: absolute; inset: 0; margin: auto;
  width: 74px; height: 74px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(233,110,31,0.95); color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.6);
  transition: transform .2s ease, background .2s ease;
}
.welcome__playbtn svg { width: 34px; height: 34px; margin-left: 3px; }
.welcome__poster:hover .welcome__playbtn { transform: scale(1.08); background: var(--orange-deep); }
.welcome__aside { padding: 38px 36px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.welcome__title { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.12; margin: 4px 0 2px; color: var(--ink); }
.welcome__form { display: flex; gap: 10px; margin-top: 8px; }
.welcome__form input {
  flex: 1; min-width: 0; padding: 13px 16px; font: inherit;
  border: 1px solid var(--line-strong); border-radius: var(--r-pill); background: var(--paper);
}
.welcome__form input:focus { outline: none; border-color: var(--orange); }
.welcome__form .btn { white-space: nowrap; }
.welcome__skip { margin-top: 4px; background: none; border: none; cursor: pointer; align-self: flex-start; padding: 4px 0; color: var(--t-muted); font: inherit; font-weight: 600; font-size: 0.9rem; }
.welcome__skip:hover { color: var(--orange); }
.welcome__yt { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-top: -4px; font-size: 0.82rem; font-weight: 600; color: var(--t-faint); }
.welcome__yt:hover { color: var(--orange); }
@keyframes wfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes wpop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
@media (max-width: 720px) {
  .welcome__dialog { grid-template-columns: 1fr; height: auto; max-height: 94vh; overflow-y: auto; }
  .welcome__video { aspect-ratio: 300 / 430; width: min(220px, 62%); height: auto; min-height: 0; margin: 22px auto 2px; border-radius: 16px; }
  .welcome__aside { padding: 26px 22px 28px; }
  .welcome__form { flex-direction: column; }
  .welcome__form .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .welcome__backdrop, .welcome__dialog { animation: none; }
}

/* ============================================================
   Firma dorada
   ============================================================ */
.signature {
  font-family: "Yellowtail", "Brush Script MT", cursive;
  font-size: clamp(2.3rem, 4.4vw, 3.1rem);
  line-height: 1;
  background: linear-gradient(96deg, #E2C265 0%, #C49A3C 42%, #9C7322 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: #C49A3C;
  display: inline-block;
  transform: rotate(-2deg);
  padding: 0 2px 5px;
}
.signature--sm { font-size: clamp(1.9rem, 3.2vw, 2.4rem); }
.signature-img { display: block; width: clamp(240px, 38vw, 380px); height: auto; }

/* Galería de comidas (sección Fernando) */
.split__media { display: flex; flex-direction: column; gap: 14px; }
.food-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.food-strip figure { margin: 0; }
.food-strip img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.food-strip figcaption { margin-top: 7px; font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--t-faint); font-weight: 700; }

/* ============================================================
   Banda Propósito
   ============================================================ */
.purpose { background: var(--paper-2); border-block: 1px solid var(--line); }
.purpose__inner {
  max-width: 940px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
  padding-block: clamp(58px, 9vw, 108px);
}
.purpose__mark {
  font-family: var(--display); font-size: 3.4rem; line-height: 0.6;
  color: var(--orange); height: 30px;
}
.purpose__quote {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem); line-height: 1.28;
  letter-spacing: -0.012em; color: var(--ink); margin: 0;
  text-wrap: balance;
}
.purpose__sign { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.purpose__sign small { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--t-faint); font-weight: 600; }

/* ============================================================
   Bloque "No es solo un chef"
   ============================================================ */
.notonly { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.notonly li { position: relative; padding-left: 22px; color: var(--t-muted); font-size: 1.02rem; }
.notonly li::before { content: "—"; position: absolute; left: 0; color: var(--line-strong); }
.notonly li.is-key { color: var(--ink); font-weight: 600; margin-top: 6px; padding-left: 22px; }
.notonly li.is-key::before { content: "→"; color: var(--orange); font-weight: 700; }

/* ============================================================
   Mini Gastrowiki (buscador con ejemplos)
   ============================================================ */
.gwiki { display: block; margin-top: 28px; border: 1px solid var(--line-strong); border-radius: var(--r-lg); background: var(--white); padding: 16px; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.gwiki:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--line-orange); }
.gwiki__bar { display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 12px 16px; color: var(--t-muted); }
.gwiki__bar svg { flex: none; color: var(--orange); }
.gwiki__bar span { font-size: 0.96rem; }
.gwiki__cursor { width: 1.5px; height: 18px; background: var(--orange); margin-left: -6px; animation: gwblink 1.1s steps(1) infinite; }
@keyframes gwblink { 50% { opacity: 0; } }
.gwiki__ex { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; }
.gwiki__chip { font-size: 0.82rem; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 12px; }
.gwiki:hover .gwiki__chip { border-color: var(--line); }
.gwiki__foot { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; font-weight: 600; font-size: 0.9rem; color: var(--orange); }
.gwiki__foot svg { transition: transform .2s ease; }
.gwiki:hover .gwiki__foot svg { transform: translateX(3px); }
.gwiki__label { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t-faint); font-weight: 700; margin-bottom: 11px; }
