/* ================================================================
   ILC · Propuesta 5 · Clásico revisado
   Base CCG pero con logo real, imágenes reales, todas las secciones.
   Paleta: azul marino #1D3557 · bermellón #C1272D
           crema #F4F1E8 · blanco #FDFDFB
   Fuentes: Playfair Display (serif display) + Source Sans 3 (UI)
================================================================ */

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

:root {
  --navy:        #1D3557;
  --navy-dark:   #122340;
  --navy-mid:    #2C4D78;
  --red:         #C1272D;
  --red-dark:    #961E22;
  --cream:       #F4F1E8;
  --cream-dark:  #EAE6D6;
  --white:       #FDFDFB;
  --border:      #DDD9CC;
  --border-lt:   #EDEAE3;
  --text:        #1a1a1a;
  --text-mid:    #444;
  --text-light:  #777;
  --serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:        'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ================================================================
   TOPBAR
================================================================ */
.topbar {
  background: var(--navy-dark);
  padding: 0.5rem 0;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar-parent { color: rgba(255,255,255,0.55); }
.topbar-nav { display: flex; gap: 1.5rem; }
.topbar-nav a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.topbar-nav a:hover { color: #fff; }

/* ================================================================
   CABECERA
================================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-logo {
  height: 80px;
  width: auto;
  display: block;
}

.header-search { display: flex; border: 1.5px solid var(--border); overflow: hidden; transition: border-color 0.2s; }
.header-search:focus-within { border-color: var(--navy); }
.search-input {
  border: none;
  background: var(--cream);
  padding: 0.55rem 1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  min-width: 220px;
  outline: none;
  color: var(--text);
}
.search-btn {
  border: none;
  background: var(--navy);
  color: #fff;
  padding: 0 1.2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--navy-dark); }

/* ================================================================
   NAVEGACIÓN
================================================================ */
.main-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(18,35,64,0.3);
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-list li { position: relative; }
.nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-list li a:hover { color: #fff; border-bottom-color: #fff; }
.dn { font-size: 0.6rem; opacity: 0.6; }

.subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--red);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  min-width: 240px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  z-index: 300;
}
.subnav li a {
  display: block !important;
  padding: 0.75rem 1.3rem !important;
  font-size: 0.84rem !important;
  color: var(--text-mid) !important;
  border-bottom: 1px solid var(--border-lt) !important;
  border-bottom-color: var(--border-lt) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}
.subnav li:last-child a { border-bottom: none !important; }
.subnav li a:hover { color: var(--navy) !important; background: var(--cream) !important; border-bottom-color: var(--border-lt) !important; }
.has-sub:hover .subnav { display: block; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px, 60vh, 600px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy-dark);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) saturate(0.75);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,35,64,0.05) 0%,
    rgba(18,35,64,0.3) 40%,
    rgba(18,35,64,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
  color: #fff;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.38rem 0.9rem;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-bottom: 1rem;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.82rem 2rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-caption {
  position: relative;
  z-index: 2;
  background: rgba(18,35,64,0.7);
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-caption span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ================================================================
   SECCIONES — BASE
================================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); }

.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}
.section-label--light { color: rgba(255,255,255,0.55); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title--light { color: #fff; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.section-head--light { border-bottom-color: rgba(255,255,255,0.12); }

.section-more {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: opacity 0.2s;
  white-space: nowrap;
}
.section-more:hover { opacity: 0.7; }

/* ================================================================
   INTRO + NOTICIAS
================================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 3rem; } }

.intro-lead {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.drop-cap {
  float: left;
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 0.8;
  padding: 0.25rem 0.65rem 0 0;
  color: var(--red);
}
.intro-body {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.intro-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.text-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--red); border-color: var(--red); }

/* Panel noticias */
.news-panel { border-top: 2px solid var(--red); }
.news-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.news-panel-head h3 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.news-panel-head a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.news-panel-head a:hover { color: var(--red); }

.news-item {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-lt);
  transition: padding-left 0.2s;
}
.news-item--last { border-bottom: none; }
.news-item:hover { padding-left: 0.4rem; }
.news-cat {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: #fdecea;
  padding: 0.15rem 0.5rem;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.news-date {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  display: inline-block;
  margin-left: 0.5rem;
  margin-bottom: 0.3rem;
}
.news-item h4 {
  font-family: var(--serif);
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  transition: color 0.2s;
}
.news-item:hover h4 { color: var(--navy); }

/* ================================================================
   CIFRAS
================================================================ */
.stats-band {
  background: var(--navy);
  padding: 2.8rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  text-align: center;
  gap: 0;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-sep { display: none; }
}
.stat { padding: 0.5rem 1.5rem; }
.stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-n sup { font-size: 1.1rem; }
.stat-l {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
}
.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ================================================================
   ÁREAS
================================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.area-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-lt);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(29,53,87,0.12); }
.area-img { height: 190px; overflow: hidden; }
.area-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.area-card:hover .area-img img { transform: scale(1.05); }
.area-body {
  padding: 1.4rem 1.5rem 1.7rem;
  border-top: 3px solid var(--navy);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.area-label {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  display: block;
}
.area-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.area-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.area-cta {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}
.area-card:hover .area-cta { color: var(--red); }

/* ================================================================
   SEDES
================================================================ */
.sedes-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) { .sedes-layout { grid-template-columns: 1fr; } }

.sedes-photo { position: relative; }
.sedes-photo img { width: 100%; height: 420px; object-fit: cover; }
.sedes-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(18,35,64,0.82);
  color: #fff;
  padding: 0.9rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.sedes-photo-caption strong { font-family: var(--serif); font-size: 1rem; }
.sedes-photo-caption span { font-size: 0.76rem; opacity: 0.7; letter-spacing: 0.04em; }

.sedes-intro {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.sedes-list { border-top: 2px solid var(--navy); }
.sedes-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-lt);
}
.sedes-list li:last-child { border-bottom: 2px solid var(--red); }
.sede-num {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  min-width: 22px;
}
.sedes-list li strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.sedes-list li span {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

/* ================================================================
   PUBLICACIONES
================================================================ */
.pubs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.3rem;
}
@media (max-width: 900px) { .pubs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .pubs-grid { grid-template-columns: repeat(2, 1fr); } }

.pub-card { display: block; transition: transform 0.25s; }
.pub-card:hover { transform: translateY(-5px); }
.pub-cover {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.1rem;
  margin-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}
.pub-cover::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.pc-1 { background: linear-gradient(145deg, #122340 0%, #1D3557 100%); }
.pc-2 { background: linear-gradient(145deg, #2c1800 0%, #5a3200 100%); }
.pc-3 { background: linear-gradient(145deg, #1a001a 0%, #3d003d 100%); }
.pc-4 { background: linear-gradient(145deg, #001a2c 0%, #003a5a 100%); }
.pc-5 { background: linear-gradient(145deg, #0d1a00 0%, #1e3d00 100%); }
.pc-col {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
}
.pc-tit {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.pc-yr {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--sans);
  position: relative;
  z-index: 1;
}
.pub-info strong {
  display: block;
  font-family: var(--serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.pub-info span { font-size: 0.75rem; color: var(--text-light); }

/* ================================================================
   AGENDA
================================================================ */
.agenda-list {
  border-top: 2px solid var(--navy);
}
.evento {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-lt);
  transition: padding-left 0.25s, background 0.2s;
  cursor: pointer;
}
.evento:hover { padding-left: 0.8rem; background: var(--cream); }
.ev-date { text-align: center; min-width: 56px; flex-shrink: 0; }
.ev-day {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.ev-month {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.ev-body { flex: 1; }
.ev-tipo {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.3rem;
}
.ev-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.evento:hover .ev-body h3 { color: var(--red); }
.ev-body p { font-size: 0.82rem; color: var(--text-light); }
.ev-arrow {
  font-size: 1.3rem;
  color: var(--border);
  transition: color 0.2s, transform 0.2s;
  margin-right: 0.5rem;
}
.evento:hover .ev-arrow { color: var(--red); transform: translateX(4px); }

/* ================================================================
   SERVICIOS INSTITUCIONALES
================================================================ */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .servicios-grid { grid-template-columns: 1fr; } }

.serv-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  padding: 2rem;
  color: #fff;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.serv-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}
.serv-icon { color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; }
.serv-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.serv-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.3rem;
}
.serv-link {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 0.2s;
}
.serv-card:hover .serv-link { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.55); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  height: 62px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 1.3rem;
}
.footer-addr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
}
.footer-addr a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-addr a:hover { color: #fff; }
.footer-redes {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.footer-redes a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-redes a:hover { color: #fff; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 768px) {
  .main-nav .nav-list { overflow-x: auto; flex-wrap: nowrap; }
  .main-nav .nav-list li a { white-space: nowrap; }
  .hero-title { font-size: 2.2rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .pubs-grid { grid-template-columns: repeat(3, 1fr); }
  .evento { gap: 1.2rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .areas-grid { grid-template-columns: 1fr; }
  .pubs-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-links { flex-direction: column; gap: 1rem; }
}
