/* ============================================================
   IV CONGRESO ANPRA – Styles
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Open Sans', sans-serif; color: #1a1a1a; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }

/* ── VARIABLES ── */
:root {
  --navy:    #0b1a2e;
  --navy2:   #0d2040;
  --red:     #d62b2b;
  --red-h:   #b82323;
  --gray-bg: #f4f4f4;
}

/* ── BOTONES GLOBALES ── */
.btn-red {
  background-color: var(--red);
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border-radius: 4px;
  transition: background .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-red:hover { background-color: var(--red-h); color: #fff; }

.btn-outline-hero {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border-radius: 4px;
  transition: background .2s, border-color .2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   NAVBAR — Transparente, oscurece al hacer scroll
   ============================================================ */
.navbar-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  padding: 1.2rem 1.5rem;
  z-index: 100;
}
.navbar-brand { overflow: visible; }
.navbar-brand img {
  height: 110px;
  position: relative;
  top: 18px;
}
.navbar-main .nav-link {
  color: rgba(255,255,255,0.92) !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.6rem 1rem !important;
  text-transform: uppercase;
  transition: color .2s;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: #fff !important;
  position: relative;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}
.navbar-main .navbar-nav { margin-right: 2.5rem; }

.nav-icon {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  cursor: pointer;
}
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('../img/hero-ship.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 32, 0.91);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-title {
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.8rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.hero-desc {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 0.3rem;
}
.hero-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.4rem;
}
.hero-year     { color: var(--red); }
.hero-icon-red { color: var(--red); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Icono calendario */
.hero-meta-cal-icon {
  font-size: 3rem;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

/* Texto fecha */
.hero-meta-date-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  font-family: 'Open Sans', sans-serif;
}
.hero-meta-year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}

/* Icono pin */
.hero-meta-pin-icon {
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

/* Texto ubicación */
.hero-meta-city {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.2;
}
.hero-meta-country {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.2;
}

.hero-logo-img {
  max-height: 200px;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.92;
}

@media (max-width: 991px) {
  .hero { padding: 110px 0 60px; }
  .hero-logo-img { max-height: 140px; max-width: 140px; }
}
@media (max-width: 575px) {
  .hero { padding: 100px 0 50px; }
  .hero-logo-img { display: none; }
}

/* ============================================================
   UN ESPACIO PARA APRENDER DE LA EXPERIENCIA
   ============================================================ */
.section-espacio { background: #fff; overflow: hidden; }

.espacio-left {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}
.espacio-text {
  flex: 1;
  padding: 3.5rem 3rem 2rem;
  background: #fff;
}
.espacio-text h2 {
  font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.espacio-text p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
}
.espacio-stats {
  background: var(--navy);
  padding: 1.8rem 3rem;
}
.espacio-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}
.espacio-stat { flex: 1; }
.espacio-stat .stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.espacio-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.espacio-stat-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.2);
  margin: 0 1.5rem;
}
.espacio-bullets { list-style: none; padding: 0; margin: 0; }
.espacio-bullets li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.82);
  padding: 0.2rem 0 0.2rem 1.4rem;
  position: relative;
}
.espacio-bullets li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.6rem;
  top: 0.38rem;
}
.espacio-img-col { display: flex; }
.img-espacio {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex: 1;
}
@media (max-width: 991px) {
  .espacio-text  { padding: 2.5rem 1.5rem 1.5rem; }
  .espacio-stats { padding: 1.5rem; }
  .img-espacio   { min-height: 300px; }
}

/* ============================================================
   ¿POR QUÉ ASISTIR?
   ============================================================ */
.section-porque { padding: 72px 0; background: #fff; }

.img-porque {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 420px;
  display: block;
}
.porque-text { padding-left: 1rem; }
.porque-text h2 {
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.porque-list { list-style: none; padding: 0; margin: 0; }
.porque-list li {
  font-size: 1rem;
  color: #333;
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  border-bottom: 1px solid #efefef;
}
.porque-list li:last-child { border-bottom: none; }
.porque-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.65rem;
  top: 0.72rem;
}
@media (max-width: 991px) {
  .porque-text { padding-left: 0; padding-top: 1.5rem; }
}

/* ============================================================
   BARRANQUILLA – CIUDAD ANFITRIONA
   ============================================================ */
.section-baq { overflow: hidden; }
.baq-wrapper { display: flex; height: 90vh; }
.baq-textcard {
  flex: 0 0 35%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  color: #fff;
}
.baq-textcard h2 {
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.baq-sub { font-weight: 400; font-size: 0.9em; opacity: 0.85; }
.baq-dash { width: 40px; height: 3px; background: var(--red); margin-bottom: 1rem; }
.baq-textcard p { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.7; }
.baq-img-col { flex: 1; }
.baq-img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 767px) {
  .baq-wrapper  { flex-direction: column; }
  .baq-textcard { flex: none; padding: 2rem 1.5rem; }
  .baq-img      { min-height: 260px; }
}

/* ============================================================
   LUGAR DEL EVENTO
   ============================================================ */
.section-lugar { padding: 70px 0 60px; background: #fff; }
.lugar-title {
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.lugar-divider {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 0 auto 1.6rem;
  border-radius: 2px;
}
.lugar-address-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
  text-align: center;
}
.lugar-pin-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lugar-pin { color: var(--red); font-size: 1.3rem; flex-shrink: 0; }
.lugar-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.lugar-addr { font-size: 0.88rem; color: #666; text-align: center; }
.lugar-map { border-radius: 12px; overflow: hidden; }
.lugar-map iframe { display: block; }

/* ============================================================
   HOTELES
   ============================================================ */
.section-hoteles {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

/* ============================================================
   PATROCINADORES
   ============================================================ */
.section-patrocinadores { padding: 72px 0; background: var(--navy); }
.patrocinadores-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}
.stier-row { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.stier-btn {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.45rem 1.4rem;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.stier-btn:hover { border-color: #fff; }
.stier-active { background: var(--red) !important; border-color: var(--red) !important; }

/* ── Bloques de tier ── */
.sponsor-tier-block {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0 0.5rem;
}
.sponsor-tier-label {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 4px;
  padding: 0.4rem 2rem;
  border-radius: 30px;
  margin: 0 auto 1rem;
  width: fit-content;
}
.sponsor-tier-mentor { background: rgba(100,180,255,0.15); color: #64b4ff; border: 1px solid rgba(100,180,255,0.4); }
.sponsor-tier-gold   { background: rgba(212,175,55,0.18); color: #d4af37; border: 1px solid rgba(212,175,55,0.4); }
.sponsor-tier-silver { background: rgba(180,180,180,0.15); color: #c0c0c0; border: 1px solid rgba(180,180,180,0.4); }
.sponsor-tier-bronze { background: rgba(176,110,70,0.18); color: #cd7f32; border: 1px solid rgba(176,110,70,0.4); }

/* Bloque de texto cuando no hay logo */
.sponsor-name-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.6rem 1.4rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Grid estático de patrocinadores ── */
.sponsor-static-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 1.2rem 0 2rem;
}
/* Bronze: hasta 5 por fila */
.sponsor-grid-bronze {
  justify-content: center;
}
.sponsor-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-img-logo {
  height: 65px;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.9;
  border-radius: 12px;
  background: #fff;
  padding: 6px 10px;
}
/* Bronze: forzar 5 por fila en desktop */
.sponsor-grid-bronze .sponsor-grid-item {
  flex: 0 0 calc(20% - 2rem);
  min-width: 130px;
}
@media (max-width: 991px) {
  .sponsor-grid-bronze .sponsor-grid-item {
    flex: 0 0 calc(33.33% - 2rem);
  }
}
@media (max-width: 575px) {
  .sponsor-grid-bronze .sponsor-grid-item {
    flex: 0 0 calc(50% - 1rem);
  }
}
.sponsor-text-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.85;
  text-align: center;
  line-height: 1.3;
}
.sponsor-text-logo small { font-size: 0.62rem; font-weight: 400; display: block; }
.ultratug { font-size: 1.35rem; }
.siport span { color: var(--red); }

/* ============================================================
   AGENDA ACADÉMICA
   ============================================================ */
.section-agenda { background: #fff; }

.agenda-hero-bg {
  position: relative;
  background: url('../img/congreso.jpg') center/cover no-repeat;
  overflow: hidden;
}
.agenda-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 36, 0.91);
}
.agenda-hero-bg .container-xl { position: relative; z-index: 2; }
.agenda-hero-title {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.agenda-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.agenda-hero-meta {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.agenda-body { padding: 40px 0 60px; }

/* Tabs */
.agenda-tabs-wrap { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.agenda-tab {
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  padding: 0.65rem 2.2rem;
  border-radius: 6px;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  transition: background .2s;
  text-transform: uppercase;
}
.agenda-tab.active { background: var(--red); }
.agenda-tab:hover:not(.active) { background: #1a3055; }

/* Etiqueta día */
.agenda-day-label { margin-bottom: 1.5rem; }
.day-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.15rem;
}
.day-name {
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.day-underline { width: 50px; height: 3px; background: var(--navy); border-radius: 2px; }

/* Cards */
.agenda-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid #f0f0f0;
}
.agenda-time {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.agenda-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.agenda-card-desc { font-size: 0.85rem; color: #666; margin-bottom: 0.9rem; line-height: 1.6; }
.agenda-speakers { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.agenda-speaker {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.agenda-speaker i { color: var(--navy); font-size: 0.78rem; }

/* Card variants */
.agenda-card-special {
  background: #f4f6fa;
  border: 1px solid #e2e6ef;
  box-shadow: none;
  padding: 1rem 1.8rem;
}
.agenda-card-special .agenda-card-title {
  font-size: 0.95rem;
  color: #555;
  font-weight: 600;
  margin: 0;
}
.agenda-card-special .agenda-time { margin-bottom: 0.3rem; }

.agenda-card-questions {
  background: #fff8f0;
  border: 1px solid #f5dfc0;
  box-shadow: none;
  padding: 0.85rem 1.8rem;
}
.agenda-card-questions .agenda-card-title {
  font-size: 0.9rem;
  color: #a05a00;
  font-weight: 600;
  margin: 0;
}
.agenda-card-questions .agenda-time { color: #c07020; margin-bottom: 0.3rem; }

.agenda-card-social {
  background: linear-gradient(90deg, var(--navy) 0%, #1a3a6e 100%);
  border: none;
  box-shadow: 0 4px 16px rgba(11,26,46,0.18);
  padding: 1.2rem 1.8rem;
}
.agenda-card-social .agenda-card-title {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
.agenda-card-social .agenda-time { color: rgba(255,255,255,0.7); margin-bottom: 0.3rem; }

/* Paginación patrocinios */
.patr-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}
.patr-pag-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  border-radius: 6px;
  border: 1.5px solid #dde2ec;
  background: #fff;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.patr-pag-btn:hover:not(.disabled):not(.active) {
  border-color: var(--navy);
  background: #f0f3fa;
}
.patr-pag-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.patr-pag-btn.disabled {
  opacity: 0.35;
  cursor: default;
}

/* Paginación */
.agenda-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  padding-bottom: 0.5rem;
}
.agenda-pag-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.6rem;
  border-radius: 6px;
  border: 1.5px solid #dde2ec;
  background: #fff;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.agenda-pag-btn:hover:not(.disabled):not(.active) {
  border-color: var(--navy);
  background: #f0f3fa;
}
.agenda-pag-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.agenda-pag-btn.disabled {
  opacity: 0.35;
  cursor: default;
}

/* ============================================================
   CONFERENCISTAS
   ============================================================ */
.section-conferencistas {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #eee;
}
.conf-title {
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.conf-sub { font-size: 0.9rem; color: #666; margin-bottom: 2.5rem; }

/* Speaker cards con foto */
.speaker-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}
.speaker-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy);
}
.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.speaker-info {
  padding: 0.85rem 0.6rem 1rem;
  border-top: 3px solid var(--red);
}
.speaker-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.speaker-role {
  font-size: 0.68rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}
.speaker-flag { line-height: 1; }
.speaker-flag .fi { width: 1.6rem; height: 1.2rem; border-radius: 3px; display: inline-block; }

/* ── Speaker Modal ── */
.speaker-modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.speaker-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(0,0,0,0.08);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #555;
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s;
}
.speaker-modal-close:hover { background: var(--red); color: #fff; }
.speaker-modal-body {
  display: flex;
  gap: 0;
}
.speaker-modal-photo-col {
  width: 220px;
  min-width: 220px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 1.5rem;
}
.speaker-modal-photo {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid rgba(255,255,255,0.15);
  margin-bottom: 1rem;
}
.speaker-modal-flag {
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
}
.speaker-modal-flag .fi { width: 1.4rem; height: 1rem; border-radius: 2px; }
.speaker-modal-info-col {
  flex: 1;
  padding: 2rem 2rem 2rem 1.8rem;
}
.speaker-modal-role {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
}
.speaker-modal-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.speaker-modal-divider {
  width: 40px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.speaker-modal-bio {
  font-size: 0.87rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
@media (max-width: 576px) {
  .speaker-modal-body { flex-direction: column; }
  .speaker-modal-photo-col { width: 100%; min-width: unset; padding: 1.5rem 1rem 1rem; }
  .speaker-modal-info-col { padding: 1.2rem; }
}

/* Mantener compatibilidad avatar antiguo */
.speaker-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

/* ============================================================
   PROGRAMA COMPLETO
   ============================================================ */
.section-programa { padding: 80px 0; background: var(--navy); }
.programa-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.programa-sub { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.btn-outline-red-program {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.7rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
}
.btn-outline-red-program:hover { background: var(--red); color: #fff; }

/* ============================================================
   CUENTA REGRESIVA
   ============================================================ */
.section-countdown {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--navy);
}
.section-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/congreso-armada.png') center/cover no-repeat;
  opacity: 0.32;
}
.section-countdown .container-xl { position: relative; z-index: 2; }

.countdown-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
}
.countdown-card {
  background: rgba(8, 18, 40, 0.78);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.countdown-block { text-align: center; }
.countdown-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #fff;
  line-height: 1;
  display: block;
}
.countdown-lbl {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}
.countdown-sep {
  font-size: 2.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.1rem;
}
.countdown-newsletter {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
  text-align: right;
}
.countdown-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.82rem;
  border-radius: 4px 0 0 4px;
}
.countdown-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.countdown-form .form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
  color: #fff;
}
@media (max-width: 991px) {
  .countdown-left { text-align: center; margin-bottom: 1.5rem; }
  .countdown-left .d-flex { justify-content: center; }
  .countdown-newsletter { text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: #fff; }
.footer-nav-active { color: #fff !important; font-weight: 700; }
.footer-social { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-social a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: color .2s;
}
.footer-social a:hover { color: #fff; }
.footer-social i { font-size: 1rem; }
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.footer-logo-img  { height: 80px; object-fit: contain; }
.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom strong { color: rgba(255,255,255,0.55); }

/* ============================================================
   PAGE HERO – shared hero for inner pages (agenda, exponentes)
   ============================================================ */
.page-hero-top {
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 70px;
}
.expo-hero-top {
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 70px;
}

/* ============================================================
   EXPONENTES – HERO
   ============================================================ */
.expo-hero-bg {
  position: relative;
  background: url('../img/congreso-hall.jpg') center/cover no-repeat;
  overflow: hidden;
}
.expo-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 36, 0.91);
}
.expo-hero-bg .container-xl { position: relative; z-index: 2; }

.expo-hero-title {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.expo-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.expo-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.expo-hero-meta i { color: var(--red); }

/* ============================================================
   PLANO INTERACTIVO
   ============================================================ */
.section-plano { padding: 80px 0; background: #fff; }

.plano-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.plano-divider {
  width: 50px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.plano-desc { font-size: 0.88rem; color: #555; line-height: 1.8; margin-bottom: 1.4rem; }

.plano-list { list-style: none; padding: 0; margin: 0; }
.plano-list li {
  font-size: 0.88rem;
  color: #333;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #efefef;
}
.plano-list li:last-child { border-bottom: none; }
.plano-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.6rem;
  top: 0.72rem;
}
.plano-placeholder {
  background: var(--gray-bg);
  border-radius: 14px;
  border: 2px dashed #ccc;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #aaa;
}
.plano-icon { font-size: 3.5rem; color: #ccc; }
.plano-placeholder p { font-size: 0.88rem; margin: 0; }

/* ============================================================
   EXPOSITORES CONFIRMADOS
   ============================================================ */
.section-expositores { padding: 80px 0; background: var(--gray-bg); }

.expositores-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-align: center;
}
.expositores-sub { font-size: 0.9rem; color: #666; text-align: center; margin-bottom: 2.5rem; }

.expositor-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #eee;
}
.expositor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.expositor-logo-wrap {
  background: var(--navy);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.expositor-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
}
.expositor-logo-text small { font-size: 0.65rem; font-weight: 400; display: block; opacity: 0.8; }
.todomar  { font-size: 1.5rem; }
.amura-logo { font-size: 1.15rem; }
.siport-logo span { color: var(--red); }
.expositor-info { padding: 0.9rem 1rem; }
.expositor-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.15rem;
}
.expositor-cat { font-size: 0.7rem; color: #aaa; }

.expo-plus-icon { font-size: 2.5rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   EXPOSITORES DESTACADOS
   ============================================================ */
.section-expo-destacados { padding: 80px 0; background: #fff; }

.expo-dest-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-height: 440px;
  display: block;
}
.expo-dest-text h2 {
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.expo-dest-dash {
  width: 50px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.expo-dest-text p { font-size: 0.9rem; color: #555; line-height: 1.8; margin-bottom: 1.4rem; }

.expo-dest-list { list-style: none; padding: 0; margin: 0; }
.expo-dest-list li {
  font-size: 0.9rem;
  color: #333;
  padding: 0.55rem 0 0.55rem 1.6rem;
  position: relative;
  border-bottom: 1px solid #efefef;
}
.expo-dest-list li:last-child { border-bottom: none; }
.expo-dest-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.6rem;
  top: 0.72rem;
}

/* ============================================================
   INFORMACIÓN PARA EXPOSITORES
   ============================================================ */
.section-expo-info { padding: 80px 0; background: var(--navy); }

.expo-info-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 0.6rem;
}
.expo-info-divider {
  width: 60px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}
.expo-info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  height: 100%;
  transition: background 0.2s;
}
.expo-info-card:hover { background: rgba(255,255,255,0.1); }
.expo-info-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.expo-info-icon i { font-size: 1.3rem; color: #fff; }
.expo-info-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.expo-info-card p { font-size: 0.85rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin: 0; }

/* ============================================================
   BENEFICIOS PARA EXPOSITORES
   ============================================================ */
.section-expo-beneficios { padding: 80px 0; background: #fff; }

.expo-bene-text h2 {
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.expo-bene-dash {
  width: 50px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 2rem;
}
.expo-bene-grid { display: flex; flex-direction: column; gap: 1.4rem; }
.expo-bene-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.expo-bene-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  opacity: 0.35;
  line-height: 1;
  min-width: 40px;
}
.expo-bene-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}
.expo-bene-item p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.6; }

.expo-bene-tiers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.expo-tier-card {
  background: var(--gray-bg);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid #ccc;
}
.expo-tier-featured {
  background: var(--navy);
  border-left-color: var(--red);
}
.expo-tier-featured li { color: rgba(255,255,255,0.82) !important; }
.expo-tier-card ul { list-style: none; padding: 0; margin: 0.8rem 0 0; }
.expo-tier-card li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.2rem 0 0.2rem 1.2rem;
  position: relative;
}
.expo-tier-card li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.5rem;
  top: 0.4rem;
}
.expo-tier-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.bronze { background: #cd7f32; color: #fff; }
.gold   { background: #ffc107; color: #333; }
.diamond { background: #6cb4e4; color: #fff; }

/* ============================================================
   FORMULARIO EXPOSITOR
   ============================================================ */
.section-expo-form { padding: 80px 0; background: var(--gray-bg); }

.expo-form-title {
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}
.expo-form-sub { text-align: center; font-size: 0.9rem; color: #666; margin-bottom: 2.5rem; }

.expo-form { background: #fff; border-radius: 16px; padding: 2.5rem; box-shadow: 0 2px 18px rgba(0,0,0,0.07); }
.expo-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.76rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.expo-input {
  width: 100%;
  background: var(--gray-bg);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Open Sans', sans-serif;
}
.expo-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,26,46,0.08);
}
textarea.expo-input { resize: vertical; }
select.expo-input { cursor: pointer; }

/* ============================================================
   HOTELES – HOSPEDAJE OFICIAL
   ============================================================ */

/* Hero */
.hoteles-hero-bg {
  position: relative;
  background: url('../img/congreso.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hoteles-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 36, 0.91);
}
.hoteles-hero-bg .container-xl { position: relative; z-index: 2; }

.hoteles-hero-title {
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.hoteles-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.hoteles-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}
.hoteles-hero-meta i { color: var(--red); font-size: 1.3rem; }
.hoteles-hero-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--red);
}

/* Intro */
.section-hoteles-intro {
  padding: 2.5rem 0 0;
  background: #fff;
}
.hoteles-intro-text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}
.hoteles-intro-note {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 0;
}

/* Hotel cards section */
.section-hotel-cards {
  padding: 2rem 0 3rem;
  background: #fff;
}

/* Hotel card */
.hotel-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 22px rgba(0,0,0,0.09);
  border: 1px solid #e4e4e4;
  margin-bottom: 2rem;
  background: #fff;
}

/* Top: info + photos */
.hotel-card-top {
  display: flex;
  background: #fff;
}
.hotel-card-info {
  flex: 1;
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hotel-name {
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin-bottom: 1.3rem;
}
.hotel-rooms {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hotel-rooms li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.hotel-rooms li:last-child { border-bottom: none; }
.hotel-rooms li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.58rem;
  top: 0.95rem;
}
.hotel-room-type {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.hotel-room-price {
  display: block;
  font-size: 0.82rem;
  color: #555;
  margin-top: 0.1rem;
}
.hotel-room-price small {
  font-size: 0.75rem;
  color: #aaa;
  margin-left: 0.35rem;
}

/* Photos column */
.hotel-card-photos {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
}
.hotel-photo {
  flex: 0 0 150px;
  height: 150px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.hotel-photo:not(:last-child) { border-bottom: 3px solid #fff; }

/* Footer: navy INCLUYE bar */
.hotel-card-footer {
  background: var(--navy);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hotel-footer-left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex: 1;
  min-width: 0;
}
.hotel-incluye-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-start;
}
.hotel-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amenity-icon i {
  font-size: 1.05rem;
  color: #fff;
}
.hotel-amenity span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: center;
  max-width: 52px;
  line-height: 1.3;
}

/* Footer right: location + button */
.hotel-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}
.hotel-location {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: right;
}
.hotel-loc-pin {
  color: var(--red);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hotel-location div {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.hotel-location div strong {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 0.82rem;
}
.hotel-recommended {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  text-align: right;
  margin: 0;
}
.hotel-btn { font-size: 0.78rem; padding: 0.55rem 1.5rem; }

/* CTA */
.section-hoteles-cta {
  padding: 2rem 0 3.5rem;
  background: #fff;
}
.hoteles-cta-wrap {
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.hoteles-cta-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 1.4rem;
}

/* Responsive */
@media (max-width: 767px) {
  .hotel-card-top       { flex-direction: column; }
  .hotel-card-photos    { flex-direction: row; flex: none; }
  .hotel-photo          { flex: 1; height: 160px; }
  .hotel-card-footer    { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hotel-footer-left    { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
  .hotel-footer-right   { align-items: flex-start; width: 100%; }
  .hotel-location       { text-align: left; }
  .hotel-recommended    { text-align: left; }
}

/* ============================================================
   INSCRIPCIONES
   ============================================================ */

/* Hero */
.insc-hero-bg {
  position: relative;
  background: url('../img/congreso.jpg') center/cover no-repeat;
  overflow: hidden;
}
.insc-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 36, 0.91);
}
.insc-hero-bg .container-xl { position: relative; z-index: 2; }

.insc-hero-title {
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.insc-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.insc-hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.insc-hero-meta-item { display: flex; align-items: center; gap: 0.7rem; }
.insc-meta-cal  { font-size: 2.4rem; color: #fff; }
.insc-meta-pin  { font-size: 2.2rem; color: #fff; }
.insc-meta-dates {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-family: 'Open Sans', sans-serif;
}
.insc-meta-year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.insc-meta-city {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.2;
}
.insc-meta-country {
  display: block;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

/* Intro */
.section-insc-intro {
  padding: 3rem 0 0;
  background: #fff;
}
.insc-intro-text {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 0.5rem;
}
.insc-intro-sub {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 1.6rem;
}
.insc-ahorra-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0;
}
.insc-ahorra-red { color: var(--red); }

/* Fases section */
.section-insc-fases {
  padding: 2.5rem 0 3rem;
  background: #fff;
}

/* Fase card */
.insc-fase-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  padding: 1.8rem 2rem 1.4rem;
  margin-bottom: 1.6rem;
}
.insc-fase-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.insc-fase-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}
.insc-fase-date i { color: var(--red); font-size: 0.9rem; }
.insc-fase-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: var(--navy);
  margin: 0;
}
.insc-btn-sm {
  font-size: 0.78rem;
  padding: 0.5rem 1.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Table */
.insc-table-wrap { overflow-x: auto; }
.insc-fase-table {
  width: 100%;
  border-collapse: collapse;
}
.insc-fase-table thead th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #555;
  padding: 0.4rem 1rem 0.65rem;
  border-bottom: 2px solid #e0e0e0;
  text-align: left;
}
.insc-fase-table thead th:not(:first-child) {
  border-left: 1px solid #e0e0e0;
}
.insc-fase-table tbody td {
  font-size: 0.85rem;
  color: #333;
  padding: 0.5rem 1rem;
  vertical-align: middle;
}
.insc-fase-table tbody td:not(:first-child) {
  border-left: 1px solid #ebebeb;
}
.insc-fase-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #f2f2f2;
}
.insc-tipo-icon {
  color: var(--navy);
  font-size: 0.9rem;
  margin-right: 0.3rem;
}

/* Tu inscripción incluye */
.section-insc-incluye {
  padding: 3.5rem 0;
  background: var(--gray-bg);
}
.insc-incluye-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
}
.insc-incluye-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.insc-incluye-list li {
  font-size: 0.9rem;
  color: #333;
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  line-height: 1.5;
}
.insc-incluye-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.58rem;
  top: 0.72rem;
}

/* Stats bar */
.section-insc-stats {
  background: var(--navy);
  padding: 2.2rem 0;
}
.insc-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.insc-stats-numbers {
  display: flex;
  align-items: center;
  gap: 0;
}
.insc-stat-item { text-align: center; padding: 0 1.6rem; }
.insc-stat-item:first-child { padding-left: 0; }
.insc-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}
.insc-stat-lbl {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}
.insc-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
}
.insc-stats-btn { font-size: 0.9rem; }
.insc-stats-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.6;
}

/* FAQ */
.section-insc-faq {
  padding: 3.5rem 0;
  background: #fff;
}
.insc-faq-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  height: 100%;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}
.insc-faq-q {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.35;
}
.insc-faq-ans {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.insc-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.insc-faq-list li {
  font-size: 0.88rem;
  color: #555;
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}
.insc-faq-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.55rem;
  top: 0.6rem;
}

/* CTA */
.section-insc-cta {
  padding: 4rem 0;
  background: #fff;
}
.insc-cta-title {
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 767px) {
  .insc-fase-header   { flex-direction: column; }
  .insc-stats-row     { flex-direction: column; align-items: flex-start; }
  .insc-stats-tagline { margin-top: 0.5rem; }
}

/* ============================================================
   PATROCINIOS
   ============================================================ */

/* Hero */
.patr-hero-bg {
  position: relative;
  background: url('../img/congreso-hall.jpg') center/cover no-repeat;
  overflow: hidden;
}
.patr-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 36, 0.91);
}
.patr-hero-bg .container-xl { position: relative; z-index: 2; }

.patr-hero-title {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.patr-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 0.75rem;
}
.patr-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  flex-wrap: wrap;
}
.patr-hero-year { color: var(--red); }
.patr-hero-sep { color: rgba(255,255,255,0.4); margin: 0 0.25rem; }

/* Intro */
.section-patr-intro {
  background: var(--gray-bg);
  padding: 2.5rem 0;
}
.patr-intro-text {
  font-size: 1.02rem;
  color: #444;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Category headers */
.patr-cat-header {
  padding: 1.2rem 0;
  border-left: 6px solid var(--red);
}
.patr-cat-header-inner {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.patr-cat-title {
  font-weight: 900;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}
.patr-cat-sub {
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  opacity: 0.7;
}

/* Category color themes */
.patr-cat-premium  { background: #fff3f3; }
.patr-cat-premium  .patr-cat-title { color: #8b0000; }
.patr-cat-mentor   { background: #f0f4ff; }
.patr-cat-mentor   .patr-cat-title { color: #1a3a6e; }
.patr-cat-diamond  { background: #edf7ff; }
.patr-cat-diamond  .patr-cat-title { color: #0b5ea0; }
.patr-cat-co       { background: #f5f0ff; }
.patr-cat-co       .patr-cat-title { color: #4a2080; }
.patr-cat-gold     { background: #fffbec; }
.patr-cat-gold     .patr-cat-title { color: #7a5900; }
.patr-cat-silver   { background: #f5f5f5; }
.patr-cat-silver   .patr-cat-title { color: #444; }
.patr-cat-bronze   { background: #fff8f2; }
.patr-cat-bronze   .patr-cat-title { color: #7a3800; }
.patr-cat-muestra  { background: #f0faf3; }
.patr-cat-muestra  .patr-cat-title { color: #165a30; }

/* Cards section wrapper */
.section-patr-cards {
  padding: 2.5rem 0 1.5rem;
  background: #fff;
}
.section-patr-cards + .section-patr-cards { border-top: 1px solid #eee; }

/* Card */
.patr-card {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border: 1px solid #e8e8e8;
  margin-bottom: 1.5rem;
  background: #fff;
}
.patr-card-left {
  flex: 0 0 220px;
  background: var(--navy);
  color: #fff;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.patr-card-right {
  flex: 1;
  padding: 1.6rem 1.8rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Vendido badge */
.patr-vendido {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}

.patr-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.75rem;
  padding-right: 0.25rem;
}

.patr-card-prices {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}
.patr-price-usd {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.patr-price-cop {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

.patr-card-icon {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.4);
  align-self: flex-end;
}

/* Benefits list */
.patr-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.patr-benefits li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
}
.patr-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.patr-note {
  font-size: 0.78rem;
  color: #888;
  margin: 0.5rem 0 0;
  font-style: italic;
  line-height: 1.5;
}

/* Muestra Comercial section */
.section-patr-muestra {
  padding: 3rem 0 3.5rem;
  background: #f9f9f9;
}
.patr-muestra-title {
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.patr-plano-wrap {
  text-align: center;
}
.patr-plano-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.patr-stand-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.1);
  background: #fff;
  height: 100%;
}
.patr-stand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.5rem;
}

/* CTA */
.section-patr-cta {
  background: var(--gray-bg);
  padding: 4rem 0;
}
.patr-cta-title {
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* Responsive */
@media (max-width: 767px) {
  .patr-card { flex-direction: column; }
  .patr-card-left { flex: none; border-radius: 0; }
  .patr-cat-header-inner { flex-direction: column; gap: 0.25rem; }
}

/* ============================================================
   PLAN DE ACOMPAÑANTES
   ============================================================ */
.section-acompanantes {
  background: var(--gray-bg);
  padding: 72px 0;
}
.acomp-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.acomp-divider {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 1.2rem;
}
.acomp-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 767px) {
  .hero-meta { gap: 1rem; }
  .espacio-stats-row { gap: 0; }
  .expo-bene-tiers { gap: 0.75rem; }
  .expo-form { padding: 1.5rem; }
}
