/* ===================================================================
   Hospital Bautista — Stylesheet
   Estética: hospitalaria moderna, internacional, minimalista
   Tipografía: Manrope (sans-serif display + body)
   Paleta: ink (azul marino) · brand (cyan) · accent (naranja)
   =================================================================== */

:root{
  --ink: #0B1B33;          /* azul marino profundo */
  --ink-2: #112849;
  --ink-3: #1B3866;
  --brand: #2FB1E1;        /* cyan corporativo */
  --brand-2: #28A3D1;
  --accent: #F49A1F;       /* naranja del edificio */
  --paper: #F6F8FB;
  --paper-2: #EEF3F8;
  --line: rgba(11,27,51,.10);
  --muted: rgba(11,27,51,.62);
}

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

/* ---------- ACCESIBILIDAD AAA ---------- */
:focus-visible{
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip-link{
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  z-index: 100;
  transition: top .2s ease;
}
.skip-link:focus{ top: 16px }
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 1000px){
  .btn, .nav-cta, .top-banner-cta{ min-height: 48px }
  a, button{ min-height: 44px }
}
body{
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Display serif editorial — institucional, refinado */
.display, h1.hero-title, h1.page-title, h2.section-display, h1.huge,
.page-hero h1, .conv-hero h1, .section-header h2,
.invitation-copy h2, .pull-quote blockquote, .tc-date,
.convocatoria-doc h2, .convocatoria-doc h3{
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  
}
.body-bold strong{ font-weight: 600; color: var(--ink) }
a{color:inherit;text-decoration:none}
button{font: inherit; cursor:pointer; border:0; background:none}

/* ---------- TOP BANNER (llamativo) ---------- */
.top-banner{
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink-3) 50%, var(--ink) 100%);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px; font-weight: 500;
  letter-spacing: .01em;
  position: relative; z-index: 31;
  overflow: hidden;
  border-bottom: 1px solid rgba(244,154,31,.25);
}
.top-banner::before{
  content:""; position:absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(244,154,31,.18) 30%, rgba(47,177,225,.18) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  pointer-events: none;
}
@keyframes shimmer{ 0%{ background-position: -100% 0 } 100%{ background-position: 200% 0 } }
.top-banner-inner{
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
}
.top-banner b{ color: var(--accent); font-weight: 800 }
.top-banner .countdown{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,154,31,.18);
  border: 1px solid rgba(244,154,31,.4);
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.top-banner .countdown svg{ width: 14px; height: 14px }
.top-banner-cta{
  background: var(--accent);
  color: var(--ink) !important;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none !important;
  margin-left: 0 !important;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all .2s ease;
}
.top-banner-cta:hover{
  background: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(244,154,31,.4);
}
.top-banner-cta svg{ width: 12px; height: 12px }
.top-banner .pulse-dot{
  display:inline-block; width:10px; height:10px; border-radius:50%;
  background: var(--accent); margin-right: 0; vertical-align:middle;
  position: relative;
  box-shadow: 0 0 0 0 rgba(244,154,31,.6);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot{
  0%{ box-shadow: 0 0 0 0 rgba(244,154,31,.6); transform: scale(1) }
  70%{ box-shadow: 0 0 0 12px rgba(244,154,31,0); transform: scale(1.1) }
  100%{ box-shadow: 0 0 0 0 rgba(244,154,31,0); transform: scale(1) }
}

/* ---------- HEADER / NAV ---------- */
.nav{
  position: sticky; top:0; z-index: 30;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items:center; justify-content:space-between;
  padding: 18px 32px;
}
.logo{
  display:inline-flex; align-items:center;
  flex: 0 0 auto;
  transition: opacity .18s ease;
}
.logo:hover{ opacity: .85 }
.logo img{
  height: 42px;
  width: auto;
  max-width: 320px;
  display: block;
  /* Alineación natural: el borde izquierdo del PNG queda en el eje izquierdo
     del contenido (mismo padding que el hero/grid principal). */
  margin-left: 0;
}
@media (max-width: 1000px){
  .logo img{ height: 38px; max-width: 280px }
}
@media (max-width: 560px){
  .logo img{ height: 32px; max-width: 220px }
}
.nav ul{
  display:flex; gap: 30px; list-style:none; padding:0; margin:0;
  font-size: 14px; font-weight: 500;
}
.nav ul a{ color: var(--ink); opacity:.78 }
.nav ul a:hover{ opacity:1; color: var(--brand) }
.nav ul a.active{ opacity:1; color: var(--brand); font-weight: 600 }
.nav-cta{
  background: var(--ink);
  color:#fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600; font-size: 13.5px;
  letter-spacing:.01em;
  display:inline-flex; align-items:center; gap:8px;
  transition: background .18s ease, transform .18s ease;
}
.nav-cta:hover{ background: var(--brand); transform: translateY(-1px) }
.nav-cta svg{width:14px; height:14px}

/* Hamburger button */
.nav-toggle{
  display: none;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  position: relative;
  align-items: center; justify-content: center;
}
.nav-toggle:hover{ background: var(--paper) }
.nav-toggle span{
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 1px;
  position: absolute; left: 13px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.nav-toggle span:nth-child(1){ top: 16px }
.nav-toggle span:nth-child(2){ top: 23px }
.nav-toggle span:nth-child(3){ top: 30px }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ top: 23px; transform: rotate(45deg) }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0 }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ top: 23px; transform: rotate(-45deg) }

/* Mobile menu drawer */
.mobile-menu{
  display: none;
  position: fixed;
  top: 84px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(11,27,51,.10);
  z-index: 29;
  padding: 24px 20px 28px;
}
.mobile-menu nav{ display: flex; flex-direction: column; gap: 4px }
.mobile-menu nav a{
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: 12px;
  color: var(--ink); font-size: 17px; font-weight: 500;
  min-height: 56px;
  transition: background .15s ease;
}
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible{ background: var(--paper) }
.mobile-menu nav a.active{ color: var(--brand); background: var(--paper-2) }
.mobile-menu-cta{
  margin-top: 12px;
  background: var(--ink); color: #fff !important;
  justify-content: center; font-weight: 600;
}
.mobile-menu-cta:hover, .mobile-menu-cta:focus-visible{ background: var(--brand) !important }
.mobile-menu-cta svg{ width: 18px; height: 18px }
.mobile-menu.is-open{ display: block }
body.menu-open{ overflow: hidden }
@media (max-width: 1000px){
  .nav-toggle{ display: inline-flex }
  .nav-cta .nav-cta-text{ display: none }
  .nav-cta{ padding: 11px 14px }
}

/* ---------- HERO (home — full-screen landing) ---------- */
.hero{
  position: relative;
  background: #FAFCFE;
  overflow:hidden;
  isolation: isolate;
  min-height: 100vh;
  margin-top: -130px; /* compensa banner top + nav sticky para que la imagen cubra desde top */
  padding-top: 130px;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: -2;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(250,252,254,.97) 0%, rgba(250,252,254,.9) 25%, rgba(250,252,254,.55) 45%, rgba(250,252,254,0) 65%);
  z-index: -1;
}
.hero-grid{
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 64px 32px 80px;
  min-height: calc(100vh - 130px);
}
.hero-copy{ max-width: 580px }
.hero-scroll-cue{
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); opacity: .55; font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 1;
}
.hero-scroll-cue::after{
  content:""; width: 1px; height: 32px;
  background: var(--ink);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{ transform: scaleY(0); transform-origin: top }
  50%{ transform: scaleY(1); transform-origin: top }
  51%{ transform-origin: bottom }
  100%{ transform: scaleY(0); transform-origin: bottom }
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  color: var(--brand); text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before{
  content:""; width: 28px; height: 2px; background: var(--accent);
}
h1.hero-title{
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 0.98; letter-spacing: -0.035em;
  font-weight: 600; margin: 0; color: var(--ink); text-wrap: balance;
}
h1.hero-title em{
  font-style: normal;
  color: var(--brand);
  font-weight: 600;
}
.hero-sub{
  margin-top: 28px;
  font-size: 18px; line-height: 1.55;
  color: var(--muted);
  max-width: 480px; text-wrap: pretty;
}
.hero-actions{ margin-top: 40px; display:flex; gap: 14px; flex-wrap:wrap }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .005em;
  transition: all .2s ease;
}
.btn-primary{ background: var(--ink); color:#fff }
.btn-primary:hover{ background: var(--brand); transform: translateY(-1px) }
.btn-ghost{ color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.6) }
.btn-ghost:hover{ border-color: var(--ink); background: #fff }
.btn-accent{ background: var(--accent); color: var(--ink) }
.btn-accent:hover{ background: #fff }
.btn svg{ width: 16px; height: 16px }

/* ---------- PAGE HEADER (otras páginas — AAA contrast) ---------- */
.page-hero{
  position: relative;
  padding: 180px 32px 120px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
  min-height: 520px;
  display: flex; align-items: center;
}
.page-hero::after{
  content:""; position: absolute; inset: 0;
  background-image: var(--page-hero-img, none);
  background-size: cover;
  background-position: right center;
  z-index: -2;
  filter: saturate(.45) brightness(.55);
}
.page-hero::before{
  content:""; position: absolute; inset: 0;
  background:
    /* sólido izquierdo para texto (legibilidad AAA) */
    linear-gradient(90deg, var(--ink) 0%, var(--ink) 28%, rgba(11,27,51,.92) 50%, rgba(11,27,51,.7) 75%, rgba(11,27,51,.4) 100%),
    /* tinte cyan/azul corporativo encima de la imagen */
    linear-gradient(135deg, rgba(11,27,51,.65) 0%, rgba(27,56,102,.55) 60%, rgba(47,177,225,.3) 100%);
  z-index: -1;
}
.page-hero-inner{
  max-width: 1240px; margin: 0 auto;
  width: 100%; position: relative; z-index: 1;
}
.page-hero .eyebrow{
  color: #FBC57E !important; /* tono más claro del accent para AAA contrast sobre ink */
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
}
.page-hero .eyebrow::before{ background: var(--accent); width: 36px; height: 3px }
.page-hero h1{ color: #fff !important; text-shadow: 0 2px 24px rgba(0,0,0,.3) }
.page-hero h1 em{ color: var(--accent) !important; font-style: normal !important }
.page-hero .page-hero-inner .lede,
.page-hero p.lede,
.page-hero .lede{
  color: rgba(255,255,255,.95) !important;
  font-weight: 400; max-width: 640px;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
  font-size: clamp(17px, 1.5vw, 20px);
}
p0; margin: 0 0 28px; max-width: 880px;
  text-wrap: balance;
  
}
.page-hero h1 em{
  font-style: normal; color: var(--brand); font-weight: 600;
}
.page-hero h1 em{ font-style: normal; color: var(--brand) }
.page-hero p.lede{
  margin: 0; max-width: 680px;
  font-size: 18px; line-height: 1.55; color: var(--muted);
}

/* ---------- QUICK CARD ---------- */
.quick{
  position: relative; z-index: 5;
  margin: -90px auto 0;
  max-width: 1240px;
  padding: 0 32px;
}
.quick-card{
  background: var(--ink);
  color:#fff;
  border-radius: 22px;
  padding: 28px 36px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  box-shadow: 0 30px 70px rgba(11,27,51,.25);
  position: relative; overflow:hidden;
}
.quick-card::after{
  content:""; position:absolute; right:-80px; top:-80px;
  width: 240px; height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47,177,225,.22), transparent 60%);
}
.qitem{display:flex; gap:18px; align-items:center; position: relative; z-index: 1}
.qicon{
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(47,177,225,.18);
  display:grid; place-items:center;
  color: var(--brand);
  flex: 0 0 auto;
}
.qicon svg{ width: 22px; height: 22px }
.qlabel{
  font-size: 11px; letter-spacing: .14em; text-transform:uppercase;
  color: rgba(255,255,255,.55); font-weight:600;
}
.qvalue{ font-size: 17px; font-weight: 600; margin-top: 4px; line-height:1.25 }
.qvalue b{ color: var(--brand); font-weight:600 }

/* ---------- SECCIONES GENÉRICAS ---------- */
section{ padding: 0 32px }
.wrap{ max-width: 1240px; margin: 0 auto }
.wrap-narrow{ max-width: 880px; margin: 0 auto }

.section-header{
  display:flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px;
}
p0;
  max-width: 720px; text-wrap: balance;
  
}
p0 }
.section-header h2 em{ font-style: normal; color: var(--brand) }
.section-header p{
  color: var(--muted); max-width: 380px;
  margin: 0; font-size: 15.5px; line-height: 1.55;
}

/* ---------- ESPECIALIDADES ---------- */
.specs{ padding-top: 120px; padding-bottom: 120px }
.spec-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.spec{
  background: var(--paper);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid transparent;
  transition: all .25s ease;
  display:flex; flex-direction:column; gap: 18px;
  min-height: 200px;
}
.spec:hover{
  background: var(--ink);
  color:#fff;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11,27,51,.18);
}
.spec-icon{
  width: 44px; height: 44px; border-radius: 12px;
  background: #fff; display:grid; place-items:center;
  color: var(--brand);
  border: 1px solid var(--line);
  transition: all .25s ease;
}
.spec:hover .spec-icon{ background: var(--brand); color: #fff; border-color: var(--brand) }
.spec-icon svg{ width: 22px; height: 22px }
.spec h3{ margin:0; font-size: 17px; font-weight: 600; letter-spacing:-0.01em }
.spec p{ margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted) }
.spec:hover p{ color: rgba(255,255,255,.7) }

/* ---------- MISIÓN / VISIÓN ---------- */
.mision{
  background: var(--paper);
  padding: 96px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mision-grid{
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.mision-block .label{
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; margin-bottom: 14px;
  display: inline-flex; align-items:center; gap:10px;
}
.mision-block .label::before{
  content:""; width: 24px; height: 2px; background: var(--accent);
}
.mision-block h3{
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 16px; font-weight: 700;
}
.mision-block p{ margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted) }

/* ---------- CONVOCATORIA FEATURE (card oscura destacada) ---------- */
.convocatoria-feature{ padding: 96px 32px; background: #fff }
.conv-card{
  max-width: 1240px; margin: 0 auto;
  background: var(--ink); border-radius: 28px;
  padding: 56px 64px; color: #fff;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.conv-card::before{
  content:""; position:absolute; top:-100px; right:-100px;
  width: 360px; height: 360px; border-radius: 999px;
  background: radial-gradient(circle, rgba(244,154,31,.25), transparent 60%);
}
.conv-card::after{
  content:""; position:absolute; bottom:-80px; left:-80px;
  width: 280px; height: 280px; border-radius: 999px;
  background: radial-gradient(circle, rgba(47,177,225,.18), transparent 60%);
}
.conv-card .label{
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  display: inline-flex; align-items:center; gap:10px;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.conv-card .label::before{
  content:""; width: 24px; height: 2px; background: var(--accent);
}
.conv-card h2{
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 14px; font-weight: 700; position: relative; z-index: 1;
}
.conv-card p{
  margin: 0 0 4px; font-size: 15.5px; line-height: 1.55;
  color: rgba(255,255,255,.75); position: relative; z-index: 1;
}
.conv-card .conv-cta{
  background: var(--accent); color: var(--ink);
  padding: 18px 32px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items:center; gap:10px;
  transition: all .2s ease; position: relative; z-index: 1;
}
.conv-card .conv-cta:hover{ background: #fff; transform: translateY(-1px) }
.conv-card .conv-cta svg{ width: 16px; height: 16px }

/* ---------- CONVOCATORIA DOCUMENTO (página completa) ---------- */
.convocatoria-doc{
  max-width: 720px; margin: 0 auto;
  padding: 64px 56px; background: #fff;
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 30px 80px rgba(11,27,51,.06);
}
.convocatoria-doc h2{
  font-size: 32px; letter-spacing: -.02em; line-height: 1.1;
  margin: 0 0 6px; font-weight: 700; text-align: center;
}
.convocatoria-doc .subtitle{
  text-align: center;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); font-weight: 700;
  padding-bottom: 32px; margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.convocatoria-doc h3{
  font-size: 18px; font-weight: 700; letter-spacing: -.01em;
  margin: 32px 0 10px;
}
.convocatoria-doc p{
  margin: 0 0 18px; font-size: 15.5px; line-height: 1.7; color: var(--ink);
}
.convocatoria-doc strong{ color: var(--ink); font-weight: 700 }
.convocatoria-meta{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin: 32px 0;
}
.convocatoria-meta-item{
  background: var(--paper); padding: 24px; border-radius: 12px;
  border-left: 3px solid var(--accent);
}
.convocatoria-meta-item h4{
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 8px; font-weight: 700;
}
.convocatoria-meta-item p{
  margin: 0 0 6px; font-size: 15px; font-weight: 600; line-height: 1.3;
}
.convocatoria-meta-item small{
  display: block; font-size: 13px; color: var(--muted); line-height: 1.4;
  font-weight: 400;
}
.convocatoria-agenda ol{
  padding-left: 24px; margin: 16px 0 0;
}
.convocatoria-agenda ol li{
  margin-bottom: 10px; font-size: 15px; line-height: 1.55; color: var(--ink);
}
.convocatoria-signature{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; text-align: center; margin-top: 48px;
}
.convocatoria-signature .sig-line{
  height: 60px; border-bottom: 1px solid var(--ink); margin-bottom: 10px;
}
.convocatoria-signature .name{ font-size: 14px; font-weight: 700 }
.convocatoria-signature .role{
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.shareholder-note{
  max-width: 720px; margin: 32px auto 0;
  background: var(--paper); padding: 20px 24px;
  border-left: 3px solid var(--accent); border-radius: 6px;
  font-size: 14px; color: var(--ink); line-height: 1.55;
}

/* ---------- CONTACTO ---------- */
.contact-grid{
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; padding: 0 32px;
}
.contact-info h3{
  font-size: 18px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 20px;
}
.contact-info dl{ margin: 0 0 32px }
.contact-info dt{
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; margin-bottom: 6px;
}
.contact-info dd{
  margin: 0 0 14px; font-size: 15.5px; line-height: 1.55; color: var(--ink);
}
.contact-info a{ color: var(--brand); border-bottom: 1px solid transparent }
.contact-info a:hover{ border-color: var(--brand) }

.contact-form{
  background: var(--paper); border-radius: 18px;
  padding: 36px;
}
.contact-form h3{
  font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 24px;
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.form-group{ margin-bottom: 16px }
.form-label{
  display: block; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 6px;
}
.form-input, .form-textarea, .form-select{
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
  font: inherit; color: var(--ink);
  transition: border-color .18s, box-shadow .18s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus{
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47,177,225,.18);
}
.form-textarea{ min-height: 120px; resize: vertical }
.form-success{
  background: #e8f6ed; color: #1d5b34;
  padding: 14px 18px; border-radius: 10px; margin-bottom: 20px;
  font-size: 14px;
}
.form-error{
  background: #fcebea; color: #8b2a1f;
  padding: 14px 18px; border-radius: 10px; margin-bottom: 20px;
  font-size: 14px;
}

/* ---------- EMERGENCIAS BAND ---------- */
.emergency{
  padding: 64px 32px;
  background: var(--ink);
  color: #fff;
  position: relative; overflow:hidden;
}
.emergency::before{
  content:""; position:absolute; left:-200px; top:-200px;
  width: 600px; height: 600px; border-radius: 999px;
  background: radial-gradient(circle, rgba(47,177,225,.18), transparent 60%);
}
.emergency-inner{
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 48px; align-items: center; position:relative; z-index:2;
}
.pulse{
  width: 88px; height: 88px; border-radius: 999px;
  background: var(--brand);
  display:grid; place-items:center; color:#fff;
  position: relative; flex: 0 0 auto;
}
.pulse::before, .pulse::after{
  content:""; position:absolute; inset:0; border-radius: 999px;
  border: 2px solid var(--brand);
  animation: pulse 2.4s ease-out infinite;
}
.pulse::after{ animation-delay: 1.2s }
@keyframes pulse{
  0%{ transform: scale(1); opacity: .7 }
  100%{ transform: scale(1.8); opacity: 0 }
}
.pulse svg{ width: 38px; height: 38px }
.emergency h3{
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 6px; font-weight: 600; letter-spacing: -0.015em;
  line-height: 1.15;
}
.emergency p{ margin: 0; color: rgba(255,255,255,.65); font-size: 14.5px }
.emergency .phone{
  color: var(--brand); font-weight: 700; font-size: 28px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items:center; gap: 12px;
  text-decoration: none;
}
.emergency .phone:hover{ color: #fff }

/* ---------- FOOTER ---------- */
.site-footer{
  background: #fff;
  padding: 96px 32px 40px;
}
.foot-grid{
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.foot-grid h4{
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(11,27,51,.5); margin: 0 0 18px; font-weight: 600;
}
.foot-grid .big{
  font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.3; max-width: 380px; color: var(--ink);
}
.foot-grid .big em{ color: var(--brand); font-style:normal }
.foot-grid p{ margin: 0; line-height: 1.7; color: var(--muted); font-size: 14.5px }
.foot-grid a{ color: var(--ink); display:block; padding: 4px 0; font-size: 14.5px }
.foot-grid a:hover{ color: var(--brand) }
.foot-bottom{
  max-width: 1240px; margin: 32px auto 0;
  display:flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--muted);
}
.foot-bottom .socials{ display:flex; gap: 14px }
.foot-bottom .socials a{
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--line);
  display:grid; place-items:center; color: var(--ink);
}
.foot-bottom .socials a:hover{ background: var(--ink); color:#fff; border-color: var(--ink) }
.foot-bottom .socials svg{ width: 14px; height: 14px }

/* ====================================================================
   CONVOCATORIA — experiencia tipográfica grande + interacciones
   ==================================================================== */

/* Countdown hero */
.conv-hero{
  background: var(--ink);
  color: #fff;
  padding: 120px 32px 96px;
  position: relative; overflow: hidden;
  min-height: 80vh;
  display: flex; align-items: center;
}
.conv-hero::before{
  content:""; position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,154,31,.22), transparent 60%);
  pointer-events: none;
}
.conv-hero::after{
  content:""; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,177,225,.18), transparent 60%);
  pointer-events: none;
}
.conv-hero-inner{
  max-width: 1240px; margin: 0 auto;
  position: relative; z-index: 1;
  width: 100%;
}
.conv-eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(244,154,31,.15);
  border: 1px solid rgba(244,154,31,.4);
  padding: 8px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 32px;
}
.conv-eyebrow .pulse-dot{
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(244,154,31,.6);
  animation: pulseDot 2s ease-out infinite;
}
p0; margin: 0 0 28px;
  text-wrap: balance;
  max-width: 18ch;
  
}
p0;
}
.conv-hero h1 .underline{
  background-image: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  background-size: 100% 8px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 6px;
}
.conv-hero .lede{
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5; max-width: 720px;
  color: rgba(255,255,255,.78);
  margin: 0 0 48px; font-weight: 400;
}
.conv-hero .lede strong{ color: #fff; font-weight: 700 }

/* Countdown */
.countdown-wrap{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 40px; max-width: 720px;
}
.countdown-cell{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 24px 16px; border-radius: 16px;
  text-align: center;
  transition: all .25s ease;
}
.countdown-cell:hover{
  background: rgba(244,154,31,.08);
  border-color: rgba(244,154,31,.4);
  transform: translateY(-2px);
}
p0; line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  display: block;
  
  font-feature-settings: "tnum";
}
.countdown-label{
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 600;
  margin-top: 8px;
}

/* CTAs en hero */
.conv-cta-row{
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px;
}
.conv-cta-row .btn{
  font-size: 15px; padding: 18px 28px;
}
.conv-cta-row .btn-accent{
  background: var(--accent); color: var(--ink); font-weight: 700;
}
.conv-cta-row .btn-accent:hover{ background: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244,154,31,.4) }
.conv-cta-row .btn-outline-light{
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.3);
}
.conv-cta-row .btn-outline-light:hover{ background: #fff; color: var(--ink); border-color: #fff }

/* Stats animadas */
.conv-stats{
  background: var(--paper);
  padding: 96px 32px;
  border-bottom: 1px solid var(--line);
}
.stats-grid{
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-cell{
  text-align: left;
  border-left: 3px solid var(--brand);
  padding: 16px 0 16px 24px;
}
.stat-cell:nth-child(2){ border-color: var(--accent) }
.stat-cell:nth-child(3){ border-color: var(--brand) }
.stat-cell:nth-child(4){ border-color: var(--accent) }
p0; letter-spacing: -0.02em;
  line-height: 1; color: var(--ink);
  display: block;
  
  font-feature-settings: "tnum";
}
.stat-label{
  margin-top: 12px;
  font-size: 14px; line-height: 1.4; color: var(--muted);
}

/* Reveal on scroll */
[data-reveal]{
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible{
  opacity: 1; transform: translateY(0);
}
[data-reveal][data-delay="1"]{ transition-delay: .1s }
[data-reveal][data-delay="2"]{ transition-delay: .2s }
[data-reveal][data-delay="3"]{ transition-delay: .3s }
[data-reveal][data-delay="4"]{ transition-delay: .4s }

/* INVITACIÓN A PARTICIPAR (convocatoria.php) — original */
.invitation{
  padding: 96px 32px;
  background: #fff;
}
.invitation-grid{
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 64px; align-items: center;
}
p0; text-wrap: balance;
  
}
p0 }
.invitation-copy p{
  margin: 0 0 16px; font-size: 17px; line-height: 1.6;
  color: var(--ink);
}
.invitation-quote{
  margin-top: 32px; padding: 24px 28px;
  background: var(--paper); border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  font-size: 17px; line-height: 1.55; color: var(--ink);
}
.invitation-quote strong{ color: var(--brand); font-weight: 700 }
.invitation-image{
  border-radius: 18px; overflow: hidden;
  background: var(--paper-2); aspect-ratio: 4/3;
  display:grid; place-items:center; padding: 48px;
  color: var(--brand);
}
.invitation-image svg{ width: 100%; max-width: 280px; height: auto }

/* ---------- POR QUÉ ES IMPORTANTE PARTICIPAR ---------- */
.reasons{
  padding: 96px 32px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reasons-list{
  max-width: 880px; margin: 40px auto 0;
}
.reason{
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.reason:last-child{ border-bottom: none }
.reason-icon{
  width: 56px; height: 56px; border-radius: 14px;
  background: #fff; display:grid; place-items:center;
  color: var(--brand); border: 1px solid var(--line);
}
.reason-icon svg{ width: 26px; height: 26px }
.reason p{
  margin: 0; font-size: 17px; line-height: 1.45;
  color: var(--ink); font-weight: 500;
}
.recommendation-card{
  max-width: 880px; margin: 48px auto 0;
  background: var(--ink); color: #fff;
  border-radius: 18px; padding: 28px 32px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 24px; align-items: center;
}
.recommendation-card .ricon{
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(47,177,225,.18);
  display:grid; place-items:center; color: var(--brand);
}
.recommendation-card .ricon svg{ width: 28px; height: 28px }
.recommendation-card p{
  margin: 0; font-size: 16px; line-height: 1.5;
  color: rgba(255,255,255,.85);
}
.recommendation-card strong{ color: #fff; font-weight: 700 }
.recommendation-card em{ color: var(--brand); font-style: normal; font-weight: 600 }

/* ---------- MECÁNICA DE PARTICIPACIÓN (2 convocatorias) ---------- */
.mecanica{
  padding: 96px 32px; background: #fff;
}
.mecanica-cards{
  max-width: 1240px; margin: 40px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mec-card{
  background: var(--paper); border-radius: 18px;
  padding: 36px; border-left: 4px solid var(--brand);
  position: relative;
}
.mec-card.second{ border-left-color: var(--accent) }
.mec-num{
  position: absolute; top: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display:grid; place-items:center;
  font-size: 18px; font-weight: 800;
}
.mec-card.second .mec-num{ background: var(--accent); color: var(--ink) }
.mec-label{
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); font-weight: 700; margin-bottom: 8px;
}
.mec-card.second .mec-label{ color: var(--accent) }
.mec-card h3{
  font-size: 22px; font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 24px;
}
.mec-table{ width: 100%; font-size: 14.5px }
.mec-table tr{ border-bottom: 1px solid var(--line) }
.mec-table tr:last-child{ border-bottom: none }
.mec-table td{ padding: 12px 0; vertical-align: top; line-height: 1.5 }
.mec-table td:first-child{
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); font-weight: 700;
  width: 90px; padding-right: 16px;
}
.mec-card.second .mec-table td:first-child{ color: var(--accent) }
.mec-table td:last-child{ color: var(--ink); font-weight: 500 }

/* ---------- DESARROLLO GENERAL DE LA SESIÓN ---------- */
.session-flow{
  max-width: 880px; margin: 64px auto 0;
  background: var(--ink); color: #fff;
  border-radius: 18px; padding: 36px 40px;
}
.session-flow h3{
  font-size: 20px; font-weight: 700; margin: 0 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.session-flow h3::before{
  content:""; width: 6px; height: 24px; background: var(--accent);
  border-radius: 3px;
}
.session-flow ul{
  list-style: none; padding: 0; margin: 0;
}
.session-flow li{
  padding: 10px 0 10px 28px; position: relative;
  font-size: 15px; color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.session-flow li:last-child{ border-bottom: none }
.session-flow li::before{
  content:""; position: absolute; left: 0; top: 16px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- AGENDA INTERACTIVA (accordion) ---------- */
.agenda-accordion{
  max-width: 960px; margin: 56px auto 0;
  border-top: 1px solid var(--line);
}
.agenda-acc-item{
  border-bottom: 1px solid var(--line);
}
.agenda-acc-trigger{
  width: 100%;
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 24px;
  padding: 28px 0;
  background: none; border: 0;
  text-align: left; cursor: pointer;
  font: inherit; color: inherit;
  transition: opacity .2s ease;
}
.agenda-acc-trigger:hover{ opacity: .7 }
.agenda-acc-trigger:hover .agenda-acc-num{
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.agenda-acc-num{
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; font-weight: 500;
  color: var(--muted); background: transparent;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
  transition: all .25s ease;
}
p0; letter-spacing: -0.01em;
  line-height: 1.35;
}
.agenda-acc-icon{
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: transform .3s ease;
}
.agenda-acc-icon svg{ width: 20px; height: 20px }
.agenda-acc-item.is-open .agenda-acc-icon{ transform: rotate(45deg) }
.agenda-acc-item.is-open .agenda-acc-num{ background: var(--ink); color: #fff }
.agenda-acc-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 0 0 80px;
}
.agenda-acc-item.is-open .agenda-acc-content{
  max-height: 500px;
  padding: 0 0 28px 80px;
}
.agenda-acc-content p{
  margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted);
  max-width: 720px;
}

/* TIMELINE de las 2 convocatorias */
.timeline-wrap{
  max-width: 1080px; margin: 56px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.timeline-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px; padding: 40px;
  position: relative;
  transition: all .3s ease;
  cursor: default;
}
.timeline-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(11,27,51,.10);
  border-color: var(--brand);
}
.timeline-card.second:hover{ border-color: var(--accent) }
.tc-badge{
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.timeline-card.second .tc-badge{ background: var(--accent); color: var(--ink) }
p0; letter-spacing: -0.02em;
  line-height: 1.05; margin: 0 0 6px;
  
}
.tc-time{
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px; font-weight: 500;
  font-style: normal; color: var(--brand); margin: 0 0 28px;
}
.timeline-card.second .tc-time{ color: var(--accent) }
.tc-detail{
  display: flex; gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.tc-detail:first-of-type{ border-top: 0; padding-top: 0 }
.tc-icon{
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--paper); flex: 0 0 auto;
  display: grid; place-items: center;
  color: var(--ink);
}
.tc-icon svg{ width: 16px; height: 16px }
.tc-detail-label{
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 4px;
}
.tc-detail-value{ font-size: 15px; line-height: 1.45; color: var(--ink); font-weight: 500 }

/* Sticky download bar */
.sticky-download{
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: #fff;
  border-radius: 999px; padding: 12px 12px 12px 24px;
  display: inline-flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 60px rgba(11,27,51,.4);
  z-index: 25;
  font-size: 14px; font-weight: 600;
  opacity: 0; transform: translate(-50%, 100px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.sticky-download.is-visible{
  opacity: 1; transform: translate(-50%, 0);
  pointer-events: auto;
}
.sticky-download .sd-btn{
  background: var(--accent); color: var(--ink);
  padding: 10px 20px; border-radius: 999px;
  font-weight: 800; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s ease;
}
.sticky-download .sd-btn:hover{ background: #fff }
.sticky-download .sd-btn svg{ width: 14px; height: 14px }

/* Quote pull */
.pull-quote{
  background: var(--paper);
  padding: 96px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pull-quote-inner{
  max-width: 1080px; margin: 0 auto; text-align: center;
}
h0; margin: 0;
  text-wrap: balance;
  
  max-width: 22ch; margin: 0 auto;
}
.pull-quote blockquote em{
  font-style: normal; color: var(--brand); font-weight: 600;
}
.pull-quote blockquote .ac{ color: var(--accent); font-style: italic; font-weight: 500 }

/* AGENDA NUMERADA (estilo PDF — legacy, mantener si se usa) */
.agenda-section{
  padding: 96px 32px; background: var(--paper);
  border-top: 1px solid var(--line);
}
.agenda-grid{
  max-width: 1080px; margin: 40px auto 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}
.agenda-item{
  display: grid; grid-template-columns: 56px 1fr;
  gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.agenda-num{
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--brand);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800; color: var(--brand);
  background: #fff;
}
.agenda-item p{
  margin: 0; font-size: 14.5px; line-height: 1.4;
  color: var(--ink); font-weight: 500;
}

/* ---------- DOWNLOAD CARD ---------- */
.download-card{
  max-width: 880px; margin: 56px auto;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  border-radius: 22px; padding: 44px 48px; color: #fff;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.download-card::before{
  content:""; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,154,31,.3), transparent 60%);
}
.download-card .dl-icon{
  width: 72px; height: 72px; border-radius: 16px;
  background: rgba(244,154,31,.18);
  display:grid; place-items:center; color: var(--accent);
  position: relative; z-index: 1;
}
.download-card .dl-icon svg{ width: 36px; height: 36px }
.download-card .dl-text{ position: relative; z-index: 1 }
.download-card h3{
  font-size: 22px; font-weight: 700; margin: 0 0 6px; letter-spacing: -.01em;
}
.download-card p{ margin: 0; font-size: 14.5px; color: rgba(255,255,255,.7) }
.download-card .dl-btn{
  background: var(--accent); color: var(--ink);
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items:center; gap: 10px;
  transition: all .2s ease; position: relative; z-index: 1;
}
.download-card .dl-btn:hover{ background: #fff }
.download-card .dl-btn svg{ width: 16px; height: 16px }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px){
  .top-banner{ font-size: 12px; padding: 8px 12px }
  .top-banner a{ display:block; margin: 4px 0 0 0 }
  .quick-card{ grid-template-columns: 1fr; gap: 18px; padding: 24px }
  .specs{ padding-top: 80px }
  .spec-grid{ grid-template-columns: repeat(2, 1fr) }
  .section-header{ flex-direction: column; align-items: flex-start; gap: 16px }
  .mision-grid{ grid-template-columns: 1fr; gap: 32px }
  .conv-card{ grid-template-columns: 1fr; padding: 40px 32px; gap: 24px }
  .convocatoria-doc{ padding: 40px 28px }
  .convocatoria-meta{ grid-template-columns: 1fr }
  .convocatoria-signature{ grid-template-columns: 1fr; gap: 32px }
  .emergency-inner{ grid-template-columns: 1fr; text-align: center; justify-items:center }
  .foot-grid{ grid-template-columns: 1fr; gap: 32px }
  .contact-grid{ grid-template-columns: 1fr; gap: 32px }
  .nav ul{ display:none }
  .hero{ min-height: 100vh }
  .hero::after{ background-position: center bottom; background-size: cover }
  .hero::before{ background: linear-gradient(180deg, rgba(250,252,254,.92) 0%, rgba(250,252,254,.7) 30%, rgba(250,252,254,.2) 50%, rgba(250,252,254,0) 65%) }
  .hero-grid{ padding: 32px 24px 0; align-items: flex-start; min-height: calc(100vh - 130px) }
  .hero-copy{ padding-top: 8px }
  .hero-scroll-cue{ display: none }
  .page-hero{ padding: 64px 32px 56px }
  .invitation-grid{ grid-template-columns: 1fr; gap: 32px }
  .invitation-image{ aspect-ratio: 16/9; padding: 32px }
  .mecanica-cards{ grid-template-columns: 1fr; gap: 16px }
  .agenda-grid{ grid-template-columns: 1fr; gap: 0 }
  .download-card{ grid-template-columns: 1fr; gap: 20px; padding: 32px; text-align: center }
  .download-card .dl-icon{ margin: 0 auto }
  .recommendation-card{ grid-template-columns: 1fr; gap: 16px; padding: 24px; text-align: center }
  .recommendation-card .ricon{ margin: 0 auto }
  .conv-hero{ padding: 80px 24px 64px; min-height: auto }
  .countdown-wrap{ grid-template-columns: repeat(2, 1fr); gap: 12px }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 24px }
  .timeline-wrap{ grid-template-columns: 1fr; gap: 16px }
  .agenda-acc-trigger{ grid-template-columns: 44px 1fr auto; gap: 16px; padding: 22px 0 }
  .agenda-acc-num{ width: 40px; height: 40px; font-size: 15px }
  .agenda-acc-content{ padding-left: 60px }
  .agenda-acc-item.is-open .agenda-acc-content{ padding-left: 60px }
  .pull-quote{ padding: 64px 24px }
  .sticky-download{ font-size: 12px; padding: 8px 8px 8px 16px; gap: 10px; bottom: 16px }
  .sticky-download .sd-btn{ font-size: 11px; padding: 8px 14px }
}
@media (max-width: 560px){
  .spec-grid{ grid-template-columns: 1fr }
  .nav-inner{ padding: 16px 20px }
  section, .site-footer{ padding-left: 20px; padding-right: 20px }
  .hero-grid{ padding-left: 20px; padding-right: 20px }
  .quick{ padding: 0 20px }
  .conv-card{ padding: 32px 24px }
  .form-row{ grid-template-columns: 1fr }
}
