@import url('colors_and_type.css');

/* ════════════════════════════════════════════════════════════
   ACTUARIA ACADEMY — Landing webinar
   Built on Actuaria Design System tokens.
   Accent palette echoes the Masterclasses invitation:
   navy (brand-800) · indigo (brand-400) · orange (accent-400)
   ════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-family-body);
  color: var(--text-strong);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; }

:root {
  --acad-orange: #E0592A;
  --acad-orange-600: #c8491f;
  --acad-navy: #151f47;
  --acad-indigo: #4c64d9;
  --acad-sky: #a1b0eb;
  --acad-mist: #d0d8f5;
  --acad-peach: #f6dccf;
  --acad-paper: #f4f6fb;
  --acad-maxw: 1160px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; font-size: 16px; font-weight: 600; line-height: 24px;
  border-radius: var(--radius-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: all var(--transition-fast); white-space: nowrap;
}
.btn-primary { background: var(--acad-navy); color: #fff; border-color: var(--acad-navy); }
.btn-primary:hover { background: var(--brand-900); border-color: var(--brand-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--acad-orange); color: #fff; border-color: var(--acad-orange); }
.btn-accent:hover { background: var(--acad-orange-600); border-color: var(--acad-orange-600); transform: translateY(-1px); box-shadow: 0 8px 18px -6px rgba(224,89,42,.5); }
.btn-indigo { background: var(--acad-indigo); color: #fff; border-color: var(--acad-indigo); }
.btn-indigo:hover { background: var(--brand-700); border-color: var(--brand-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--acad-navy); border-color: var(--stroke-brand-weak); }
.btn-ghost:hover { border-color: var(--acad-indigo); color: var(--acad-indigo); background: var(--fill-brand-weak); }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-sm { padding: 9px 18px; font-size: 14px; line-height: 20px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--acad-maxw); margin: 0 auto; padding: 0 48px; }
section { position: relative; }
.eyebrow {
  font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--acad-indigo); margin: 0;
}
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head h2 {
  font-size: 38px; line-height: 46px; font-weight: 600; letter-spacing: -0.8px;
  color: var(--acad-navy); margin: 14px 0 0;
}
.sec-head .lead { font-size: 18px; line-height: 28px; color: var(--text-weak); margin: 18px 0 0; }
.rule {
  width: 64px; height: 4px; border-radius: 2px; margin: 18px auto 0;
  background: linear-gradient(90deg, var(--acad-orange), var(--acad-indigo));
}

/* ---------- Top nav (barra azul única) ---------- */
:root { --header-h: 50px; }
.site-header { position: sticky; top: 0; z-index: 200; }

/* Announcement bar — próxima sesión + CTA */
.topbar { background: var(--acad-navy); color: #fff; box-shadow: var(--shadow-md); }
.topbar__inner { display: flex; align-items: center; gap: 18px; min-height: 50px; padding-top: 7px; padding-bottom: 7px; }
.topbar__ico { display: inline-flex; color: #ff8a5c; flex-shrink: 0; }
.topbar__txt {
  display: inline-flex; align-items: center; gap: 10px; min-width: 0; flex: 1;
  font-size: 13px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.topbar__when { font-weight: 700; letter-spacing: .3px; color: rgba(255,255,255,.92); flex-shrink: 0; }
.topbar__sep { color: rgba(255,255,255,.4); flex-shrink: 0; }
.topbar__title { font-weight: 600; color: #fff; overflow: hidden; text-overflow: ellipsis; }
.topbar__spacer { flex: 0 0 8px; }
.topbar__btn { flex-shrink: 0; padding: 7px 20px; font-size: 13px; line-height: 20px; box-shadow: 0 6px 16px -6px rgba(224,89,42,.6); }

.nav {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--stroke-weak);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.nav__spacer { flex: 1; }
@media (max-width: 760px){
  .topbar__inner { gap: 12px; min-height: 46px; }
  .topbar__txt { font-size: 11.5px; }
  .topbar__when { display: none; }
  .topbar__sep { display: none; }
  .topbar__spacer { display: none; }
  .topbar__btn { padding: 6px 14px; font-size: 12px; line-height: 18px; }
}

/* ---------- Academy lockup ---------- */
.lockup { display: flex; align-items: center; gap: 12px; }
.lockup__mark { flex-shrink: 0; }
.lockup__txt { display: flex; flex-direction: column; line-height: 1; }
.lockup__a { font-weight: 800; letter-spacing: .5px; color: var(--acad-navy); font-size: 19px; }
.lockup__b { font-weight: 800; letter-spacing: .5px; color: var(--acad-navy); font-size: 19px; margin-top: 1px; }
.lockup__sub { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--acad-orange); margin-top: 4px; }

/* ---------- Decorative motif layer ---------- */
.motif { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.motif svg { position: absolute; }
.motif--hidden { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--acad-paper); overflow: hidden; display: flex; flex-direction: column; justify-content: center; min-height: calc(100vh - var(--header-h)); min-height: calc(100svh - var(--header-h)); }
.hero--trama {
  background: url('assets/trama-soft.jpg') center / cover no-repeat, var(--acad-paper);
}
.hero__grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 64px; align-items: center; padding: 76px 0 92px;
}

/* Centered hero (referencia: logo · pill · titular · subtítulo · CTA) */
.hero__center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 1080px; margin: 0 auto; padding: clamp(28px, 5vh, 72px) 0;
}
.hero__logo { height: clamp(82px, 15.5vh, 188px) !important; width: auto; margin: 0 auto; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px; margin: clamp(16px, 3vh, 36px) 0 0;
  padding: 9px 20px; border-radius: var(--radius-pill);
  background: var(--fill-brand-weak); border: 1px solid var(--stroke-brand-weak);
  font-size: clamp(11px, 1.1vw, 13px); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--acad-indigo);
}
.hero__center h1 {
  font-size: clamp(21px, 3.6vw, 44px); line-height: 1.2; font-weight: 800; letter-spacing: -1.2px;
  color: var(--acad-navy); margin: clamp(16px, 2.6vh, 26px) 0 0; max-width: 1100px;
}
.hero__center h1 .hl { display: block; }
.hero__center h1 .accent { color: var(--acad-orange); }
.hero__center .hero__sub {
  font-size: clamp(15px, 1.7vw, 19px); line-height: 1.5; color: var(--text-weak);
  margin: clamp(14px, 2.2vh, 22px) auto 0; max-width: 660px; text-wrap: pretty;
}
.hero__btn { margin-top: clamp(20px, 3.4vh, 36px); }
.hero__center .hero__note {
  flex-direction: row; gap: 22px; margin-top: 20px; justify-content: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--stroke-weak);
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--acad-navy); box-shadow: var(--shadow-sm); width: fit-content;
}
.hero__badge i { width: 8px; height: 8px; border-radius: 2px; background: var(--acad-orange); }
.hero h1 {
  font-size: 52px; line-height: 56px; font-weight: 800; letter-spacing: -1.2px;
  color: var(--acad-navy); margin: 22px 0 0; text-wrap: balance;
}
.hero h1 .accent { color: var(--acad-orange); }
.hero__sub { font-size: 19px; line-height: 30px; color: var(--text-weak); margin: 22px 0 0; max-width: 520px; }
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 34px; }
.hero__note { display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--text-weak); font-weight: 600; }
.hero__note span { display: inline-flex; align-items: center; gap: 8px; }
.hero__note span svg { color: var(--acad-indigo); }

/* Hero visual — Academy banner art (fills box at its own proportion) */
.hero__visual { position: relative; }
.hero__art {
  position: relative; z-index: 1; background: var(--acad-navy); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(21,31,71,.4);
  aspect-ratio: 1083 / 356; display: flex; align-items: center; justify-content: center;
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 980px){ .hero__art { aspect-ratio: 1083 / 356; } }
.shot {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--stroke-weak);
  background: #fff;
}
.shot__frame {
  aspect-ratio: 4 / 3.1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--text-weak);
  background:
    linear-gradient(135deg, rgba(76,100,217,.10), rgba(224,89,42,.08)),
    var(--acad-paper);
}
.shot__frame .ico { width: 56px; height: 56px; color: var(--acad-indigo); opacity: .8; }
.shot__frame .cap { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.shot__bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-top: 1px solid var(--stroke-weak); background: #fff;
}
.shot__bar .live { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--acad-orange); }
.shot__bar .live i { width: 8px; height: 8px; border-radius: 50%; background: var(--acad-orange); animation: pulse 1.6s ease-in-out infinite; }
.shot__bar .meta { margin-left: auto; font-size: 13px; color: var(--text-weak); font-weight: 600; }
@keyframes pulse { 0%,100%{ opacity: 1; transform: scale(1);} 50%{ opacity: .35; transform: scale(.7);} }
/* floating expositor chips on hero visual */
.shot__tag {
  position: absolute; display: flex; align-items: center; gap: 10px; padding: 9px 14px 9px 9px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); border: 1px solid var(--stroke-weak);
}
.shot__tag .av { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; }
.shot__tag .nm { font-size: 13px; font-weight: 700; color: var(--acad-navy); line-height: 1.2; }
.shot__tag .rl { font-size: 11px; color: var(--text-weak); }
.shot__tag--a { top: 22px; left: -28px; }
.shot__tag--b { bottom: 64px; right: -26px; }
@media (max-width: 980px){ .shot__tag { display: none; } }

/* ---------- Info band (date / time / online) ---------- */
.band { background: var(--acad-indigo); color: #fff; position: relative; overflow: hidden; }
.band__grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 30px 0;
}
.band__item { display: flex; align-items: center; gap: 16px; justify-content: center; }
.band__item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.18); }
.band__ico { width: 44px; height: 44px; flex-shrink: 0; color: #fff; }
.band__k { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.band__v { font-size: 18px; font-weight: 700; line-height: 1.3; margin-top: 2px; }
.band__v small { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .3px; }
@media (max-width: 760px){
  .band__grid { grid-template-columns: 1fr; gap: 18px; }
  .band__item { justify-content: flex-start; border-right: none !important; }
}

/* ---------- Generic section spacing ---------- */
.block { padding: 96px 0; }
.block--paper { background: var(--acad-paper); }
.block--navy { background: var(--acad-navy); color: #fff; }
.block--pt-sm { padding-top: 48px; }
.block--pb-sm { padding-bottom: 48px; }

/* ---------- Bienvenida ---------- */
.welcome { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.welcome__body p { font-size: 18px; line-height: 30px; color: var(--text-weak); margin: 20px 0 0; }
.welcome__chips { display: flex; flex-direction: column; gap: 16px; }
.chip-card {
  display: flex; align-items: center; gap: 16px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--stroke-weak); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}
.chip-card__ico { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius-icon-pill); display: flex; align-items: center; justify-content: center; }
.chip-card__k { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-weak); margin-right: 7px; }
.chip-card__v { font-size: 18px; font-weight: 700; color: var(--acad-navy); }

/* ---------- Benefit cards (Lo que obtienes) ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  position: relative; background: #fff; border: 1px solid var(--stroke-weak);
  border-radius: var(--radius-card); padding: 32px 28px 30px; overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit__num { font-size: 15px; font-weight: 800; color: var(--acad-orange); letter-spacing: 1px; }
.benefit__ico { width: 52px; height: 52px; margin: 18px 0 18px; border-radius: var(--radius-icon-pill); background: var(--fill-brand-weak); border: 1px solid var(--stroke-brand-weak); display: flex; align-items: center; justify-content: center; color: var(--acad-indigo); }
.benefit h3 { font-size: 21px; line-height: 28px; font-weight: 700; color: var(--acad-navy); margin: 0 0 10px; }
.benefit p { font-size: 15px; line-height: 24px; color: var(--text-weak); margin: 0; }
.benefit__edge { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--acad-orange), var(--acad-indigo)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-base); }
.benefit:hover .benefit__edge { transform: scaleX(1); }

/* ---------- Próximo evento ---------- */
.event { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: stretch; }
.event__card {
  background: #fff; border: 1px solid var(--stroke-weak); border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.event__top { background: var(--acad-navy); color: #fff; padding: 26px 32px; position: relative; overflow: hidden; }
.event__tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 13px; border-radius: var(--radius-pill); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.event__title { font-size: 28px; line-height: 34px; font-weight: 800; letter-spacing: -.5px; margin: 16px 0 0; position: relative; }
.event__title .accent { color: #ff8a5c; }
.event__body { padding: 28px 32px 32px; }
.event__meta { display: flex; gap: 28px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px dashed var(--stroke-weak); }
.event__meta .k { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-weak); }
.event__meta .v { font-size: 17px; font-weight: 700; color: var(--acad-navy); margin-top: 3px; }
.topics-title { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-weak); margin: 22px 0 16px; }
.topics { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.topic { display: flex; align-items: center; gap: 14px; }
.topic__n { width: 30px; height: 30px; flex-shrink: 0; border-radius: 9px; background: var(--fill-brand-weak); color: var(--acad-indigo); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.topic__t { font-size: 16px; font-weight: 600; color: var(--text-strong); }

/* expositores side */
.experts__title { font-size: 21px; font-weight: 700; color: var(--acad-navy); margin: 0 0 20px; }
.experts__list { display: flex; flex-direction: column; gap: 16px; }
.expert {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  background: #fff; border: 1px solid var(--stroke-weak); border-radius: var(--radius-card); box-shadow: var(--shadow-sm);
}
.expert__photo { width: 64px; height: 64px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.expert__photo svg { width: 32px; height: 32px; opacity: .9; }
.expert__n { font-size: 17px; font-weight: 700; color: var(--acad-navy); }
.expert__r { font-size: 13px; font-weight: 600; letter-spacing: .5px; color: var(--acad-indigo); text-transform: uppercase; margin-top: 3px; }
.expert__d { font-size: 13px; color: var(--text-weak); margin-top: 4px; line-height: 18px; }

/* ---------- Firma líder (40 años) ---------- */
.firma { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.firma__stat {
  position: relative; border-radius: 22px; padding: 48px 40px; color: #fff; overflow: hidden;
  background:
    linear-gradient(155deg, rgba(13,20,52,.86), rgba(21,31,71,.62) 55%, rgba(21,31,71,.78)),
    url('assets/barco-2026.png') center / cover no-repeat,
    var(--acad-navy);
  min-height: 360px; display: flex; flex-direction: column; justify-content: center;
  box-shadow: var(--shadow-xl);
}
.firma__big { font-size: 88px; line-height: .9; font-weight: 800; letter-spacing: -3px; }
.firma__big small { font-size: 30px; font-weight: 700; margin-left: 10px; letter-spacing: -.5px; color: #fff; }
.firma__lbl { font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-top: 14px; }
.firma__divider { height: 1px; background: rgba(255,255,255,.18); margin: 28px 0; }
.firma__mini { display: flex; gap: 28px; }
.firma__mini .n { font-size: 26px; font-weight: 800; }
.firma__mini .d { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 2px; }
.firma__body h2 { font-size: 34px; line-height: 42px; font-weight: 700; letter-spacing: -.6px; color: var(--acad-navy); margin: 0; max-width: 560px; }
.firma__body p { font-size: 18px; line-height: 30px; color: var(--text-weak); margin: 22px 0 0; }
.firma__body p b { color: var(--acad-navy); font-weight: 700; }
.firma__cta { margin-top: 30px; }

/* ════════════════════════════════════════════════════════════
   Invitation-style event card (agency art)
   ════════════════════════════════════════════════════════════ */
.inv {
  position: relative; max-width: 1000px; margin: 0 auto;
  background: #fff; border: 1px solid var(--stroke-weak); border-radius: 26px;
  box-shadow: var(--shadow-xl); overflow: hidden;
}
.inv__motif { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.inv__inner { position: relative; z-index: 1; }

/* header: brand + title (left) + expositores (right) */
.inv__head { display: flex; align-items: stretch; justify-content: space-between; gap: 44px; padding: 44px 48px; }
.inv__headL { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 28px; }
.logo-aa { flex: 0 0 auto; width: auto; max-width: 100%; }
.inv__headL .logo-aa { align-self: flex-start; }
.inv__experts { display: flex; gap: 18px; flex-shrink: 0; }
.inv-expert { width: 152px; text-align: center; }
.inv-expert__ph {
  aspect-ratio: 3 / 3.6; border-radius: 16px; overflow: hidden; background: var(--acad-paper);
  border: 3px solid var(--acad-orange); box-shadow: var(--shadow-md);
}
.inv-expert:nth-child(2) .inv-expert__ph { border-color: var(--acad-navy); }
.inv-expert__ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.inv-expert__n { font-size: 16px; font-weight: 700; color: var(--acad-navy); margin-top: 12px; line-height: 1.2; }
.inv-expert__r { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--acad-orange); margin-top: 4px; }

/* title */
.inv__title { margin-top: 0; }
.inv__title h3 { font-size: 50px; line-height: 50px; font-weight: 800; letter-spacing: -1.4px; color: var(--acad-navy); margin: 0; text-transform: uppercase; }
.inv__title .sub { font-size: 19px; font-weight: 600; color: var(--acad-orange); margin: 14px 0 0; }

/* info band */
.inv__band { margin: 0; background: var(--acad-indigo); color: #fff; }
.inv__band-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.inv__bi { display: flex; align-items: center; gap: 14px; justify-content: center; padding: 22px 18px; }
.inv__bi:not(:last-child) { border-right: 1px solid rgba(255,255,255,.18); }
.inv__bi .ic { width: 40px; height: 40px; flex-shrink: 0; }
.inv__bi-tx { font-size: 15px; line-height: 1.4; }
.inv__bi-tx b { font-weight: 700; }
.inv__bi-tx small { display: block; font-size: 12px; font-weight: 700; color: #fff; margin-top: 1px; }

/* topics */
.inv__topics-wrap { padding: 38px 48px 44px; }
.inv__topics-h { text-align: center; font-size: 22px; font-weight: 700; color: var(--acad-navy); margin: 0 0 28px; }
.inv__topics-h::after { content: ""; display: block; width: 52px; height: 3px; border-radius: 2px; background: var(--acad-orange); margin: 12px auto 0; }
.inv__topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.inv-topic {
  background: var(--acad-orange); color: #fff; border-radius: 16px; padding: 22px 20px;
  display: flex; flex-direction: column; gap: 12px; min-height: 124px;
  box-shadow: 0 8px 16px -8px rgba(224,89,42,.5);
}
.inv-topic__n { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.22); color: #fff; font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.inv-topic p { margin: 0; font-size: 15px; font-weight: 700; line-height: 21px; }
.inv__cta { text-align: center; margin-top: 34px; }

@media (max-width: 760px){
  .inv__head { flex-direction: column; align-items: center; gap: 28px; padding: 32px 24px; text-align: center; }
  .inv__title h3 { font-size: 34px; line-height: 38px; }
  .inv__band-grid { grid-template-columns: 1fr; }
  .inv__bi { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.18); }
  .inv__topics { grid-template-columns: 1fr; }
  .inv__topics-wrap { padding: 32px 24px 36px; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; border: 1px solid var(--stroke-weak); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.faq__item + .faq__item { border-top: 1px solid var(--stroke-weak); }
.faq__q { display: flex; align-items: center; gap: 20px; width: 100%; text-align: left; padding: 24px 28px; background: #fff; border: none; cursor: pointer; font-size: 18px; font-weight: 700; color: var(--acad-navy); transition: background var(--transition-fast); }
.faq__q:hover { background: var(--acad-paper); }
.faq__q .ix { width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px; background: var(--fill-brand-weak); color: var(--acad-indigo); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.faq__q .chev { margin-left: auto; flex-shrink: 0; color: var(--text-weak); transition: transform var(--transition-base); }
.faq__q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq__a { overflow: hidden; transition: max-height var(--transition-slow), opacity var(--transition-base); max-height: 0; opacity: 0; }
.faq__a[data-open="true"] { opacity: 1; }
.faq__a-inner { padding: 0 28px 24px 76px; font-size: 16px; line-height: 26px; color: var(--text-weak); }

/* ---------- ¿Tienes dudas? (contacto) ---------- */
.dudas { text-align: center; }
.dudas__cards { display: flex; gap: 20px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.contact-card {
  display: flex; align-items: center; gap: 16px; padding: 20px 28px; min-width: 280px;
  background: #fff; border: 1px solid var(--stroke-weak); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); transition: transform var(--transition-base), box-shadow var(--transition-base); cursor: pointer; text-align: left;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.contact-card__ico { width: 50px; height: 50px; flex-shrink: 0; border-radius: var(--radius-icon-pill); display: flex; align-items: center; justify-content: center; color: #fff; }
.contact-card__k { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-weak); }
.contact-card__v { font-size: 17px; font-weight: 700; color: var(--acad-navy); margin-top: 2px; }

/* ════════════════════════════════════════════════════════════
   Carrusel de eventos (espacios para arte del equipo gráfico)
   ════════════════════════════════════════════════════════════ */
.carousel { display: flex; align-items: center; justify-content: center; gap: 24px; }
.carousel__viewport {
  flex: 0 1 680px; min-width: 0; aspect-ratio: 900 / 1072;
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--stroke-weak); background: #fff;
}
.carousel__track { display: flex; height: 100%; transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }
.carousel__slide { flex: 0 0 100%; height: 100%; transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1); }
.carousel__slide:not(.is-active) { opacity: 0.35; transform: scale(0.94); }
.carousel__slide.is-active { opacity: 1; transform: scale(1); }
.carousel__slide image-slot { display: block; width: 100%; height: 100%; }
.carousel__arrow {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--acad-navy); border: 1px solid var(--stroke-weak);
  box-shadow: var(--shadow-md); cursor: pointer; transition: all var(--transition-fast);
}
.carousel__arrow:hover { color: var(--acad-indigo); border-color: var(--acad-indigo); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.carousel__arrow:active { transform: translateY(0); }
.carousel__dots { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.carousel__dot {
  width: 10px; height: 10px; border-radius: 50%; padding: 0; cursor: pointer;
  background: var(--acad-mist); border: none; transition: all var(--transition-fast);
}
.carousel__dot:hover { background: var(--acad-sky); }
.carousel__dot.is-active { background: var(--acad-orange); width: 26px; border-radius: 5px; }
.carousel__cta { text-align: center; margin-top: 32px; }
.carousel__cta-btn { font-size: 18px; padding: 16px 44px; box-shadow: 0 12px 26px -8px rgba(224,89,42,.6); }
.carousel__link { display: block; width: 100%; height: 100%; cursor: pointer; }
.carousel__link:hover { opacity: .97; }
@media (max-width: 560px){
  .carousel { gap: 10px; }
  .carousel__arrow { width: 44px; height: 44px; }
}

/* ---------- Cierre del landing ---------- */
.closing {
  position: relative; overflow: hidden;
  background: url('assets/trama-soft.jpg') center / cover no-repeat, var(--acad-paper);
  border-top: 1px solid var(--stroke-weak);
}
.closing__inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; padding: 88px 0 96px;
}
.closing__logo { margin-bottom: 6px; }
.closing__h {
  font-size: 34px; line-height: 42px; font-weight: 700; letter-spacing: -.6px;
  color: var(--acad-navy); margin: 0; max-width: 640px; text-wrap: balance;
}
.closing__p { font-size: 17px; color: var(--text-weak); margin: 0 0 10px; font-weight: 600; }
@media (max-width: 560px){
  .closing__logo { height: 78px !important; }
  .closing__h { font-size: 26px; line-height: 34px; }
}

/* ---------- Footer ---------- */
.footer { background: rgba(0,6,38,.97); color: rgba(255,255,255,.85); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 36px 0 0; flex-wrap: wrap; }
.footer__logo { height: 40px; width: auto; display: block; }
.footer__social { display: flex; gap: 12px; }
.footer__social-ico {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  transition: all var(--transition-fast);
}
.footer__social-ico:hover { background: var(--acad-orange); border-color: var(--acad-orange); transform: translateY(-2px); }
.footer__bottom { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding: 18px 0 28px; }
.footer__legal { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; }

/* ---------- (sin uso) ---------- */

/* ---------- Sticky CTA (always visible) ---------- */
.sticky-cta { position: fixed; right: 28px; bottom: 28px; z-index: 300; }
.sticky-cta .btn { box-shadow: 0 14px 30px -8px rgba(224,89,42,.55), var(--shadow-lg); animation: floatIn .5s var(--transition-base) both; }
@keyframes floatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 640px){
  .sticky-cta { left: 16px; right: 16px; bottom: 16px; }
  .sticky-cta .btn { width: 100%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero__grid, .welcome, .event, .firma { grid-template-columns: 1fr; gap: 40px; }
  .benefits { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; line-height: 44px; }
  .firma__body h2 { font-size: 28px; line-height: 36px; }
  .sec-head h2 { font-size: 30px; line-height: 38px; }
}
@media (max-width: 560px){
  .wrap { padding: 0 20px; }
  .block { padding: 64px 0; }
  .hero h1 { font-size: 33px; line-height: 38px; }
  .hero__center .hero__note { flex-direction: column; gap: 8px; }
}

@media (max-width: 700px){
  .hero { min-height: calc(100vh - var(--header-h)); min-height: calc(100svh - var(--header-h)); }
  .topbar__inner { height: 34px; }
  .topbar__txt { font-size: 12px; }
  .topbar__when { display: none; }
  .topbar__sep { display: none; }
  .hero__center { padding: clamp(24px, 4vh, 56px) 20px; }
  .hero__logo { height: clamp(72px, 11vh, 128px) !important; }
  .hero__center h1 { font-size: clamp(25px, 6.4vw, 34px); line-height: 1.25; margin-top: clamp(14px, 2.4vh, 22px); }
  .hero__center h1 .hl { display: inline; white-space: normal; }
  .hero__center h1 .hl + .hl::before { content: ' '; }
  .hero__center .hero__sub { font-size: clamp(14px, 4vw, 17px); margin-top: clamp(12px, 2vh, 18px); }
  .hero__btn { margin-top: clamp(18px, 3vh, 28px); }

  .carousel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "viewport viewport"
      "prev next";
    column-gap: 16px;
    row-gap: 14px;
    align-items: center;
    justify-items: center;
  }
  .carousel__viewport { grid-area: viewport; width: 100%; flex: none; }
  .carousel__arrow:first-of-type { grid-area: prev; justify-self: end; }
  .carousel__arrow:last-of-type { grid-area: next; justify-self: start; }
}

@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
