/* =========================================================
   EME · reservas.css
   Diseño objetivo:
   - Fondo Cartagena
   - Resumen vivo a la izquierda
   - Chat CIRO protagonista al centro
   - Cards de gama dentro del chat
   - Mascota a la derecha
========================================================= */

:root {
  --verde: #0b5fc7;
  --verde-oscuro: #082f6c;
  --verde-profundo: #061d44;
  --verde-hero: #073b7a;
  --turquesa: #22c7e9;
  --turquesa-2: #0ea9d8;
  --naranja: #ff9f1c;
  --fondo: #f5f7f8;
  --texto: #1e1e1e;
  --gris: #6b7280;
  --blanco: #ffffff;
  --borde: rgba(34, 199, 233, 0.18);
  --sombra: 0 22px 60px rgba(0, 0, 0, 0.30);
  --radio: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--fondo);
  color: var(--texto);
}

a {
  text-decoration: none;
  color: inherit;
}

.oculto {
  display: none !important;
}

/* =========================================================
   HEADER
========================================================= */

.header-reservas {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(8, 47, 108, 0.94);
  backdrop-filter: blur(14px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-content {
  max-width: 1220px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-reservas-horizontal {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-reservas {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-reservas a {
  opacity: .92;
}

.nav-reservas a:hover {
  color: var(--turquesa);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.selector-idioma {
  height: 42px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255,255,255,.12);
  color: #fff;
  outline: none;
  font-weight: 700;
}

.selector-idioma option {
  color: #111;
}

.btn-whatsapp {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--turquesa-2);
  color: #032b25;
  font-weight: 900;
}

/* =========================================================
   HERO CIRO
========================================================= */
/* =========================================================
   HERO CIRO - NUEVO LAYOUT DEFINITIVO
========================================================= */

#inicio.hero-reservas {
  height: calc(100vh - 72px);
  min-height: 720px;
  padding: 96px 42px 42px;
  display: grid;
 grid-template-columns: 300px minmax(0, 540px) 220px;
  gap: 34px;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(6, 29, 68, .88),
      rgba(6, 29, 68, .46),
      rgba(6, 29, 68, .18)
    ),
    url("img/hero/hero-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* =========================================================
   COLUMNA IZQUIERDA FIJA
========================================================= */

.panel-resumen-ciro {
  position: relative;
 width: 300px;
    height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 47, 108, .96), rgba(6, 29, 68, .96));
  border: 1px solid rgba(34, 199, 233, .18);
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.estado-inicial-ciro,
.resumen-reserva-ciro {
  position: absolute;
  inset: 0;
  padding: 24px;
  transition: opacity .35s ease, transform .35s ease;
}

.estado-inicial-ciro {
  display: flex;
  flex-direction: column;
   justify-content: center;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
}

.estado-inicial-ciro span {
  color: #2fd0ee;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.estado-inicial-ciro h1 {
  margin: 14px 0 14px;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.7px;
}

.estado-inicial-ciro p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.55;
}

.reserva-iniciada .estado-inicial-ciro {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.resumen-reserva-ciro {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  color: #fff;
}

.reserva-iniciada .resumen-reserva-ciro {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* =========================================================
   RESUMEN VIVO
========================================================= */

.resumen-reserva-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.resumen-reserva-header h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.resumen-reserva-header p {
  margin: 6px 0 0;
  color: #2fd0ee;
  font-size: 11px;
  font-weight: 700;
}

#badgeEstadoReservaCiro {
  align-self: flex-start;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(34,199,233,.12);
  border: 1px solid rgba(34,199,233,.28);
  color: #2fd0ee;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.resumen-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.resumen-icono {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(34,199,233,.11);
  border: 1px solid rgba(34,199,233,.20);
  font-size: 14px;
}

.resumen-item small,
.resumen-total small {
  display: block;
  margin-bottom: 3px;
  color: #2fd0ee;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.resumen-item strong {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
}

#resumenDiasCiro {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
}

.chips-adicionales-ciro {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chips-adicionales-ciro span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(34,199,233,.18);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.resumen-total {
  margin-top: 14px;
  padding: 12px 0 0;
}

.resumen-total strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.resumen-total span {
  display: inline-block;
  margin-top: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34,199,233,.16);
  color: #2fd0ee;
  font-size: 9px;
  font-weight: 900;
}

.descripcion-gama-ciro,
.nota-total-ciro {
  display: none;
}

/* =========================================================
   CHAT CENTRAL FIJO
========================================================= */

.ciro-chat-card {
  width: 100%;
   height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.36);
}

.ciro-chat-header {
  flex: 0 0 74px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: linear-gradient(180deg, #082f6c, #003428);
  color: #fff;
}

.ciro-avatar-mini {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.ciro-chat-header h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
}

.ciro-chat-header p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 10px;
}

.ciro-chat-header p span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #2fd0ee;
}

.ciro-minimizar {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #f59e0b;
  font-size: 25px;
  font-weight: 900;
  cursor: pointer;
}

.ciro-chat-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 18px;
  overflow-y: auto;
  background: #fff;
}

.ciro-msg {
  max-width: 78%;
  margin-bottom: 14px;
}

.ciro-msg p {
  margin: 0;
  padding: 13px 15px;
  border-radius: 15px;
  font-size: 12px;
  line-height: 1.5;
}

.ciro-msg small {
  display: block;
  margin-top: 5px;
  color: #8494aa;
  font-size: 9px;
}

.ciro-msg-bot p {
  background: #f2f6fb;
  color: #132b4b;
  border-top-left-radius: 6px;
}

.ciro-msg-user {
  margin-left: auto;
  text-align: right;
}

.ciro-msg-user p {
  background: #00523f;
  color: #fff;
  border-top-right-radius: 6px;
}

.ciro-input-area {
  flex: 0 0 76px;
  padding: 14px 20px 18px;
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-top: 1px solid #edf1f0;
}

.ciro-input-area input {
  width: 100%;
  height: 46px;
  border: 1px solid #d9e5f1;
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  font-family: inherit;
  font-size: 12px;
}

.ciro-input-area input:focus {
  border-color: #16bce3;
  box-shadow: 0 0 0 4px rgba(22,188,227,.10);
}

.ciro-input-area button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #0a86df;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10,134,223,.28);
}

/* =========================================================
   CARDS DENTRO DEL CHAT
========================================================= */

.selector-gamas-ciro {
  max-width: 100%;
  margin: 16px 0 8px;
}

.selector-gamas-ciro.oculto {
  display: none !important;
}

.selector-gamas-header span {
  display: block;
  margin-bottom: 4px;
  color: #082f6c;
  font-size: 13px;
  font-weight: 900;
}

.selector-gamas-header p {
  margin: 0 0 12px;
  color: #5c708b;
  font-size: 11px;
}

.selector-gamas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.card-gama-ciro {
  min-height: 164px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce8f5;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  transition: .2s ease;
}

.card-gama-ciro:hover {
  transform: translateY(-2px);
  border-color: #16bce3;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

.card-gama-ciro img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  margin: 4px 0 8px;
}

.card-gama-ciro h4 {
  margin: 0;
  color: #082f6c;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.card-gama-ciro p {
  margin: 4px 0 8px;
  color: #0a72c9;
  font-size: 9px;
  line-height: 1.25;
}

.card-gama-ciro strong {
  margin-top: auto;
  display: block;
  padding: 7px 8px;
  border: 1px solid #16bce3;
  border-radius: 999px;
  color: #0a72c9;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.nota-gamas-ciro {
  margin: 10px 0 0;
  color: #53615d;
  font-size: 10px;
}

.selector-ciudades-ciro {
  max-width: 100%;
  margin: 16px 0 8px;
}

.selector-ciudades-ciro.oculto {
  display: none !important;
}

.selector-ciudades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.card-ciudad-ciro {
  min-height: 106px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce8f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: .2s ease;
}

.card-ciudad-ciro:hover {
  transform: translateY(-2px);
  border-color: #16bce3;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

.card-ciudad-ciro span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(22,188,227,.10);
  font-size: 18px;
}

.card-ciudad-ciro h4 {
  margin: 12px 0 4px;
  color: #082f6c;
  font-size: 13px;
  font-weight: 900;
}

.card-ciudad-ciro p {
  margin: 0;
  color: #0a72c9;
  font-size: 10px;
  line-height: 1.3;
}

.selector-fechas-ciro {
  max-width: 100%;
  margin: 16px 0 8px;
}

.selector-fechas-ciro.oculto {
  display: none !important;
}

.selector-fechas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.card-fecha-ciro {
  min-height: 148px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce8f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: .2s ease;
}

.card-fecha-ciro:hover {
  transform: translateY(-2px);
  border-color: #16bce3;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

.card-fecha-ciro span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(22,188,227,.10);
  font-size: 18px;
}

.card-fecha-ciro h4 {
  margin: 0 0 4px;
  color: #082f6c;
  font-size: 13px;
  font-weight: 900;
}

.card-fecha-ciro p {
  margin: 0;
  color: #0a72c9;
  font-size: 10px;
  line-height: 1.3;
}

.card-fecha-ciro input {
  width: 100%;
  height: 40px;
  margin-top: auto;
  border: 1px solid #d9e5f1;
  border-radius: 999px;
  padding: 0 12px;
  color: #132b4b;
  font-family: inherit;
  font-size: 12px;
  outline: none;
}

.card-fecha-ciro input:focus {
  border-color: #16bce3;
  box-shadow: 0 0 0 4px rgba(22,188,227,.10);
}

.btn-continuar-fechas-ciro {
  width: 100%;
  height: 42px;
  margin-top: 12px;
  border: 1px solid #16bce3;
  border-radius: 999px;
  background: #0a86df;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.selector-proteccion-ciro {
  max-width: 100%;
  margin: 16px 0 8px;
}

.selector-proteccion-ciro.oculto {
  display: none !important;
}

.selector-proteccion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.card-proteccion-ciro {
  min-height: 260px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce8f5;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  transition: .2s ease;
}

.card-proteccion-ciro:hover {
  transform: translateY(-2px);
  border-color: #16bce3;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

.card-proteccion-ciro.destacada {
  border-color: rgba(10,134,223,.55);
  background: #f4fffb;
}

.card-proteccion-ciro h4 {
  margin: 0 0 6px;
  color: #082f6c;
  font-size: 13px;
  font-weight: 900;
}

.card-proteccion-ciro p {
  margin: 0 0 10px;
  color: #5c708b;
  font-size: 10px;
  line-height: 1.35;
}

.card-proteccion-ciro ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.card-proteccion-ciro li {
  color: #132b4b;
  font-size: 10px;
  line-height: 1.3;
}

.precio-proteccion-ciro {
  margin-top: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  background: rgba(22,188,227,.10);
  color: #0b5fc7;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.card-proteccion-ciro strong {
  margin-top: auto;
  display: block;
  padding: 8px;
  border: 1px solid #16bce3;
  border-radius: 999px;
  color: #0a72c9;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

/* =========================================================
   MASCOTA DERECHA
========================================================= */

.ciro-mascota-area {
    width: 220px;
    height: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: relative;

    transform: translateY(-70px);
}

.ciro-mascota {
   width: 210px;
    max-height: 330px;

    object-fit: contain;

    filter: drop-shadow(0 28px 34px rgba(0,0,0,.35));

    margin-top: -55px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.35));
}

.ciro-badge-ayuda {
  width: 185px;
 margin-top: -30px;
  padding: 13px 14px;
  display: flex;
  gap: 10px;
  border-radius: 18px;
  background: rgba(8, 47, 108, .94);
  color: #fff;
  border: 1px solid rgba(34,199,233,.18);
  box-shadow: 0 20px 46px rgba(0,0,0,.32);
}

.ciro-badge-ayuda span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(34,199,233,.14);
}

.ciro-badge-ayuda strong {
  display: block;
  color: #2fd0ee;
  font-size: 11px;
  font-weight: 900;
}

.ciro-badge-ayuda p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  line-height: 1.35;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  #inicio.hero-reservas {
    grid-template-columns: 250px minmax(460px, 1fr);
  }

  .ciro-mascota-area {
    display: none;
  }
}

@media (max-width: 820px) {
  #inicio.hero-reservas {
    height: auto;
    min-height: 100vh;
    padding: 96px 18px 32px;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
  }

  .panel-resumen-ciro,
  .ciro-chat-card {
    width: 100%;
    height: auto;
  }

  .panel-resumen-ciro {
    min-height: 220px;
  }

  .estado-inicial-ciro,
  .resumen-reserva-ciro {
    position: relative;
  }

  .resumen-reserva-ciro {
    display: none;
  }

  .reserva-iniciada .estado-inicial-ciro {
    display: none;
  }

  .reserva-iniciada .resumen-reserva-ciro {
    display: block;
  }

  .ciro-chat-card {
    height: 620px;
  }
}
/* =========================================================
   MASCOTA
========================================================= */

.ciro-mascota-area {
  width: 260px;
  position: relative;
  align-self: center;
  pointer-events: none;
}

.ciro-mascota {
  width: 260px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 26px 35px rgba(0,0,0,.28));
}

.ciro-badge-ayuda {
  margin-top:-20px;
  padding: 20px;
  border-radius: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(0, 72, 58, .94);
  color: #fff;
  box-shadow: var(--sombra);
}

.ciro-badge-ayuda span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(34,199,233,.12);
}

.ciro-badge-ayuda strong {
  display: block;
  color: var(--turquesa);
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 5px;
}

.ciro-badge-ayuda p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

/* =========================================================
   CTA POST HERO
========================================================= */

.ciro-cta-reserva {
  padding: 38px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #082f6c;
  color: #fff;
}

.ciro-cta-reserva h2 {
  margin: 0 0 6px;
}

.ciro-cta-reserva p {
  margin: 0;
  color: rgba(255,255,255,.75);
}

.ciro-cta-reserva a {
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--turquesa);
  color: #03352b;
  font-weight: 900;
}

/* =========================================================
   SECCIONES GENERALES / FLOTA / BENEFICIOS
========================================================= */

section:not(#inicio) {
  scroll-margin-top: 80px;
}

.section-header,
.section-heade {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header span,
.section-heade span {
  display: inline-block;
  color: var(--turquesa-2);
  font-weight: 900;
  margin-bottom: 8px;
}

.section-header h2,
.section-heade h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--verde-oscuro);
}

.section-header p,
.section-heade p {
  color: var(--gris);
}

.flota-section,
.beneficios-section,
.experiencias-section {
  padding: 80px 28px;
  background: #fff;
}

.grid-gamas,
.grid-beneficios,
.grid-experiencias,
#listaGamas {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.grid-gamas,
#listaGamas {
  grid-template-columns: repeat(4, 1fr);
}

.grid-beneficios,
.grid-experiencias {
  grid-template-columns: repeat(3, 1fr);
}

.card-gama,
.beneficio-card,
.experiencia-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5ece9;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.card-img,
.grupo-imagen {
  height: 170px;
  display: grid;
  place-items: center;
  background: #f3f7f6;
}

.card-img img,
.grupo-imagen img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.card-body,
.beneficio-card,
.experiencia-card {
  padding: 22px;
}

.tag-gama,
.grupo-codigo,
.badge-recomendado {
  display: inline-block;
  color: var(--turquesa-2);
  font-size: 12px;
  font-weight: 950;
}

.card-body h3,
.grupo-header h3 {
  margin: 8px 0;
  color: var(--verde-oscuro);
}

.card-body p,
.grupo-header p {
  color: var(--gris);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.features span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf7fc;
  color: #02705f;
  font-size: 12px;
  font-weight: 800;
}

.precio small,
.grupo-precio small {
  display: block;
  color: var(--gris);
}

.precio strong,
.grupo-precio strong {
  color: var(--verde-oscuro);
  font-size: 22px;
}

.btn-card-reservar,
.btn-elegir-grupo,
.btn-elegir-proteccion,
.btn-detalles-grupo,
.btn-buscar,
#btnConfirmarReserva {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: var(--verde);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.btn-detalles-grupo {
  background: #edf7fc;
  color: var(--verde-oscuro);
}

/* =========================================================
   FLUJO DE RESERVA TRADICIONAL
========================================================= */

.flujo-reserva {
  padding: 90px 28px;
  background: #f5f7f8;
}

.flujo-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7b8783;
  font-weight: 800;
}

.step.active {
  color: var(--verde-oscuro);
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dce8f3;
}

.step.active .step-circle {
  background: var(--turquesa-2);
  color: #fff;
}

.step-line {
  width: 40px;
  height: 2px;
  background: #dce8f3;
}

.titulo-paso {
  text-align: center;
  margin-bottom: 28px;
}

.titulo-paso span {
  color: var(--turquesa-2);
  font-weight: 950;
}

.titulo-paso h2 {
  margin: 8px 0 0;
  color: var(--verde-oscuro);
}

.grid-grupos-reserva {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.grupo-card,
.proteccion-card,
.form-datos-reserva,
.pantalla-exito-reserva {
  background: #fff;
  border: 1px solid #e3ece9;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.grupo-card.destacado,
.proteccion-card.recomendada {
  border-color: var(--turquesa-2);
}

.protecciones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-datos-reserva {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.form-datos-reserva input,
.form-datos-reserva select,
.form-datos-reserva textarea,
.buscador-reserva input,
.buscador-reserva select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d4dfdc;
  border-radius: 14px;
  padding: 0 14px;
  font-family: inherit;
  outline: none;
}

.form-datos-reserva textarea {
  padding-top: 12px;
  min-height: 90px;
}

.pantalla-exito-reserva {
  max-width: 760px;
  margin: 80px auto;
  text-align: center;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1280px) {
  #inicio.hero-reservas {
    grid-template-columns: 320px minmax(500px, 640px) 220px;
    gap: 30px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .resumen-reserva-ciro {
    width: 320px;
  }

  .ciro-mascota-area,
  .ciro-mascota {
    width: 220px;
  }

  .selector-gamas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-gama-ciro {
    min-height: 230px;
  }
}

@media (max-width: 1040px) {
  #inicio.hero-reservas {
    grid-template-columns: 320px minmax(420px, 1fr);
  }

  .ciro-mascota-area {
    display: none;
  }

  .grid-gamas,
  #listaGamas,
  .grid-grupos-reserva {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-beneficios,
  .grid-experiencias {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-content {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px;
  }

  .nav-reservas {
    display: none;
  }

  .logo-reservas-horizontal {
    height: 48px;
  }

  #inicio.hero-reservas {
    min-height: auto;
    padding: 98px 16px 28px;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
  }

  .resumen-reserva-ciro {
    width: 100%;
    min-height: auto;
    padding: 22px;
  }

  .resumen-reserva-header h1 {
    font-size: 28px;
  }

  .ciro-chat-card {
    max-width: 100%;
    min-height: 560px;
    border-radius: 24px;
  }

  .ciro-chat-header {
    padding: 16px 18px;
    min-height: 82px;
  }

  .ciro-chat-header h3 {
    font-size: 22px;
  }

  .ciro-chat-body {
     padding: 16px 18px;
  }

  .ciro-msg {
    max-width: 92%;
  }

  .selector-gamas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-gama-ciro img {
    width: 100px;
  }

  .grid-gamas,
  #listaGamas,
  .grid-grupos-reserva,
  .protecciones-grid {
    grid-template-columns: 1fr;
  }

  .ciro-cta-reserva {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .selector-gamas-grid {
    grid-template-columns: 1fr;
  }

  .card-gama-ciro {
    min-height: auto;
  }
}


#inicio.hero-reservas {
  grid-template-columns: 300px 560px 220px;
  gap: 34px;
  align-items: start;
  padding: 86px 70px 40px;
}

#inicio .resumen-reserva-ciro {
  width: 300px;
  max-width: 300px;
}

#inicio .ciro-chat-card {
  width: 560px;
  max-width: 560px;
  min-height: auto;
}

#inicio .ciro-chat-body {
  height: 340px;
  max-height: 340px;
  overflow-y: auto;
}

#inicio .ciro-mascota-area {
  width: 220px;
  max-width: 220px;
  padding-top: 30px;
}

#inicio .ciro-mascota {
  width: 220px;
  max-width: 220px;
}

#inicio .ciro-badge-ayuda {
  margin-top:-40px;
}

#inicio.hero-reservas {
  grid-template-columns: 300px 560px 240px;
  gap: 46px;
  padding-top: 72px;
}

#inicio .resumen-reserva-ciro {
  max-height: 530px;
  overflow-y: auto;
}

#inicio .ciro-chat-card {
  margin-top: 0;
}

#inicio .ciro-mascota-area {
  padding-top: 90px;
}

#inicio .ciro-badge-ayuda {
  max-width: 210px;
}

/* =========================================================
   CARDS DE ADICIONALES DENTRO DEL CHAT
========================================================= */

.selector-adicionales-ciro {
  max-width: 100%;
  margin: 16px 0 8px;
}

.selector-adicionales-ciro.oculto {
  display: none !important;
}

.selector-adicionales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.card-adicional-ciro {
  position: relative;
  min-height: 128px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce8f5;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: .2s ease;
  overflow: hidden;
}

.card-adicional-ciro:hover {
  transform: translateY(-2px);
  border-color: #16bce3;
  box-shadow: 0 12px 26px rgba(0,0,0,.10);
}

.card-adicional-ciro.activa {
  border-color: #16bce3;
  background: #f0fffb;
  box-shadow: 0 12px 26px rgba(22,188,227,.16);
}

.card-adicional-ciro.activa::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 134, 223, .22);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.card-adicional-ciro.activa::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a86df;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 90, 70, .25);
  pointer-events: none;
  z-index: 3;
}

.card-adicional-icono {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(22,188,227,.10);
  font-size: 18px;
}

.card-adicional-ciro h4 {
  margin: 0;
  color: #082f6c;
  font-size: 13px;
  font-weight: 900;
}

.card-adicional-ciro p {
  margin: 5px 0 10px;
  color: #5c708b;
  font-size: 10px;
  line-height: 1.35;
}

.card-adicional-ciro strong {
  margin-top: auto;
  display: block;
  padding: 7px 8px;
  border: 1px solid #16bce3;
  border-radius: 999px;
  color: #0a72c9;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.btn-continuar-adicionales-ciro {
  width: 100%;
  height: 42px;
  margin-top: 12px;
  border: 1px solid #16bce3;
  border-radius: 999px;
  background: #0a86df;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.selector-datos-cliente-ciro {
  max-width: 100%;
  margin: 16px 0 8px;
}

.selector-datos-cliente-ciro.oculto {
  display: none !important;
}

.datos-cliente-ciro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.card-dato-cliente-ciro {
  min-height: 160px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #dce8f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-dato-cliente-full {
  grid-column: 1 / -1;
}

.card-dato-cliente-ciro span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(22,188,227,.10);
  font-size: 18px;
}

.card-dato-cliente-ciro h4 {
  margin: 0 0 4px;
  color: #082f6c;
  font-size: 13px;
  font-weight: 900;
}

.card-dato-cliente-ciro p {
  margin: 0;
  color: #5c708b;
  font-size: 10px;
  line-height: 1.35;
}

.card-dato-cliente-ciro input {
  width: 100%;
  height: 42px;
  margin-top: auto;
  border: 1px solid #d9e5f1;
  border-radius: 999px;
  padding: 0 14px;
  color: #132b4b;
  font-family: inherit;
  font-size: 12px;
  outline: none;
}

.card-dato-cliente-ciro input:focus {
  border-color: #16bce3;
  box-shadow: 0 0 0 4px rgba(22,188,227,.10);
}

.btn-continuar-datos-cliente-ciro {
  width: 100%;
  height: 42px;
  margin-top: 12px;
  border: 1px solid #16bce3;
  border-radius: 999px;
  background: #0a86df;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

/* =========================================================
   CIRO HERO - AJUSTE FINAL RESPONSIVE
========================================================= */

#inicio.hero-reservas {
  height: auto;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(260px, 300px) minmax(420px, 560px) minmax(180px, 240px);
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: clamp(84px, 9vh, 104px) clamp(22px, 5vw, 70px) clamp(30px, 5vh, 46px);
}

#inicio .panel-resumen-ciro,
#inicio .ciro-chat-card {
  width: 100%;
  max-width: none;
}

#inicio .panel-resumen-ciro {
  height: clamp(460px, 62vh, 540px);
}

#inicio .resumen-reserva-ciro {
  width: auto;
  max-width: none;
  max-height: none;
  overflow-y: auto;
}

#inicio .ciro-chat-card {
  height: clamp(500px, 68vh, 620px);
  min-height: 0;
}

#inicio .ciro-chat-body {
  height: auto;
  max-height: none;
  min-height: 0;
}

#inicio .ciro-mascota-area {
  width: 100%;
  max-width: 240px;
  height: auto;
  padding-top: 0;
  transform: none;
}

#inicio .ciro-mascota {
  width: min(100%, 230px);
  max-width: 230px;
  margin-top: 0;
}

#inicio .ciro-badge-ayuda {
  width: min(100%, 210px);
  max-width: 210px;
  margin-top: -26px;
}

.ciro-minimizar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.ciro-minimizar:hover {
  background: rgba(255,255,255,.12);
}

.ciro-chat-card.ciro-chat-minimizado {
  height: auto;
}

.ciro-chat-card.ciro-chat-minimizado .ciro-chat-body,
.ciro-chat-card.ciro-chat-minimizado .ciro-input-area {
  display: none;
}

@media (max-width: 1100px) {
  #inicio.hero-reservas {
    grid-template-columns: minmax(240px, 300px) minmax(420px, 1fr);
  }

  #inicio .ciro-mascota-area {
    display: none;
  }
}

@media (max-width: 820px) {
  #inicio.hero-reservas {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 96px 16px 28px;
    overflow: visible;
  }

  #inicio .panel-resumen-ciro {
    order: 2;
    height: auto;
    min-height: 210px;
  }

  #inicio .ciro-chat-card {
    order: 1;
    height: min(680px, calc(100vh - 132px));
    min-height: 520px;
    border-radius: 20px;
  }

  #inicio .ciro-chat-body {
    padding: 16px;
  }

  #inicio .ciro-msg {
    max-width: 92%;
  }

  #inicio .estado-inicial-ciro,
  #inicio .resumen-reserva-ciro {
    position: relative;
    inset: auto;
  }

  #inicio .resumen-reserva-ciro {
    display: none;
  }

  #inicio.reserva-iniciada .estado-inicial-ciro {
    display: none;
  }

  #inicio.reserva-iniciada .resumen-reserva-ciro {
    display: block;
  }

  #inicio .selector-gamas-grid,
  #inicio .selector-ciudades-grid,
  #inicio .selector-fechas-grid,
  #inicio .selector-proteccion-grid,
  #inicio .datos-cliente-ciro-grid,
  #inicio .selector-adicionales-grid {
    grid-template-columns: 1fr;
  }

  #inicio .card-dato-cliente-full {
    grid-column: auto;
  }

  #inicio .card-gama-ciro {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  #inicio.hero-reservas {
    padding-left: 12px;
    padding-right: 12px;
  }

  #inicio .ciro-chat-card {
    min-height: 500px;
  }

  #inicio .ciro-chat-header {
    padding: 14px;
  }

  #inicio .ciro-input-area {
    grid-template-columns: 1fr 42px;
    gap: 10px;
    padding: 12px;
  }

  #inicio .ciro-input-area button,
  #inicio .ciro-input-area input {
    height: 42px;
  }
}

/* =========================================================
   CIRO PERSONAJE ANIMADO
========================================================= */

#inicio .ciro-character {
  width: min(100%, 240px);
  max-width: 240px;
  position: relative;
  display: grid;
  place-items: end center;
  isolation: isolate;
  transform-origin: 50% 92%;
  animation: ciro-sway 7.5s ease-in-out infinite;
  will-change: transform;
}

#inicio .ciro-character-body {
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  transform-origin: 50% 72%;
  animation:
    ciro-breathe 4.8s ease-in-out infinite,
    ciro-head-tilt 12s ease-in-out infinite;
  will-change: transform;
}

#inicio .ciro-character .ciro-mascota {
  width: 100%;
  max-width: 240px;
  margin: 0;
  display: block;
  object-fit: contain;
  transform-origin: 50% 92%;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.35));
}

#inicio .ciro-eye {
  position: absolute;
  width: 13%;
  height: 4.2%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.24), rgba(255,255,255,0) 48%),
    linear-gradient(180deg, #6c3617 0%, #2e160b 72%);
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
  opacity: 0;
  transform: scaleY(.12);
  transform-origin: center;
  animation: ciro-blink var(--ciro-blink-duration, 6.6s) ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

#inicio .ciro-eye-left {
  left: 38.2%;
  top: 22.7%;
  rotate: -7deg;
}

#inicio .ciro-eye-right {
  left: 58.5%;
  top: 23.7%;
  rotate: 7deg;
  animation-delay: .04s;
}

@keyframes ciro-sway {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  28% {
    transform: translate3d(-2px, 1px, 0) rotate(-1.1deg);
  }
  58% {
    transform: translate3d(2px, 0, 0) rotate(.8deg);
  }
  78% {
    transform: translate3d(-1px, -1px, 0) rotate(-.35deg);
  }
}

@keyframes ciro-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -2px, 0) scale(1.012);
  }
}

@keyframes ciro-head-tilt {
  0%, 68%, 100% {
    rotate: 0deg;
  }
  75% {
    rotate: -1.8deg;
  }
  84% {
    rotate: 1.3deg;
  }
}

@keyframes ciro-blink {
  0%, 91%, 100% {
    opacity: 0;
    transform: scaleY(.12);
  }
  93%, 96% {
    opacity: .96;
    transform: scaleY(1);
  }
  98% {
    opacity: 0;
    transform: scaleY(.12);
  }
}

@media (max-width: 1100px) {
  #inicio .ciro-character {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #inicio .ciro-character,
  #inicio .ciro-character-body,
  #inicio .ciro-eye {
    animation: none;
  }
}



.grid-confirmacion-ciro{
    display:grid;
    gap:16px;
    margin-top:16px;
}

.card-confirmacion-ciro{
    background:#fff;
    border:2px solid #dfe7e3;
    border-radius:18px;
    padding:18px;
    text-align:left;
    cursor:pointer;
    transition:.25s;
}

.card-confirmacion-ciro:hover{
    border-color:#0d5c4b;
    transform:translateY(-2px);
}

.card-confirmacion-ciro h4{
    margin:0 0 8px;
    color:#082f6c;
}

.card-confirmacion-ciro p{
    margin:0 0 8px;
    font-weight:600;
}

.card-confirmacion-ciro small{
    color:#666;
    line-height:1.5;
}

@media (max-width: 768px) {
  .ciro-chat-card {
    margin-top: 92px !important;
    max-height: calc(100vh - 110px) !important;
  }

  .ciro-layout,
  .ciro-section,
  .ciro-chat-wrapper {
    padding-top: 80px !important;
  }
}

/* =========================================================
   EME · FLUJO CONVENCIONAL DE RESERVA
========================================================= */

.hero-reservas-convencional {
  position: relative !important;
  min-height: 720px !important;
  height: auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 118px 28px 56px !important;

  background-image:
    linear-gradient(
      90deg,
      rgba(0, 42, 32, .93) 0%,
      rgba(0, 42, 32, .68) 48%,
      rgba(0, 42, 32, .30) 100%
    ),
    url("img/hero/hero-2.jpg") !important;

  background-size: cover !important;
  background-position: center !important;
  overflow: hidden !important;
}

.hero-convencional-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(34, 199, 233, .14),
      transparent 34%
    );
}

.hero-convencional-contenido {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, .95fr);

  align-items: center;
  gap: clamp(38px, 6vw, 82px);
}

.hero-convencional-copy {
  color: #ffffff;
}

.hero-convencional-badge {
  display: inline-flex;
  align-items: center;

  min-height: 30px;
  padding: 0 12px;

  border: 1px solid rgba(34, 199, 233, .34);
  border-radius: 999px;

  background: rgba(34, 199, 233, .12);
  color: #37e7c2;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero-convencional-copy h1 {
  max-width: 680px;

  margin: 18px 0 16px;

  color: #ffffff;

  font-size: clamp(42px, 5.4vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
}

.hero-convencional-copy p {
  max-width: 620px;

  margin: 0;

  color: rgba(255,255,255,.82);

  font-size: 16px;
  line-height: 1.65;
}

.hero-convencional-beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin-top: 24px;
}

.hero-convencional-beneficios span {
  padding: 8px 11px;

  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;

  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);

  font-size: 11px;
  font-weight: 700;
}

.buscador-reserva-premium {
  padding: 26px;

  border: 1px solid rgba(255,255,255,.64);
  border-radius: 24px;

  background: rgba(255,255,255,.96);

  box-shadow:
    0 30px 80px rgba(0,0,0,.30);

  backdrop-filter: blur(18px);
}

.buscador-reserva-header {
  margin-bottom: 20px;
}

.buscador-reserva-header > span {
  color: #00876d;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.buscador-reserva-header h2 {
  margin: 5px 0 6px;

  color: #052f27;

  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.buscador-reserva-header p {
  margin: 0;

  color: #6b7b75;

  font-size: 12px;
  line-height: 1.45;
}

.buscador-reserva-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 13px;
}

.campo-reserva {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.campo-reserva-completo {
  grid-column: 1 / -1;
}

.campo-reserva > span {
  color: #43554e;

  font-size: 10px;
  font-weight: 850;
}

.buscador-reserva-premium input,
.buscador-reserva-premium select {
  width: 100%;
  height: 46px;

  border: 1px solid #d8e3df;
  border-radius: 11px;

  padding: 0 12px;

  background: #ffffff;
  color: #183029;

  font-family: inherit;
  font-size: 12px;

  outline: none;
}

.buscador-reserva-premium input:focus,
.buscador-reserva-premium select:focus {
  border-color: #0a86df;

  box-shadow:
    0 0 0 4px rgba(10,134,223,.11);
}

.btn-buscar-reserva {
  width: 100%;
  min-height: 48px;

  margin-top: 17px;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #007d5e,
      #00ad88
    );

  font-size: 13px;

  box-shadow:
    0 10px 22px rgba(0,125,94,.20);
}

.buscador-reserva-nota {
  display: block;

  margin-top: 10px;

  color: #71839a;

  font-size: 9px;
  text-align: center;
}

.ciro-cta-reserva-convencional {
  padding-left: max(28px, calc((100vw - 1180px) / 2));
  padding-right: max(28px, calc((100vw - 1180px) / 2));
}

.flujo-reserva {
  padding: 84px 28px;
}

.flujo-container {
  grid-template-columns:
    minmax(0, 1fr)
    300px;

  align-items: start;
  gap: 28px;
}

.flujo-main {
  min-width: 0;
}

.resumen-reserva {
  position: sticky;
  top: 96px;

  padding: 22px;

  border: 1px solid #dde8e4;
  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 12px 34px rgba(15, 44, 34, .08);
}

.resumen-reserva h3 {
  margin: 0 0 14px;

  color: #07372d;

  font-size: 17px;
  font-weight: 900;
}

.resumen-reserva .resumen-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;

  padding: 12px 0;

  border-bottom: 1px solid #edf4fb;
}

.resumen-reserva .resumen-item span {
  color: #74827c;

  font-size: 10px;
}

.resumen-reserva .resumen-item strong {
  max-width: 170px;

  color: #1c3029;

  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.resumen-reserva .resumen-total {
  margin-top: 16px;
  padding: 14px;

  border-radius: 14px;

  background: #edf9f5;
}

.resumen-reserva .resumen-total small {
  color: #0b67c8;
}

.resumen-reserva .resumen-total strong {
  color: #064f3d;

  font-size: 21px;
}

.grid-grupos-reserva {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.grupo-card {
  display: flex;
  flex-direction: column;
}

.grupo-card .btn-elegir-grupo,
.grupo-card .btn-detalles-grupo {
  width: 100%;

  margin-top: 8px;
}

.grid-protecciones {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}

.confirmacion-card,
.exito-card {
  max-width: 860px;
  margin: 0 auto;

  padding: 28px;

  border: 1px solid #dfe9e5;
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 14px 38px rgba(15, 44, 34, .08);
}

.confirmacion-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}

.confirmacion-bloque,
.opcion-pago-card {
  padding: 16px;

  border: 1px solid #e1eae6;
  border-radius: 15px;

  background: #fbfdfc;
}

.opciones-pago {
  display: grid;
  gap: 10px;

  margin-top: 22px;
}

.opcion-pago-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  cursor: pointer;
}

.btn-confirmar-reserva,
.btn-continuar-reserva,
.btn-volver-inicio {
  width: 100%;
  min-height: 48px;

  margin-top: 18px;

  border: none;
  border-radius: 12px;

  background: #0b67c8;
  color: #ffffff;

  font-family: inherit;
  font-weight: 900;

  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-reservas-convencional {
    min-height: auto !important;
    padding: 104px 18px 38px !important;
  }

  .hero-convencional-contenido {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-convencional-copy h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .flujo-container {
    grid-template-columns: 1fr;
  }

  .resumen-reserva {
    position: static;
    order: -1;
  }
}

@media (max-width: 620px) {
  .header-actions .btn-whatsapp {
    display: none;
  }

  .hero-convencional-copy h1 {
    font-size: 38px;
  }

  .hero-convencional-copy p {
    font-size: 14px;
  }

  .buscador-reserva-premium {
    padding: 18px;
    border-radius: 18px;
  }

  .buscador-reserva-grid,
  .grid-grupos-reserva,
  .grid-protecciones,
  .confirmacion-grid {
    grid-template-columns: 1fr;
  }

  .campo-reserva-completo {
    grid-column: auto;
  }

  .steps-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .step-line {
    min-width: 24px;
  }
}


/* =========================================================
   EME · RESERVAS PÚBLICAS · AJUSTES 2026-08-05
   - Buscador horizontal
   - Hero sincronizado con reservas-admin
   - Cuatro gamas en una fila
   - Sin resumen lateral durante selección de gama
========================================================= */

/* HERO DINÁMICO */
.hero-reservas-convencional {
  position: relative !important;
  min-height: 640px !important;

  display: flex !important;
  align-items: flex-end !important;

  padding:
    130px
    max(24px, calc((100vw - 1240px) / 2))
    48px !important;

  background: #073d31 !important;
}

.hero-publico-fondo {
  position: absolute;
  inset: 0;

  background-image:
    url("img/hero/hero-2.jpg");

  background-size: cover;
  background-position: center;

  transition:
    background-image .45s ease,
    opacity .45s ease;

  z-index: 0;
}

.hero-convencional-overlay {
  z-index: 1 !important;

  background:
    linear-gradient(
      90deg,
      rgba(0, 43, 32, .92) 0%,
      rgba(0, 43, 32, .66) 50%,
      rgba(0, 43, 32, .26) 100%
    ) !important;
}

.hero-convencional-contenido {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%) !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 34px !important;
}

.hero-convencional-copy {
  max-width: 680px;
}

.hero-convencional-copy h1 {
  font-size: clamp(42px, 5vw, 68px) !important;
}

.hero-publico-dots {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-top: 22px;
}

.hero-publico-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;

  background: rgba(255,255,255,.28);

  cursor: pointer;

  transition:
    width .2s ease,
    background .2s ease;
}

.hero-publico-dot.activo {
  width: 28px;

  background: #23c7e8;
  border-color: #23c7e8;
}

/* BUSCADOR HORIZONTAL TIPO RENT-A-CAR */
.buscador-reserva-horizontal {
  width: 100%;

  padding: 20px 22px 17px !important;

  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 16px !important;

  background:
    linear-gradient(
      135deg,
      rgba(0, 84, 59, .98),
      rgba(0, 59, 43, .98)
    ) !important;

  box-shadow:
    0 22px 55px rgba(0,0,0,.26) !important;

  backdrop-filter: blur(12px);
}

.buscador-reserva-horizontal__encabezado {
  display: flex;
  align-items: baseline;
  gap: 11px;

  margin-bottom: 13px;
}

.buscador-reserva-horizontal__encabezado span {
  color: #40e1ba;

  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
}

.buscador-reserva-horizontal__encabezado strong {
  color: #ffffff;

  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
}

.buscador-reserva-horizontal__campos {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.6fr)
    minmax(140px, .85fr)
    minmax(125px, .72fr)
    minmax(140px, .85fr)
    minmax(125px, .72fr)
    minmax(155px, .9fr);

  gap: 10px;
  align-items: end;
}

.buscador-reserva-horizontal .campo-reserva {
  min-width: 0;

  gap: 5px;
}

.buscador-reserva-horizontal .campo-reserva > span {
  color: rgba(255,255,255,.78);

  font-size: 8px;
  font-weight: 850;
}

.campo-reserva-control {
  position: relative;

  min-width: 0;
}

.campo-reserva-control > i {
  position: absolute;
  left: 13px;
  top: 50%;

  transform: translateY(-50%);

  color: #0b67c8;

  font-size: 13px;

  pointer-events: none;
  z-index: 2;
}

.buscador-reserva-horizontal input,
.buscador-reserva-horizontal select {
  width: 100% !important;
  height: 52px !important;

  padding:
    0
    11px
    0
    38px !important;

  border: 1px solid rgba(255,255,255,.26) !important;
  border-radius: 9px !important;

  background: #ffffff !important;
  color: #25372f !important;

  font-size: 11px !important;
  font-weight: 750 !important;

  box-shadow: none !important;
}

.btn-buscar-reserva-horizontal {
  width: 100%;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 0 !important;
  padding: 0 14px;

  border: 1px solid #21d1ad !important;
  border-radius: 9px !important;

  background:
    linear-gradient(
      135deg,
      #0cb18b,
      #18c5a0
    ) !important;

  color: #ffffff;

  font-size: 11px !important;
  font-weight: 900;

  box-shadow:
    0 8px 18px rgba(0,0,0,.16) !important;
}

.buscador-reserva-horizontal__nota {
  display: block;

  margin-top: 9px;

  color: rgba(255,255,255,.62);

  font-size: 8px;
  text-align: right;
}

/* PASO 2 — SIN RESUMEN LATERAL */
.flujo-reserva.paso-grupos-activo .flujo-container {
  grid-template-columns:
    minmax(0, 1fr) !important;

  max-width: 1480px !important;
}

.flujo-reserva.paso-grupos-activo .resumen-reserva {
  display: none !important;
}

.flujo-reserva.paso-grupos-activo .flujo-main {
  width: 100% !important;
}

/* CUATRO GAMAS EN UNA SOLA FILA */
.flujo-reserva.paso-grupos-activo .grid-grupos-reserva {
  display: grid !important;
  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;

  gap: 14px !important;
  align-items: stretch !important;

  width: 100% !important;
  max-width: none !important;
}

.flujo-reserva.paso-grupos-activo .grupo-card {
  min-width: 0 !important;
  height: 100% !important;

  padding: 16px !important;

  border-radius: 17px !important;
}

.flujo-reserva.paso-grupos-activo .grupo-header h3 {
  min-height: 42px;

  font-size: 16px !important;
  line-height: 1.2 !important;
}

.flujo-reserva.paso-grupos-activo .grupo-header p {
  min-height: 35px;

  font-size: 11px !important;
}

.flujo-reserva.paso-grupos-activo .grupo-imagen {
  height: 150px !important;
}

.flujo-reserva.paso-grupos-activo .grupo-imagen img {
  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;
}

.flujo-reserva.paso-grupos-activo .grupo-precio strong {
  font-size: 21px !important;
}

.flujo-reserva.paso-grupos-activo .btn-elegir-grupo {
  margin-top: auto !important;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .buscador-reserva-horizontal__campos {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

  .campo-reserva-ciudad {
    grid-column: span 2;
  }

  .flujo-reserva.paso-grupos-activo .grid-grupos-reserva {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .hero-reservas-convencional {
    min-height: auto !important;

    padding:
      104px
      14px
      24px !important;
  }

  .hero-convencional-contenido {
    gap: 24px !important;
  }

  .hero-convencional-copy h1 {
    font-size: 38px !important;
  }

  .buscador-reserva-horizontal {
    padding: 17px !important;
  }

  .buscador-reserva-horizontal__encabezado {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .buscador-reserva-horizontal__campos {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .campo-reserva-ciudad,
  .btn-buscar-reserva-horizontal {
    grid-column: 1 / -1;
  }

  .buscador-reserva-horizontal__nota {
    text-align: center;
  }

  .flujo-reserva.paso-grupos-activo .grid-grupos-reserva {
    grid-template-columns:
      1fr !important;
  }
}

@media (max-width: 430px) {
  .buscador-reserva-horizontal__campos {
    grid-template-columns: 1fr;
  }

  .campo-reserva-ciudad,
  .btn-buscar-reserva-horizontal {
    grid-column: auto;
  }
}


/* =========================================================
   EME · PASO PROTECCIÓN PREMIUM
   Basado en la propuesta visual aprobada
========================================================= */

.flujo-reserva.paso-proteccion-activo .flujo-container {
  max-width: 1220px !important;

  grid-template-columns:
    minmax(0, 1fr)
    280px !important;

  gap: 34px !important;
}

.paso-proteccion-premium {
  width: 100%;
}

.titulo-paso-proteccion {
  margin-bottom: 34px !important;
}

.titulo-paso-proteccion > span {
  color: #0b74c7 !important;

  font-size: 13px !important;
  font-weight: 900 !important;
}

.titulo-paso-proteccion > h2 {
  margin-top: 8px !important;

  color: #082f6c !important;

  font-size: 29px !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
}

.titulo-paso-proteccion > p {
  margin: 10px auto 0;

  color: #6c7975;

  font-size: 14px;
  line-height: 1.45;
}

.grid-protecciones-premium {
  display: grid !important;

  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;

  gap: 24px !important;
  align-items: stretch !important;
}

.proteccion-card-premium {
  position: relative;

  min-width: 0;
  min-height: 510px;

  display: flex !important;
  flex-direction: column !important;

  padding: 30px !important;

  border: 1px solid #dce6f0 !important;
  border-radius: 20px !important;

  background: #ffffff !important;

  box-shadow:
    0 14px 36px rgba(17, 46, 36, .07) !important;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease !important;
}

.proteccion-card-premium:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 44px rgba(17, 46, 36, .10) !important;
}

.proteccion-card-premium.seleccionada {
  border-color: #0a73c9 !important;

  box-shadow:
    0 0 0 3px rgba(7, 149, 104, .10),
    0 18px 44px rgba(17, 46, 36, .10) !important;
}

.proteccion-total {
  border-color: #56c99f !important;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfffd 100%
    ) !important;
}

.proteccion-card-cabecera {
  display: grid;

  grid-template-columns:
    76px
    minmax(0, 1fr);

  align-items: center;
  gap: 18px;
}

.proteccion-icono {
  width: 76px;
  height: 76px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-size: 30px;
}

.proteccion-icono-neutro {
  border: 1px solid #e0e5e3;

  background: #f4f6f5;
  color: #65706c;
}

.proteccion-icono-verde {
  background: #e6f7ef;
  color: #0b6cc2;
}

.proteccion-card-cabecera h3 {
  margin: 0 !important;

  color: #16352d !important;

  font-size: 23px !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
}

.proteccion-card-cabecera p {
  margin: 8px 0 0 !important;

  color: #60738c !important;

  font-size: 14px !important;
  line-height: 1.55 !important;
}

.proteccion-badge-incluida {
  width: fit-content;

  margin-top: 22px;
  padding: 8px 15px;

  border-radius: 999px;

  background: #eaf6f0;
  color: #0b67c8;

  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.proteccion-card-premium .badge-recomendado {
  position: absolute !important;
  top: -13px !important;
  right: 28px !important;

  min-height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 18px !important;

  border-radius: 9px !important;

  background:
    linear-gradient(
      135deg,
      #0b67c8,
      #00a879
    ) !important;

  color: #ffffff !important;

  font-size: 11px !important;
  font-weight: 950 !important;

  box-shadow:
    0 8px 18px rgba(8, 122, 89, .18);
}

.proteccion-precio-premium {
  display: flex !important;
  align-items: baseline !important;
  gap: 9px !important;

  margin-top: 22px !important;
}

.proteccion-precio-premium strong {
  color: #066a4b !important;

  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

.proteccion-precio-premium span {
  color: #364a43 !important;

  font-size: 14px !important;
}

.proteccion-impacto-reserva {
  display: grid;

  grid-template-columns:
    38px
    minmax(0, 1fr);

  align-items: center;
  gap: 12px;

  margin-top: 18px;
  padding: 15px 17px;

  border-radius: 13px;

  background:
    linear-gradient(
      135deg,
      #eef9f4,
      #e8f7f0
    );
}

.proteccion-impacto-reserva > i {
  color: #0b9c6d;

  font-size: 23px;
}

.proteccion-impacto-reserva small,
.proteccion-impacto-reserva strong {
  display: block;
}

.proteccion-impacto-reserva small {
  color: #425a51;

  font-size: 11px;
}

.proteccion-impacto-reserva strong {
  margin-top: 3px;

  color: #0b67c8;

  font-size: 14px;
  font-weight: 950;
}

.proteccion-divisor {
  height: 1px;

  margin: 26px 0 22px;

  background: #e2e8e5;
}

.proteccion-beneficios {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}

.proteccion-beneficios li {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  color: #293c35;

  font-size: 13px !important;
  line-height: 1.4 !important;
}

.proteccion-beneficios li::marker {
  content: "";
}

.proteccion-beneficios i {
  flex: 0 0 auto;

  margin-top: 2px;

  color: #0b74c7;

  font-size: 15px;
}

.btn-proteccion-secundaria,
.btn-proteccion-principal {
  width: 100% !important;
  min-height: 50px !important;

  margin-top: auto !important;
  padding: 0 16px !important;

  border-radius: 11px !important;

  font-size: 13px !important;
  font-weight: 950 !important;

  cursor: pointer !important;
}

.btn-proteccion-secundaria {
  border: 1px solid #0a73c9 !important;

  background: #ffffff !important;
  color: #0b67c8 !important;
}

.btn-proteccion-principal {
  border: 1px solid #0b67c8 !important;

  background:
    linear-gradient(
      135deg,
      #0b67c8,
      #049c70
    ) !important;

  color: #ffffff !important;

  box-shadow:
    0 9px 19px rgba(8, 122, 89, .16);
}

.proteccion-nota-incluida {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 17px;

  color: #325047;

  font-size: 10px;
  font-weight: 750;
}

.proteccion-nota-incluida i {
  color: #0b74c7;
}

.proteccion-aviso-inferior {
  max-width: 680px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin: 30px auto 0;
  padding: 13px 18px;

  border: 1px solid #d2e9df;
  border-radius: 11px;

  background: #f1faf6;
  color: #2f5347;

  font-size: 11px;
}

.proteccion-aviso-inferior i {
  color: #0a73c9;

  font-size: 15px;
}

/* RESUMEN LATERAL DURANTE PROTECCIÓN */
.flujo-reserva.paso-proteccion-activo .resumen-reserva {
  top: 86px !important;

  padding: 24px !important;

  border-radius: 18px !important;
}

.flujo-reserva.paso-proteccion-activo .resumen-reserva h3 {
  font-size: 17px !important;
}

.flujo-reserva.paso-proteccion-activo
.resumen-reserva .resumen-total {
  margin-top: 18px !important;
  padding: 18px !important;

  background:
    linear-gradient(
      135deg,
      #edf9f5,
      #e8f6f0
    ) !important;
}

.flujo-reserva.paso-proteccion-activo
.resumen-reserva .resumen-total strong {
  margin-top: 5px;

  font-size: 25px !important;
}

.resumen-comparacion-proteccion {
  display: none;

  margin-top: 18px;
  padding-top: 18px;

  border-top: 1px solid #dce6f0;
}

.flujo-reserva.paso-proteccion-activo
.resumen-comparacion-proteccion {
  display: flex;

  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.resumen-comparacion-proteccion > span {
  color: #344b43;

  font-size: 11px;
  font-weight: 850;
}

.resumen-comparacion-proteccion > strong {
  color: #0b67c8;

  font-size: 23px;
  line-height: 1;
  font-weight: 950;
}

.resumen-comparacion-proteccion > small {
  display: inline-flex;

  margin-top: 4px;
  padding: 6px 10px;

  border-radius: 999px;

  background: #dcf4e8;
  color: #0b67c8;

  font-size: 10px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .flujo-reserva.paso-proteccion-activo .flujo-container {
    grid-template-columns: 1fr !important;
  }

  .flujo-reserva.paso-proteccion-activo .resumen-reserva {
    position: static !important;
    order: -1;
  }
}

@media (max-width: 720px) {
  .grid-protecciones-premium {
    grid-template-columns: 1fr !important;
  }

  .proteccion-card-premium {
    min-height: auto;
    padding: 23px !important;
  }

  .proteccion-card-cabecera {
    grid-template-columns:
      58px
      minmax(0, 1fr);

    gap: 13px;
  }

  .proteccion-icono {
    width: 58px;
    height: 58px;

    font-size: 23px;
  }

  .proteccion-card-cabecera h3 {
    font-size: 19px !important;
  }

  .proteccion-card-premium .badge-recomendado {
    right: 18px !important;
  }

  .titulo-paso-proteccion > h2 {
    font-size: 24px !important;
  }

  .btn-proteccion-secundaria,
  .btn-proteccion-principal {
    margin-top: 24px !important;
  }
}


/* =========================================================
   EME · PASO SERVICIOS ADICIONALES
========================================================= */
.steps-bar{overflow-x:auto;scrollbar-width:none}.steps-bar::-webkit-scrollbar{display:none}
.flujo-reserva.paso-servicios-activo .flujo-container{max-width:1280px!important;grid-template-columns:minmax(0,1fr) 270px!important;gap:30px!important}
.titulo-paso-servicios{margin-bottom:28px!important}
.titulo-paso-servicios p{max-width:650px;margin:9px auto 0;color:#6c7975;font-size:13px;line-height:1.45}
.servicios-reserva-estado{min-height:180px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:9px;padding:24px;border:1px dashed #cfe1da;border-radius:18px;background:#fff;color:#63736c;text-align:center}
.servicios-reserva-estado i{color:#0b6cc2;font-size:24px}.servicios-reserva-estado strong{color:#19392f;font-size:15px}.servicios-reserva-estado span{font-size:11px}
.grid-servicios-reserva{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.servicio-reserva-card{min-width:0;display:flex;flex-direction:column;gap:15px;padding:20px;border:1px solid #dae5e0;border-radius:18px;background:#fff;box-shadow:0 10px 28px rgba(20,55,43,.06);transition:.2s}
.servicio-reserva-card:hover{transform:translateY(-2px);border-color:#9dcfbc;box-shadow:0 15px 34px rgba(20,55,43,.09)}
.servicio-reserva-card.seleccionado{border-color:#0a73c9;background:linear-gradient(180deg,#fff,#f8fffb);box-shadow:0 0 0 3px rgba(7,149,104,.09),0 15px 34px rgba(20,55,43,.08)}
.servicio-reserva-card-header{display:grid;grid-template-columns:52px minmax(0,1fr);gap:13px;align-items:center}
.servicio-reserva-icono{width:52px;height:52px;display:grid;place-items:center;border-radius:15px;background:#e9f7f1;color:#0b67c8;font-size:19px}
.servicio-reserva-card h3{margin:0;color:#15382d;font-size:15px;line-height:1.2;font-weight:950}
.servicio-reserva-card p{margin:5px 0 0;min-height:30px;color:#6a7772;font-size:10px;line-height:1.45}
.servicio-reserva-precio{display:flex;align-items:baseline;gap:7px}.servicio-reserva-precio strong{color:#0b67c8;font-size:20px;font-weight:950}.servicio-reserva-precio span{color:#718079;font-size:9px}
.servicio-reserva-selector{display:grid;grid-template-columns:36px minmax(42px,1fr) 36px;align-items:center;gap:8px;padding:7px;border:1px solid #dce7e2;border-radius:12px;background:#f7faf9}
.servicio-reserva-selector>strong{text-align:center;color:#183a2f;font-size:15px}
.servicio-cantidad-btn{width:36px;height:34px;display:grid;place-items:center;border:1px solid #cfe0d8;border-radius:9px;background:#fff;color:#0b67c8;cursor:pointer}.servicio-cantidad-btn:disabled{opacity:.35;cursor:default}
.servicio-reserva-subtotal{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:auto;padding-top:13px;border-top:1px solid #edf4f8}.servicio-reserva-subtotal span{color:#77857f;font-size:9px;font-weight:800}.servicio-reserva-subtotal strong{color:#1e3d33;font-size:12px;font-weight:950}
.servicios-reserva-footer{display:flex;justify-content:space-between;align-items:center;gap:22px;margin-top:24px;padding:18px 20px;border:1px solid #d9e7e1;border-radius:17px;background:#fff;box-shadow:0 10px 28px rgba(20,55,43,.05)}
.servicios-reserva-total{display:flex;flex-direction:column;gap:3px}.servicios-reserva-total span{color:#66766f;font-size:10px;font-weight:850;text-transform:uppercase}.servicios-reserva-total strong{color:#0b67c8;font-size:24px;font-weight:950}.servicios-reserva-total small{color:#819088;font-size:9px}
.servicios-reserva-acciones{display:flex;align-items:center;gap:9px}.btn-servicios-secundario,.btn-servicios-principal{min-height:44px;padding:0 17px;border-radius:10px;font-family:inherit;font-size:11px;font-weight:900;cursor:pointer}.btn-servicios-secundario{border:1px solid #cfddd7;background:#fff;color:#43574f}.btn-servicios-principal{display:inline-flex;align-items:center;gap:8px;border:1px solid #0b67c8;background:#0b67c8;color:#fff}
.final-servicios-lista{display:flex;flex-direction:column;gap:7px}.final-servicio-item{display:flex;justify-content:space-between;gap:12px;padding:8px 0;border-bottom:1px solid #edf4f8}.final-servicio-item:last-child{border-bottom:0}.final-servicio-item span,.final-servicio-item strong{font-size:11px}.final-servicio-item strong{color:#0b67c8;white-space:nowrap}
@media(max-width:1050px){.grid-servicios-reserva{grid-template-columns:repeat(2,minmax(0,1fr))}.flujo-reserva.paso-servicios-activo .flujo-container{grid-template-columns:1fr!important}.flujo-reserva.paso-servicios-activo .resumen-reserva{position:static!important;order:-1}}
@media(max-width:700px){.grid-servicios-reserva{grid-template-columns:1fr}.servicios-reserva-footer{flex-direction:column;align-items:stretch}.servicios-reserva-acciones{display:grid;grid-template-columns:1fr}.btn-servicios-secundario,.btn-servicios-principal{width:100%}.steps-bar{justify-content:flex-start!important}.step{flex:0 0 auto}.step-line{min-width:22px}}


/* =========================================================
   EME · SERVICIOS ADICIONALES EN FILAS
========================================================= */

#tablaServiciosReserva[hidden]{display:none!important}
.tabla-servicios-reserva{overflow:hidden;border:1px solid #cfe0d9;border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(24,61,48,.06)}
.servicios-reserva-encabezado,.fila-servicio-reserva{display:grid;grid-template-columns:minmax(190px,1.65fr) minmax(95px,.8fr) minmax(90px,.7fr) minmax(90px,.7fr) minmax(95px,.8fr) minmax(105px,.9fr) 38px;gap:8px;align-items:center}
.servicios-reserva-encabezado{padding:10px 12px;background:#075b49;color:#fff}
.servicios-reserva-encabezado span{font-size:10px;font-weight:900;text-align:center}
.servicios-reserva-encabezado span:first-child{text-align:left}
.filas-servicios-reserva{display:flex;flex-direction:column}
.fila-servicio-reserva{padding:10px 12px;border-bottom:1px solid #e7eeeb}
.fila-servicio-reserva:last-child{border-bottom:0}
.fila-servicio-reserva select,.fila-servicio-reserva input{width:100%;min-width:0;height:42px;border:1px solid #d5e0dc;border-radius:10px;padding:0 10px;background:#fff;color:#223b32;font-family:inherit;font-size:11px}
.fila-servicio-reserva input[readonly]{background:#f7faf9;color:#52635c}
.fila-servicio-reserva select:focus,.fila-servicio-reserva input:focus{outline:none;border-color:#0a8a67;box-shadow:0 0 0 3px rgba(10,138,103,.11)}
.btn-eliminar-fila-servicio-reserva{width:36px;height:36px;display:grid;place-items:center;border:1px solid #f1c8c8;border-radius:10px;background:#fff2f2;color:#c13d3d;cursor:pointer}
.btn-agregar-fila-servicio-reserva{min-height:42px;margin:12px;padding:0 15px;display:inline-flex;align-items:center;justify-content:center;gap:7px;border:1px solid #b9dccd;border-radius:10px;background:#eff9f5;color:#0b67c8;font-family:inherit;font-size:11px;font-weight:900;cursor:pointer}
.nota-servicios-reserva{display:block;margin:0 12px 13px;color:#74847d;font-size:9px}
#btnReintentarServiciosReserva{min-height:38px;margin-top:8px;padding:0 16px;border:1px solid #0b67c8;border-radius:10px;background:#0b67c8;color:#fff;font-weight:900;cursor:pointer}

@media(max-width:900px){
  .tabla-servicios-reserva{overflow-x:auto}
  .servicios-reserva-encabezado,.fila-servicio-reserva{min-width:860px}
}

@media(max-width:640px){
  .servicios-reserva-encabezado{display:none}
  .tabla-servicios-reserva{overflow:visible;border:0;background:transparent;box-shadow:none}
  .fila-servicio-reserva{min-width:0;grid-template-columns:1fr 1fr;gap:9px;margin-bottom:10px;padding:12px;border:1px solid #d6e4de;border-radius:14px;background:#fff}
  .fila-servicio-reserva select{grid-column:1/-1}
  .btn-eliminar-fila-servicio-reserva{grid-column:1/-1;width:100%}
  .btn-agregar-fila-servicio-reserva{width:calc(100% - 24px)}
}


/* =========================================================
   EME · SERVICIOS PÚBLICOS EN CARDS · PREMIUM
   Conectado con reservas-admin / serviciosAdicionales
========================================================= */

.flujo-reserva.paso-servicios-activo .flujo-container {
  max-width: 1450px !important;
  grid-template-columns:
    minmax(0, 1fr)
    330px !important;
  gap: 34px !important;
}

.paso-servicios-premium {
  width: 100%;
}

.titulo-paso-servicios {
  margin-bottom: 30px !important;
}

.titulo-paso-servicios > span {
  color: #0b74c7 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.titulo-paso-servicios > h2 {
  margin-top: 7px !important;
  color: #082f6c !important;
  font-size: 30px !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
}

.titulo-paso-servicios > p {
  max-width: 720px;
  margin: 9px auto 0;
  color: #6c7975;
  font-size: 13px;
  line-height: 1.5;
}

.servicios-reserva-estado {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed #cfe0d9;
  border-radius: 19px;
  background: #ffffff;
  color: #687872;
  text-align: center;
}

.servicios-reserva-estado > i {
  color: #0b67c8;
  font-size: 24px;
}

.servicios-reserva-estado strong {
  color: #244239;
  font-size: 14px;
}

.servicios-reserva-estado span {
  max-width: 520px;
  font-size: 11px;
  line-height: 1.45;
}

.servicios-reserva-estado button {
  min-height: 39px;
  margin-top: 5px;
  padding: 0 16px;
  border: 1px solid #0b67c8;
  border-radius: 9px;
  background: #0b67c8;
  color: #ffffff;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.catalogo-servicios-reserva {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.servicio-reserva-card {
  min-width: 0;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #dce6e2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 9px 26px rgba(17, 46, 36, .055);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.servicio-reserva-card:hover {
  transform: translateY(-2px);
  border-color: #91cdb7;
  box-shadow: 0 14px 34px rgba(17, 46, 36, .09);
}

.servicio-reserva-card.seleccionado {
  border-color: #0a73c9;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fffb 100%
    );
  box-shadow:
    0 0 0 3px rgba(7, 149, 104, .09),
    0 14px 34px rgba(17, 46, 36, .09);
}

.servicio-reserva-card-cabecera {
  display: grid;
  grid-template-columns:
    68px
    minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}

.servicio-reserva-card-icono {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      #e9f7f1,
      #dff2ea
    );
  color: #075b47;
  font-size: 27px;
}

.servicio-reserva-card.seleccionado
.servicio-reserva-card-icono {
  background:
    linear-gradient(
      145deg,
      #dff5ea,
      #ccebdd
    );
  color: #0b67c8;
}

.servicio-reserva-card h3 {
  margin: 3px 0 6px;
  color: #13352d;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.servicio-reserva-card p {
  min-height: 42px;
  margin: 0;
  color: #60738c;
  font-size: 11px;
  line-height: 1.45;
}

.servicio-reserva-card-tipo {
  width: fit-content;
  margin-top: 14px;
  padding: 6px 9px;
  border-radius: 7px;
  background: #edf4fb;
  color: #455951;
  font-size: 9px;
  font-weight: 850;
}

.servicio-reserva-card-precio {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 16px;
}

.servicio-reserva-card-precio strong {
  color: #07805d;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.servicio-reserva-card-precio span {
  color: #5d6d67;
  font-size: 10px;
}

.servicio-card-subtotal {
  display: block;
  margin-top: 7px;
  color: #0b67c8;
  font-size: 9px;
  font-weight: 850;
}

.servicio-reserva-card-acciones {
  display: grid;
  grid-template-columns:
    minmax(100px, .72fr)
    minmax(120px, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
}

.servicio-cantidad-control {
  height: 42px;
  display: grid;
  grid-template-columns:
    36px
    minmax(28px, 1fr)
    36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d8e3de;
  border-radius: 10px;
  background: #ffffff;
}

.servicio-cantidad-control.deshabilitado {
  opacity: .48;
}

.servicio-cantidad-control button {
  width: 36px;
  height: 40px;
  border: none;
  background: transparent;
  color: #38544a;
  cursor: pointer;
}

.servicio-cantidad-control button:disabled {
  cursor: default;
}

.servicio-cantidad-control strong {
  color: #253c34;
  font-size: 12px;
  text-align: center;
}

.servicio-cobro-unico-nota {
  color: #74827d;
  font-size: 9px;
  font-weight: 750;
}

.btn-toggle-servicio-reserva {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #0a73c9;
  border-radius: 10px;
  background: #ffffff;
  color: #0b67c8;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.btn-toggle-servicio-reserva.agregado {
  background: #0b67c8;
  color: #ffffff;
}

.servicios-reserva-aviso {
  display: grid;
  grid-template-columns:
    44px
    minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid #d2e7de;
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      #f3faf7,
      #edf8f4
    );
}

.servicios-reserva-aviso-icono {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e0f2ea;
  color: #0b67c8;
}

.servicios-reserva-aviso strong,
.servicios-reserva-aviso small {
  display: block;
}

.servicios-reserva-aviso strong {
  color: #29473d;
  font-size: 11px;
}

.servicios-reserva-aviso small {
  margin-top: 3px;
  color: #71839a;
  font-size: 9px;
}

.servicios-reserva-footer {
  display: grid;
  grid-template-columns:
    auto
    minmax(200px, 1fr)
    auto;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 17px 18px;
  border: 1px solid #dbe6e1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 44, 34, .05);
}

.servicios-reserva-total span,
.servicios-reserva-total strong,
.servicios-reserva-total small {
  display: block;
}

.servicios-reserva-total span {
  color: #53665e;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.servicios-reserva-total strong {
  margin-top: 4px;
  color: #0b67c8;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.servicios-reserva-total small {
  margin-top: 5px;
  color: #77857f;
  font-size: 9px;
}

.servicios-reserva-acciones {
  display: flex;
  align-items: center;
  gap: 9px;
}

.btn-servicios-volver,
.btn-servicios-secundario,
.btn-servicios-principal {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
}

.btn-servicios-volver,
.btn-servicios-secundario {
  border: 1px solid #cadbd4;
  background: #ffffff;
  color: #354b43;
}

.btn-servicios-principal {
  border: 1px solid #0b67c8;
  background:
    linear-gradient(
      135deg,
      #0b67c8,
      #049d70
    );
  color: #ffffff;
}

.servicios-reserva-vacio {
  grid-column: 1 / -1;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed #cadbd4;
  border-radius: 18px;
  background: #ffffff;
  color: #73827c;
  text-align: center;
}

.servicios-reserva-vacio i {
  color: #91a39b;
  font-size: 28px;
}

.servicios-reserva-vacio strong {
  color: #304b41;
  font-size: 14px;
}

.servicios-reserva-vacio span {
  font-size: 10px;
}

/* Resumen lateral del paso Servicios */

.flujo-reserva.paso-servicios-activo .resumen-reserva {
  top: 86px !important;
  padding: 22px !important;
}

.resumen-servicios-publicos {
  padding: 13px 0;
  border-bottom: 1px solid #edf4fb;
}

.resumen-servicios-publicos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resumen-servicios-publicos-header span {
  color: #344b43;
  font-size: 10px;
  font-weight: 850;
}

.resumen-servicios-publicos-header strong {
  color: #233b32;
  font-size: 10px;
}

.resumen-servicios-lista {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 11px;
}

.resumen-servicio-seleccionado {
  min-width: 0;
  display: grid;
  grid-template-columns:
    32px
    minmax(0, 1fr)
    auto
    24px;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: 11px;
  background: #f1f7f4;
}

.resumen-servicio-seleccionado-icono {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #def0e8;
  color: #0b67c8;
  font-size: 11px;
}

.resumen-servicio-seleccionado div {
  min-width: 0;
}

.resumen-servicio-seleccionado strong,
.resumen-servicio-seleccionado small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resumen-servicio-seleccionado strong {
  color: #263f36;
  font-size: 9px;
}

.resumen-servicio-seleccionado small {
  margin-top: 3px;
  color: #718079;
  font-size: 8px;
}

.resumen-servicio-seleccionado b {
  color: #0b67c8;
  font-size: 9px;
  white-space: nowrap;
}

.resumen-servicio-seleccionado button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #61736b;
  cursor: pointer;
}

.resumen-subtotales-reserva {
  display: grid;
  gap: 8px;
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid #dfe8e4;
}

.resumen-subtotales-reserva > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resumen-subtotales-reserva span {
  color: #596b63;
  font-size: 10px;
}

.resumen-subtotales-reserva strong {
  color: #243d34;
  font-size: 10px;
}

@media (max-width: 1180px) {
  .catalogo-servicios-reserva {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .flujo-reserva.paso-servicios-activo .flujo-container {
    grid-template-columns: 1fr !important;
  }

  .flujo-reserva.paso-servicios-activo .resumen-reserva {
    position: static !important;
    order: -1;
  }
}

@media (max-width: 720px) {
  .catalogo-servicios-reserva {
    grid-template-columns: 1fr;
  }

  .servicio-reserva-card {
    min-height: auto;
  }

  .servicios-reserva-footer {
    grid-template-columns: 1fr;
  }

  .servicios-reserva-acciones {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn-servicios-volver,
  .btn-servicios-secundario,
  .btn-servicios-principal {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .servicio-reserva-card-cabecera {
    grid-template-columns:
      54px
      minmax(0, 1fr);
  }

  .servicio-reserva-card-icono {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .servicio-reserva-card-acciones {
    grid-template-columns: 1fr;
  }

  .servicios-reserva-acciones {
    grid-template-columns: 1fr;
  }
}


/* RESUMEN PREMIUM */
.resumen-reserva-premium{padding:0!important;overflow:hidden!important;border:1px solid #cfd8d4!important;border-radius:14px!important;background:#fff!important;box-shadow:0 18px 45px rgba(15,42,33,.12)!important}
.resumen-reserva-header{padding:13px 16px;background:#d8d8d8;color:#4b4b4b;text-align:center}
.resumen-reserva-header span{font-size:14px;font-weight:900}
.resumen-reserva-contenido{padding:0 13px}
.resumen-reserva-seccion{padding:15px 0;border-bottom:1px solid #d7ddda}
.resumen-reserva-seccion-cabecera{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:5px}
.resumen-reserva-seccion-cabecera>strong{color:#0a64bd;font-size:14px;line-height:1.15;font-weight:950}
.resumen-reserva-seccion-cabecera button{padding:0;border:none;border-bottom:1px solid currentColor;background:transparent;color:#0a64bd;font-family:inherit;font-size:10px;cursor:pointer}
.resumen-reserva-seccion>b{display:block;color:#3e4341;font-size:12px;line-height:1.4;font-weight:900}
.resumen-reserva-seccion>small{display:block;margin-top:4px;color:#5e6662;font-size:9px;line-height:1.45}
.resumen-reserva-tarifa{padding:15px 0;border-bottom:1px solid #d7ddda}
.resumen-reserva-oferta strong,.resumen-reserva-oferta small{display:block}
.resumen-reserva-oferta strong{color:#0a64bd;font-size:13px;font-weight:950}
.resumen-reserva-oferta small{margin-top:3px;color:#6c756f;font-size:9px}
.resumen-reserva-calculo{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;margin-top:13px}
.resumen-reserva-calculo>div:last-child{text-align:right}
.resumen-reserva-calculo strong,.resumen-reserva-calculo small,.resumen-reserva-calculo b{display:block}
.resumen-reserva-calculo strong{color:#3d4340;font-size:11px;font-weight:900}
.resumen-reserva-calculo small{margin-top:3px;color:#505853;font-size:9px}
.resumen-reserva-calculo b{margin-top:3px;color:#3a403d;font-size:10px}
.resumen-proteccion-detalle{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:12px}
.resumen-proteccion-detalle b,.resumen-proteccion-detalle small{display:block}
.resumen-proteccion-detalle b{color:#434a46;font-size:10px;font-weight:850}
.resumen-proteccion-detalle small{margin-top:3px;color:#69716c;font-size:8px}
.resumen-proteccion-detalle>strong{color:#434a46;font-size:10px;white-space:nowrap}
.resumen-servicios-premium{padding:15px 0!important;border-bottom:none!important}
.resumen-servicios-premium .resumen-servicios-publicos-header span{color:#0a64bd!important;font-size:13px!important;font-weight:950!important}
.resumen-total-premium{margin:0!important;padding:21px 15px 17px!important;border-radius:0!important;background:#006c2e!important;text-align:center!important}
.resumen-total-premium small{color:#c5ef42!important;font-size:10px!important;font-weight:900!important}
.resumen-total-premium strong{display:block!important;margin-top:3px!important;color:#fff!important;font-size:29px!important;line-height:1.1!important;font-weight:950!important}
.resumen-total-premium span{display:block;margin-top:5px;color:rgba(255,255,255,.92);font-size:8px;font-weight:700}

/* FORMULARIO DE DATOS PREMIUM */
.paso-datos-premium{width:100%;max-width:930px;margin:0 auto}
.titulo-paso-datos{margin-bottom:24px!important}
.titulo-paso-datos>span{color:#09a57a!important;font-size:12px!important;font-weight:950!important;text-transform:uppercase;letter-spacing:.04em}
.titulo-paso-datos>h2{margin-top:6px!important;color:#073c31!important;font-size:29px!important;line-height:1.15!important;font-weight:950!important}
.titulo-paso-datos>p{max-width:630px;margin:8px auto 0;color:#687770;font-size:12px;line-height:1.5}
.form-datos-reserva-premium{display:flex!important;flex-direction:column!important;gap:14px!important;padding:0!important;border:none!important;background:transparent!important;box-shadow:none!important}
.form-datos-seccion{padding:20px;border:1px solid #dbe5e1;border-radius:17px;background:#fff;box-shadow:0 9px 25px rgba(15,47,36,.055)}
.form-datos-seccion-header{display:grid;grid-template-columns:44px minmax(0,1fr);align-items:center;gap:12px;padding-bottom:14px;margin-bottom:16px;border-bottom:1px solid #edf4f8}
.form-datos-seccion-header>span{width:44px;height:44px;display:grid;place-items:center;border-radius:13px;background:#e8f7f1;color:#0b67c8;font-size:16px}
.form-datos-seccion-header strong,.form-datos-seccion-header small{display:block}
.form-datos-seccion-header strong{color:#15382d;font-size:14px;font-weight:950}
.form-datos-seccion-header small{margin-top:3px;color:#74827d;font-size:9px;line-height:1.4}
.form-datos-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.form-datos-reserva-premium .campo-formulario{display:flex;flex-direction:column;gap:7px}
.form-datos-reserva-premium .campo-formulario label{color:#253b33;font-size:11px;font-weight:900}
.form-datos-reserva-premium .campo-formulario label b{color:#dc4d4d}
.campo-input-icono{position:relative}
.campo-input-icono>i{position:absolute;left:14px;top:50%;z-index:2;transform:translateY(-50%);color:#789087;font-size:12px;pointer-events:none}
.form-datos-reserva-premium input,.form-datos-reserva-premium select,.form-datos-reserva-premium textarea{width:100%!important;border:1px solid #cfdcd6!important;border-radius:11px!important;background:#fff!important;color:#193129!important;font-family:inherit!important;font-size:12px!important;outline:none!important}
.form-datos-reserva-premium input,.form-datos-reserva-premium select{height:46px!important;padding:0 13px 0 40px!important}
.form-datos-reserva-premium textarea{min-height:105px!important;padding:13px!important;resize:vertical!important}
.form-datos-reserva-premium input:focus,.form-datos-reserva-premium select:focus,.form-datos-reserva-premium textarea:focus{border-color:#0a936c!important;box-shadow:0 0 0 3px rgba(10,147,108,.11)!important}
.form-datos-acciones{display:grid;grid-template-columns:auto minmax(220px,320px);justify-content:space-between;align-items:center;gap:12px;margin-top:2px}
.btn-volver-datos-reserva,.form-datos-reserva-premium .btn-continuar-reserva{min-height:48px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;padding:0 19px!important;border-radius:11px!important;font-family:inherit!important;font-size:11px!important;font-weight:900!important;cursor:pointer!important}
.btn-volver-datos-reserva{border:1px solid #cedbd5;background:#fff;color:#385047}
.form-datos-reserva-premium .btn-continuar-reserva{width:100%!important;border:1px solid #0b67c8!important;background:linear-gradient(135deg,#0b67c8,#05a173)!important;color:#fff!important;box-shadow:0 8px 18px rgba(8,122,89,.18)!important}
@media(max-width:760px){.form-datos-grid{grid-template-columns:1fr}.form-datos-seccion{padding:15px}.form-datos-acciones{grid-template-columns:1fr}.btn-volver-datos-reserva,.form-datos-reserva-premium .btn-continuar-reserva{width:100%!important}.resumen-total-premium strong{font-size:25px!important}}


/* =========================================================
   EME · ACCESO INTERNO DISCRETO
   Icono sin fondo ni borde, ubicado entre idioma y WhatsApp
========================================================= */

.acceso-interno-discreto {
  position: relative;

  width: 34px;
  height: 34px;

  display: inline-grid;
  place-items: center;

  flex: 0 0 auto;

  border: 0;
  border-radius: 50%;

  background: transparent;
  color: rgba(255, 255, 255, .66);

  font-size: 17px;
  line-height: 1;

  text-decoration: none;

  transition:
    color .18s ease,
    background .18s ease,
    transform .18s ease;
}

.acceso-interno-discreto:hover,
.acceso-interno-discreto:focus-visible {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .96);
  transform: translateY(-1px);
}

.acceso-interno-discreto:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .34);
  outline-offset: 2px;
}

.acceso-interno-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;

  z-index: 80;

  min-width: max-content;
  padding: 7px 10px;

  border-radius: 7px;

  background: rgba(5, 27, 23, .94);
  color: #ffffff;

  font-size: 10px;
  line-height: 1;
  font-weight: 700;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform:
    translateX(-50%)
    translateY(-3px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .22);

  transition:
    opacity .16s ease,
    visibility .16s ease,
    transform .16s ease;
}

.acceso-interno-tooltip::before {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 100%;

  width: 0;
  height: 0;

  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(5, 27, 23, .94);

  transform: translateX(-50%);
}

.acceso-interno-discreto:hover
.acceso-interno-tooltip,
.acceso-interno-discreto:focus-visible
.acceso-interno-tooltip {
  opacity: 1;
  visibility: visible;

  transform:
    translateX(-50%)
    translateY(0);
}

@media (max-width: 620px) {
  .acceso-interno-discreto {
    width: 31px;
    height: 31px;

    font-size: 15px;
  }

  .acceso-interno-tooltip {
    display: none;
  }
}


/* =========================================================
   EME · RESERVAS · EXPERIENCIA MÓVIL PREMIUM
   Mantiene intacto el diseño de escritorio.
========================================================= */

.mobile-menu-toggle,
.mobile-menu-backdrop,
.btn-toggle-resumen-movil {
  display: none;
}

body.menu-reservas-bloqueado {
  overflow: hidden;
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  button,
  input,
  select,
  textarea,
  a {
    -webkit-tap-highlight-color: transparent;
  }

  /* Header */
  .header-reservas {
    min-height: 64px;
  }

  .header-content {
    height: 64px !important;
    min-height: 64px !important;
    padding:
      max(8px, env(safe-area-inset-top))
      14px
      8px !important;
    flex-wrap: nowrap !important;
    gap: 9px !important;
  }

  .logo-reservas-horizontal {
    width: 128px;
    height: auto !important;
    max-height: 42px;
  }

  .header-actions {
    margin-left: auto;
    gap: 7px;
  }

  .selector-idioma {
    width: 59px;
    height: 36px;
    padding: 0 8px;
    font-size: 11px;
  }

  .acceso-interno-discreto {
    width: 32px !important;
    height: 32px !important;
    font-size: 15px !important;
  }

  .header-actions .btn-whatsapp {
    display: none !important;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    place-content: center;
    gap: 4px;
    order: 4;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 11px;
    background: rgba(255,255,255,.07);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 17px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-movil-abierto .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-movil-abierto .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-movil-abierto .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-reservas {
    position: fixed;
    top: 64px;
    left: 12px;
    right: 12px;
    z-index: 72;
    display: grid !important;
    gap: 4px !important;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(4,60,47,.985);
    box-shadow: 0 24px 55px rgba(0,0,0,.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .menu-movil-abierto .nav-reservas {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-reservas a {
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
  }

  .nav-reservas a:active {
    background: rgba(34,199,233,.12);
    color: #43e1bd;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 49;
    border: 0;
    background: rgba(1,19,15,.58);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }

  .menu-movil-abierto + .mobile-menu-backdrop,
  .header-reservas.menu-movil-abierto ~ .mobile-menu-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  /* Hero */
  .hero-reservas-convencional {
    min-height: auto !important;
    align-items: stretch !important;
    padding:
      calc(84px + env(safe-area-inset-top))
      13px
      22px !important;
    background-position: 57% center !important;
  }

  .hero-convencional-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,43,32,.79) 0%,
        rgba(0,43,32,.60) 32%,
        rgba(0,43,32,.86) 100%
      ) !important;
  }

  .hero-convencional-contenido {
    gap: 19px !important;
  }

  .hero-convencional-copy {
    max-width: 100%;
    padding: 8px 4px 0;
  }

  .hero-convencional-badge {
    min-height: 27px;
    padding: 0 10px;
    font-size: 8px;
  }

  .hero-convencional-copy h1 {
    max-width: 620px;
    margin: 12px 0 10px !important;
    font-size: clamp(31px, 10.2vw, 44px) !important;
    line-height: 1.01 !important;
    letter-spacing: -.035em !important;
  }

  .hero-convencional-copy p {
    max-width: 540px;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .hero-publico-dots {
    margin-top: 14px;
  }

  /* Buscador */
  .buscador-reserva-horizontal {
    padding: 15px !important;
    border-radius: 15px !important;
    box-shadow: 0 16px 38px rgba(0,0,0,.28) !important;
  }

  .buscador-reserva-horizontal__encabezado {
    margin-bottom: 12px;
  }

  .buscador-reserva-horizontal__encabezado strong {
    font-size: 15px;
  }

  .buscador-reserva-horizontal__campos {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 9px !important;
  }

  .campo-reserva-ciudad {
    grid-column: 1 / -1 !important;
  }

  .buscador-reserva-horizontal input,
  .buscador-reserva-horizontal select {
    height: 48px !important;
    font-size: 12px !important;
  }

  .btn-buscar-reserva-horizontal {
    grid-column: 1 / -1 !important;
    height: 49px !important;
    font-size: 12px !important;
  }

  .buscador-reserva-horizontal__nota {
    margin-top: 8px;
    font-size: 7px;
    line-height: 1.4;
  }

  /* CTA */
  .ciro-cta-reserva-convencional {
    padding: 23px 16px !important;
    gap: 15px !important;
  }

  .ciro-cta-reserva h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .ciro-cta-reserva p {
    font-size: 11px;
  }

  .ciro-cta-reserva a {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 11px;
  }

  /* Flujo */
  .flujo-reserva {
    padding: 31px 12px 48px !important;
  }

  .flujo-container,
  .flujo-reserva.paso-proteccion-activo .flujo-container,
  .flujo-reserva.paso-servicios-activo .flujo-container {
    width: 100%;
    grid-template-columns: 1fr !important;
    gap: 17px !important;
  }

  .flujo-main {
    width: 100%;
    min-width: 0;
  }

  .steps-bar {
    position: sticky;
    top: 64px;
    z-index: 35;
    width: calc(100vw - 24px);
    justify-content: flex-start !important;
    gap: 7px !important;
    margin: 0 0 20px !important;
    padding: 10px 9px !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    border: 1px solid #dde7e3;
    border-radius: 13px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 22px rgba(15,44,34,.08);
    backdrop-filter: blur(12px);
  }

  .steps-bar::-webkit-scrollbar {
    display: none;
  }

  .step {
    flex: 0 0 auto;
    gap: 5px;
    font-size: 9px;
  }

  .step-circle {
    width: 27px;
    height: 27px;
    font-size: 10px;
  }

  .step-line {
    width: 18px !important;
    min-width: 18px !important;
  }

  .titulo-paso,
  .titulo-paso-proteccion,
  .titulo-paso-servicios,
  .titulo-paso-datos {
    margin-bottom: 20px !important;
    padding: 0 4px;
  }

  .titulo-paso h2,
  .titulo-paso-proteccion > h2,
  .titulo-paso-servicios > h2,
  .titulo-paso-datos > h2 {
    font-size: 23px !important;
    line-height: 1.15 !important;
  }

  .titulo-paso p,
  .titulo-paso-proteccion > p,
  .titulo-paso-servicios > p,
  .titulo-paso-datos > p {
    font-size: 11px !important;
  }

  /* Resumen colapsable */
  .resumen-reserva-premium {
    position: static !important;
    order: 2 !important;
    width: 100%;
    border-radius: 14px !important;
  }

  .resumen-reserva-header {
    min-height: 49px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px !important;
    cursor: pointer;
  }

  .resumen-reserva-header span {
    font-size: 12px !important;
  }

  .btn-toggle-resumen-movil {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0,107,61,.08);
    color: #0b67c8;
    cursor: pointer;
  }

  .btn-toggle-resumen-movil i {
    transition: transform .2s ease;
  }

  .resumen-reserva-premium:not(.resumen-movil-abierto)
  .resumen-reserva-contenido,
  .resumen-reserva-premium:not(.resumen-movil-abierto)
  .resumen-total-premium {
    display: none !important;
  }

  .resumen-reserva-premium.resumen-movil-abierto
  .btn-toggle-resumen-movil i {
    transform: rotate(180deg);
  }

  .resumen-reserva-contenido {
    padding: 0 13px !important;
  }

  .resumen-total-premium strong {
    font-size: 24px !important;
  }

  /* Grupos */
  .flujo-reserva.paso-grupos-activo .grid-grupos-reserva,
  .grid-grupos-reserva {
    grid-template-columns: 1fr !important;
    gap: 13px !important;
  }

  .flujo-reserva.paso-grupos-activo .grupo-card,
  .grupo-card {
    padding: 15px !important;
    border-radius: 15px !important;
  }

  .grupo-card {
    display: grid !important;
    grid-template-columns: 112px minmax(0,1fr);
    column-gap: 14px;
    align-items: center;
  }

  .grupo-card .badge-recomendado {
    grid-column: 1 / -1;
    width: fit-content;
    margin-bottom: 3px;
  }

  .grupo-header {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .grupo-imagen {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 112px;
    height: 104px !important;
    border-radius: 12px;
  }

  .grupo-precio {
    grid-column: 2;
    grid-row: 2;
  }

  .grupo-header h3 {
    min-height: auto !important;
    margin: 4px 0 !important;
    font-size: 15px !important;
  }

  .grupo-header p {
    min-height: auto !important;
    margin: 0 !important;
    font-size: 10px !important;
  }

  .grupo-precio strong {
    font-size: 18px !important;
  }

  .grupo-card .btn-elegir-grupo,
  .grupo-card .btn-detalles-grupo,
  .grupo-card .grupo-detalles {
    grid-column: 1 / -1;
  }

  .grupo-card .btn-elegir-grupo,
  .grupo-card .btn-detalles-grupo {
    min-height: 43px;
  }

  /* Protección */
  .grid-protecciones-premium,
  .grid-protecciones {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .proteccion-card-premium {
    min-height: auto !important;
    padding: 20px 17px !important;
    border-radius: 16px !important;
  }

  .proteccion-card-cabecera {
    grid-template-columns: 58px minmax(0,1fr) !important;
    gap: 12px !important;
  }

  .proteccion-icono {
    width: 58px !important;
    height: 58px !important;
    font-size: 23px !important;
  }

  .proteccion-card-cabecera h3 {
    font-size: 18px !important;
  }

  .proteccion-card-cabecera p {
    font-size: 11px !important;
  }

  .proteccion-card-premium .badge-recomendado {
    top: -10px !important;
    right: 15px !important;
    min-height: 32px;
    padding: 0 11px !important;
    font-size: 8px !important;
  }

  .proteccion-precio-premium strong {
    font-size: 27px !important;
  }

  .proteccion-beneficios {
    gap: 10px !important;
  }

  .proteccion-beneficios li {
    font-size: 11px !important;
  }

  /* Servicios */
  .catalogo-servicios-reserva {
    grid-template-columns: 1fr !important;
    gap: 13px !important;
  }

  .servicio-reserva-card {
    min-height: auto !important;
    padding: 16px !important;
    border-radius: 15px !important;
  }

  .servicio-reserva-card-cabecera {
    grid-template-columns: 54px minmax(0,1fr) !important;
    gap: 11px !important;
  }

  .servicio-reserva-card-icono {
    width: 54px !important;
    height: 54px !important;
    font-size: 21px !important;
  }

  .servicio-reserva-card h3 {
    font-size: 15px !important;
  }

  .servicio-reserva-card p {
    min-height: auto !important;
    font-size: 10px !important;
  }

  .servicio-reserva-card-acciones {
    grid-template-columns: 1fr 1.15fr !important;
    gap: 8px !important;
  }

  .servicios-reserva-aviso {
    grid-template-columns: 38px minmax(0,1fr) !important;
    padding: 11px !important;
  }

  .servicios-reserva-aviso-icono {
    width: 38px !important;
    height: 38px !important;
  }

  .servicios-reserva-footer {
    position: sticky;
    bottom: 8px;
    z-index: 28;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 35px rgba(15,44,34,.16) !important;
  }

  .servicios-reserva-total strong {
    font-size: 21px !important;
  }

  .servicios-reserva-acciones {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .btn-servicios-volver {
    width: 100%;
  }

  /* Datos */
  .paso-datos-premium {
    max-width: 100% !important;
  }

  .form-datos-reserva-premium {
    gap: 12px !important;
  }

  .form-datos-seccion {
    padding: 15px !important;
    border-radius: 15px !important;
  }

  .form-datos-seccion-header {
    grid-template-columns: 38px minmax(0,1fr) !important;
    gap: 10px !important;
    padding-bottom: 11px !important;
    margin-bottom: 13px !important;
  }

  .form-datos-seccion-header > span {
    width: 38px !important;
    height: 38px !important;
  }

  .form-datos-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .form-datos-reserva-premium input,
  .form-datos-reserva-premium select {
    height: 47px !important;
    font-size: 12px !important;
  }

  .form-datos-acciones {
    grid-template-columns: 1fr !important;
  }

  /* Confirmación */
  .confirmacion-card,
  .exito-card {
    padding: 17px !important;
    border-radius: 17px !important;
  }

  .confirmacion-header h2 {
    font-size: 23px;
    line-height: 1.15;
  }

  .confirmacion-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .confirmacion-bloque,
  .opcion-pago-card {
    padding: 13px !important;
    border-radius: 12px !important;
  }

  .confirmacion-total strong {
    font-size: 25px;
  }

  .btn-confirmar-reserva {
    min-height: 50px !important;
  }

  /* Secciones públicas */
  .flota-section,
  .beneficios-section,
  .experiencias-section {
    padding: 50px 14px !important;
  }

  .section-header,
  .section-heade {
    margin-bottom: 23px !important;
  }

  .section-header h2,
  .section-heade h2 {
    font-size: 27px !important;
    line-height: 1.15;
  }

  .grid-gamas,
  #listaGamas,
  .grid-beneficios,
  .grid-experiencias {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .card-gama {
    border-radius: 17px !important;
  }

  .card-img,
  .grupo-imagen {
    height: 155px;
  }

  .card-body {
    padding: 17px !important;
  }

  .experiencias-content {
    display: grid;
    gap: 22px;
  }

  .experiencias-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }

  /* Footer */
  .footer-reservas {
    padding:
      38px
      16px
      calc(30px + env(safe-area-inset-bottom)) !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .logo-reservas-horizontal {
    width: 112px;
  }

  .selector-idioma {
    width: 54px;
  }

  .hero-reservas-convencional {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .buscador-reserva-horizontal {
    padding: 13px !important;
  }

  .buscador-reserva-horizontal__campos {
    grid-template-columns: 1fr !important;
  }

  .campo-reserva-ciudad,
  .btn-buscar-reserva-horizontal {
    grid-column: auto !important;
  }

  .campo-reserva-control > i {
    left: 12px;
  }

  .flujo-reserva {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }

  .steps-bar {
    width: calc(100vw - 18px);
  }

  .grupo-card {
    grid-template-columns: 95px minmax(0,1fr);
    column-gap: 10px;
  }

  .grupo-imagen {
    width: 95px;
    height: 92px !important;
  }

  .servicio-reserva-card-acciones,
  .servicios-reserva-acciones {
    grid-template-columns: 1fr !important;
  }

  .resumen-servicio-seleccionado {
    grid-template-columns: 30px minmax(0,1fr) auto 22px !important;
    gap: 6px !important;
  }

  .resumen-servicio-seleccionado b {
    font-size: 8px !important;
  }

  .experiencias-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 360px) {
  .logo-reservas-horizontal {
    width: 102px;
  }

  .selector-idioma {
    width: 50px;
    padding: 0 5px;
  }

  .acceso-interno-discreto {
    display: none !important;
  }

  .hero-convencional-copy h1 {
    font-size: 29px !important;
  }

  .grupo-card {
    display: flex !important;
  }

  .grupo-imagen {
    width: 100%;
    height: 130px !important;
  }
}


/* =========================================================
   EME · IDENTIDAD VISUAL PÚBLICA · 2026-09-12
   ========================================================= */

:root {
  --verde: #0b5fc7;
  --verde-oscuro: #082f6c;
  --verde-profundo: #061d44;
  --verde-hero: #073b7a;
  --turquesa: #22c7e9;
  --turquesa-2: #0ea9d8;
  --fondo: #f4f8fd;
  --texto: #132b4b;
  --gris: #657991;
  --borde: rgba(34, 199, 233, .18);
  --sombra: 0 22px 60px rgba(6, 29, 68, .24);
}

/* Header EME */
.header-reservas {
  background:
    linear-gradient(
      100deg,
      rgba(6, 29, 68, .97),
      rgba(8, 47, 108, .96) 55%,
      rgba(7, 91, 176, .94)
    ) !important;
  border-bottom: 1px solid rgba(47, 208, 238, .22) !important;
  box-shadow: 0 10px 32px rgba(4, 31, 78, .20);
}

.logo-reservas-horizontal {
  height: 50px !important;
  max-width: 190px;
  object-fit: contain;
}

.nav-reservas a:hover {
  color: #45d8f2 !important;
}

.selector-idioma {
  border-color: rgba(255,255,255,.26) !important;
  background: rgba(255,255,255,.10) !important;
}

.acceso-interno-discreto {
  color: rgba(255,255,255,.92) !important;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #20c7e8, #0d9fda) !important;
  color: #062b59 !important;
  box-shadow: 0 8px 22px rgba(10, 134, 223, .22);
}

/* Hero */
.hero-reservas-convencional,
#inicio.hero-reservas {
  background-color: #061d44;
}

.hero-convencional-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 24, 60, .86) 0%,
      rgba(6, 43, 96, .60) 43%,
      rgba(3, 38, 82, .20) 100%
    ) !important;
}

.hero-convencional-badge {
  color: #58def4 !important;
  border-color: rgba(69, 216, 242, .34) !important;
  background: rgba(8, 47, 108, .42) !important;
}

.hero-convencional-copy h1 {
  text-shadow: 0 10px 32px rgba(4, 20, 52, .35);
}

/* Search block */
.buscador-reserva-horizontal {
  border: 1px solid rgba(13, 111, 199, .14) !important;
  box-shadow: 0 26px 70px rgba(4, 31, 78, .20) !important;
}

.buscador-reserva-horizontal__encabezado span,
.titulo-paso > span,
.section-header > span,
.section-heade > span {
  color: #0b72c9 !important;
}

.campo-reserva-control > i {
  color: #0b72c9 !important;
}

.campo-reserva-control:focus-within,
.buscador-reserva-horizontal input:focus,
.buscador-reserva-horizontal select:focus {
  border-color: #16bce3 !important;
  box-shadow: 0 0 0 4px rgba(22, 188, 227, .10) !important;
}

.btn-buscar,
.btn-buscar-reserva-horizontal,
.btn-elegir-grupo,
.btn-proteccion-principal,
.btn-confirmar-reserva {
  background:
    linear-gradient(135deg, #0a67c8, #0b87df) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 12px 28px rgba(11, 103, 200, .24) !important;
}

.btn-buscar:hover,
.btn-buscar-reserva-horizontal:hover,
.btn-elegir-grupo:hover,
.btn-proteccion-principal:hover,
.btn-confirmar-reserva:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(11, 103, 200, .30) !important;
}

/* Reservation flow */
.flujo-reserva {
  background:
    linear-gradient(180deg, #f4f8fd 0%, #eef5fc 100%) !important;
}

.steps-bar {
  border-color: #d9e6f4 !important;
}

.step.active .step-circle,
.step.completed .step-circle {
  background: linear-gradient(135deg, #0a67c8, #18bde3) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.step.active span,
.step.completed span {
  color: #0a64bd !important;
}

.grupo-card:hover,
.proteccion-card-premium:hover,
.servicio-reserva-card:hover,
.card-gama:hover {
  border-color: #39c8e9 !important;
  box-shadow: 0 18px 38px rgba(7, 74, 151, .12) !important;
}

.grupo-codigo,
.badge-recomendado,
.proteccion-badge-incluida,
.servicio-reserva-card-tipo {
  color: #0b72c9 !important;
}

.grupo-card.destacado,
.proteccion-card-premium.recomendada {
  border-color: #22bfe2 !important;
}

/* Sections */
.flota-section,
.beneficios-section,
.experiencias-section {
  background-color: #f7faff;
}

.beneficio-card,
.card-gama,
.experiencias-grid > div {
  border-color: #dce8f5 !important;
}

/* Footer */
.footer-reservas {
  background:
    linear-gradient(
      120deg,
      #061d44,
      #082f6c 60%,
      #075bb0
    ) !important;
  color: #fff !important;
  border-top: 1px solid rgba(47, 208, 238, .22);
}

.footer-reservas h3,
.footer-reservas h4 {
  color: #fff !important;
}

.footer-reservas p {
  color: rgba(255,255,255,.72) !important;
}

/* Mobile */
@media (max-width: 760px) {
  .logo-reservas-horizontal {
    height: 42px !important;
    width: auto !important;
    max-width: 150px;
  }
}


/* =========================================================
   EME · RESERVAS · LANDING DE UNA SOLA PANTALLA · V3
   ========================================================= */

/*
 * Las secciones promocionales se conservan en el HTML para no romper
 * referencias históricas, pero dejan de formar parte de la experiencia
 * pública de reservas.
 */
#flota,
#beneficios,
#experiencias,
#contacto {
  display: none !important;
}

/* ---------------------------------------------------------
   ESTADO INICIAL
   Header + Hero + Buscador = toda la página visible.
   --------------------------------------------------------- */

body:not(.reserva-en-curso) #flujoReserva,
body:not(.reserva-en-curso) #pantallaExitoReserva {
  display: none !important;
}

body:not(.reserva-en-curso) main {
  min-height: 100svh;
}

body:not(.reserva-en-curso) #inicio.hero-reservas-convencional {
  min-height: calc(100svh - 72px) !important;
  height: calc(100svh - 72px) !important;
  margin: 0 !important;
}

/*
 * El contenido se distribuye verticalmente para que título + buscador
 * respiren sin crear una segunda pantalla.
 */
body:not(.reserva-en-curso) .hero-convencional-contenido {
  min-height: calc(100svh - 72px) !important;
  height: calc(100svh - 72px) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

/* Título ligeramente más contenido para priorizar la reserva */
body:not(.reserva-en-curso) .hero-convencional-copy {
  margin-bottom: 34px !important;
}

body:not(.reserva-en-curso) .hero-convencional-copy h1 {
  max-width: 680px;
  font-size: clamp(42px, 4.3vw, 64px) !important;
  line-height: .98 !important;
}

body:not(.reserva-en-curso) .hero-convencional-copy p {
  max-width: 620px !important;
}

/* Formulario protagonista */
body:not(.reserva-en-curso) .buscador-reserva-horizontal {
  width: 100% !important;
  margin-top: 0 !important;
}

/* No hay scroll de escritorio mientras estamos en la portada */
@media (min-width: 901px) and (min-height: 650px) {
  body:not(.reserva-en-curso) {
    overflow-y: hidden;
  }
}

/* ---------------------------------------------------------
   ESTADO FLUJO DE RESERVA
   --------------------------------------------------------- */

body.reserva-en-curso {
  overflow-y: auto !important;
  background: #f4f8fd;
}

/* El Hero deja de ocupar espacio una vez iniciada la reserva */
body.reserva-en-curso #inicio {
  display: none !important;
}

body.reserva-en-curso #flujoReserva:not(.oculto) {
  display: block !important;
}

/*
 * Como el header es fixed, damos espacio superior al flujo para que
 * la barra de pasos nunca quede escondida debajo.
 */
body.reserva-en-curso .flujo-reserva {
  min-height: 100svh;
  padding-top: 94px !important;
}

/* Pantalla de éxito pertenece al mismo modo de reserva */
body.reserva-en-curso #pantallaExitoReserva:not(.oculto) {
  min-height: calc(100svh - 72px);
  margin-top: 72px;
}

/* ---------------------------------------------------------
   TABLET / MÓVIL
   En pantallas pequeñas permitimos scroll interno natural del hero,
   ya que el formulario necesita más altura.
   --------------------------------------------------------- */

@media (max-width: 900px) {
  body:not(.reserva-en-curso) {
    overflow-y: auto !important;
  }

  body:not(.reserva-en-curso) #inicio.hero-reservas-convencional,
  body:not(.reserva-en-curso) .hero-convencional-contenido {
    min-height: calc(100svh - 64px) !important;
    height: auto !important;
  }

  body:not(.reserva-en-curso) .hero-convencional-contenido {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  body.reserva-en-curso .flujo-reserva {
    padding-top: 82px !important;
  }
}


/* =========================================================
   EME · RESERVAS · AJUSTES VISUALES V4
   - CTA inferior visible en portada
   - Hero sin quedar debajo del topbar
   - Eliminación de verdes residuales
   ========================================================= */

/* ----- Header spacing / overlap fix ----- */
:root{
  --eme-header-h: 72px;
}

.header-reservas{
  height: var(--eme-header-h);
}

body:not(.reserva-en-curso) #inicio.hero-reservas-convencional{
  margin-top: var(--eme-header-h) !important;
  min-height: calc(100svh - var(--eme-header-h) - 78px) !important;
  height: calc(100svh - var(--eme-header-h) - 78px) !important;
}

body:not(.reserva-en-curso) .hero-convencional-contenido{
  min-height: calc(100svh - var(--eme-header-h) - 78px) !important;
  height: calc(100svh - var(--eme-header-h) - 78px) !important;
  padding-top: 28px !important;
  padding-bottom: 24px !important;
}

body:not(.reserva-en-curso) .hero-convencional-copy{
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 28px !important;
}

body:not(.reserva-en-curso) .hero-convencional-copy h1{
  margin-top: 10px !important;
}

/* ----- Bottom CTA on initial landing ----- */
body:not(.reserva-en-curso) .ciro-cta-reserva{
  display:flex !important;
  min-height:78px;
  margin:0 !important;
  padding:16px clamp(28px, 6vw, 90px) !important;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:
    linear-gradient(100deg, #082f6c 0%, #0a4f9d 58%, #0b78c8 100%) !important;
  color:#fff !important;
  border-top:1px solid rgba(71, 214, 242, .24);
  box-shadow:0 -8px 26px rgba(6,29,68,.12);
}

body:not(.reserva-en-curso) .ciro-cta-reserva h2{
  color:#fff !important;
  margin:0 0 4px !important;
  font-size:clamp(18px, 1.7vw, 26px) !important;
}

body:not(.reserva-en-curso) .ciro-cta-reserva p{
  margin:0 !important;
  color:rgba(255,255,255,.80) !important;
}

body:not(.reserva-en-curso) .ciro-cta-reserva a{
  flex:0 0 auto;
  background:linear-gradient(135deg,#28d2ec,#11b2df) !important;
  color:#062b59 !important;
  border:0 !important;
  border-radius:999px !important;
  padding:14px 24px !important;
  font-weight:900 !important;
  box-shadow:0 10px 24px rgba(17,178,223,.22);
}

/* Hide CTA once reservation starts */
body.reserva-en-curso .ciro-cta-reserva{
  display:none !important;
}

/* ----- Search block: hard reset to EME blue ----- */
.buscador-reserva-horizontal,
.buscador-reserva{
  background:
    linear-gradient(105deg,#082f6c 0%,#0a4a94 62%,#0a69bb 100%) !important;
  border:1px solid rgba(60, 211, 239, .20) !important;
  box-shadow:0 24px 60px rgba(4,31,78,.24) !important;
}

.buscador-reserva-horizontal__encabezado span{
  color:#36d5ee !important;
}

.buscador-reserva-horizontal__encabezado strong,
.buscador-reserva-horizontal label > span,
.buscador-reserva-horizontal__nota{
  color:#fff !important;
}

.buscador-reserva-horizontal__nota{
  opacity:.72;
}

.btn-buscar-reserva-horizontal{
  background:linear-gradient(135deg,#0a7fe3,#13a9e2) !important;
}

/* ----- Remaining old green selectors ----- */
.ciro-msg-user p{
  background:linear-gradient(135deg,#0b67c8,#0b86df) !important;
}

.ciro-chat-header{
  background:linear-gradient(180deg,#082f6c,#061d44) !important;
}

.card-ciudad-ciro:hover,
.card-gama-ciro:hover{
  border-color:#22c7e9 !important;
}

.grupo-card.destacado,
.proteccion-card-premium.recomendada{
  border-color:#22c7e9 !important;
}

.proteccion-icono-verde,
.servicio-reserva-card-icono{
  background:rgba(34,199,233,.12) !important;
  color:#0b72c9 !important;
}

/* catch obvious legacy green backgrounds */
[style*="#00523f"],
[style*="#003428"],
[style*="#006b3d"],
[style*="#043c2f"]{
  background-color:#082f6c !important;
}

/* ----- Remove blank white band ----- */
body:not(.reserva-en-curso) main{
  min-height:auto !important;
}

body:not(.reserva-en-curso){
  background:#082f6c !important;
}

/* ----- Responsive ----- */
@media (max-width: 900px){
  :root{ --eme-header-h:64px; }

  body:not(.reserva-en-curso) #inicio.hero-reservas-convencional{
    margin-top:var(--eme-header-h) !important;
    min-height:auto !important;
    height:auto !important;
  }

  body:not(.reserva-en-curso) .hero-convencional-contenido{
    min-height:auto !important;
    height:auto !important;
    padding-top:36px !important;
    padding-bottom:34px !important;
  }

  body:not(.reserva-en-curso) .ciro-cta-reserva{
    flex-direction:column;
    align-items:flex-start;
    padding:18px 22px !important;
  }
}


/* =========================================================
   EME · RESERVAS · HERO APROBADO V5
   Basado en la propuesta visual validada por el usuario.
   ========================================================= */

/* Header without central nav */
.nav-reservas-vacio{
  display:block!important;
  flex:1 1 auto!important;
  min-width:20px;
  pointer-events:none;
}

.header-content{
  max-width:1460px!important;
  padding-left:32px!important;
  padding-right:32px!important;
}

.logo-reservas-horizontal{
  height:52px!important;
}

.header-actions{
  margin-left:auto!important;
}

/* Hero proportions */
body:not(.reserva-en-curso) #inicio.hero-reservas-convencional{
  margin-top:var(--eme-header-h)!important;
  min-height:calc(100svh - var(--eme-header-h) - 92px)!important;
  height:calc(100svh - var(--eme-header-h) - 92px)!important;
}

body:not(.reserva-en-curso) .hero-convencional-contenido{
  min-height:calc(100svh - var(--eme-header-h) - 92px)!important;
  height:calc(100svh - var(--eme-header-h) - 92px)!important;
  max-width:1460px!important;
  margin:0 auto!important;
  padding:
    clamp(28px,4vh,54px)
    clamp(32px,5vw,84px)
    32px!important;
  justify-content:flex-start!important;
}

/* approved mockup: title approx 20% smaller than V4 */
body:not(.reserva-en-curso) .hero-convencional-copy{
  margin:0 0 34px!important;
  max-width:820px!important;
}

body:not(.reserva-en-curso) .hero-convencional-badge{
  margin-bottom:20px!important;
}

body:not(.reserva-en-curso) .hero-convencional-copy h1{
  max-width:760px!important;
  margin:0 0 22px!important;
  font-size:clamp(38px,3.45vw,52px)!important;
  line-height:1.02!important;
  letter-spacing:-1.8px!important;
}

body:not(.reserva-en-curso) .hero-convencional-copy p{
  max-width:760px!important;
  margin:0!important;
  font-size:clamp(15px,1.15vw,20px)!important;
  line-height:1.55!important;
  color:rgba(255,255,255,.9)!important;
}

/* Wider and more balanced reservation panel */
body:not(.reserva-en-curso) .buscador-reserva-horizontal{
  width:100%!important;
  max-width:none!important;
  padding:22px 28px 20px!important;
  border-radius:18px!important;
  background:
    linear-gradient(
      102deg,
      rgba(5,50,117,.96) 0%,
      rgba(7,72,153,.97) 56%,
      rgba(8,112,192,.96) 100%
    )!important;
  border:1px solid rgba(47,208,238,.28)!important;
}

body:not(.reserva-en-curso) .buscador-reserva-horizontal__encabezado{
  margin-bottom:15px!important;
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
}

body:not(.reserva-en-curso) .buscador-reserva-horizontal__encabezado span{
  color:#34d5ed!important;
  font-size:10px!important;
  letter-spacing:.4px!important;
}

body:not(.reserva-en-curso) .buscador-reserva-horizontal__encabezado strong{
  font-size:20px!important;
}

/* Field layout inspired by approved mockup */
body:not(.reserva-en-curso) .buscador-reserva-horizontal__campos{
  display:grid!important;
  grid-template-columns:
    minmax(260px,1.6fr)
    minmax(165px,.85fr)
    minmax(165px,.85fr)
    minmax(165px,.85fr)
    minmax(165px,.85fr)
    minmax(190px,.92fr)!important;
  gap:12px!important;
  align-items:end!important;
}

body:not(.reserva-en-curso) .campo-reserva > span{
  margin-bottom:7px!important;
  font-size:9px!important;
  font-weight:800!important;
}

body:not(.reserva-en-curso) .campo-reserva-control{
  height:54px!important;
  border-radius:10px!important;
}

body:not(.reserva-en-curso) .campo-reserva-control input,
body:not(.reserva-en-curso) .campo-reserva-control select{
  font-size:12px!important;
  font-weight:800!important;
}

body:not(.reserva-en-curso) .btn-buscar-reserva-horizontal{
  height:54px!important;
  border-radius:10px!important;
  background:
    linear-gradient(135deg,#0986e9,#19b8e7)!important;
  font-size:12px!important;
  font-weight:900!important;
}

body:not(.reserva-en-curso) .buscador-reserva-horizontal__nota{
  margin-top:10px!important;
  display:block!important;
  text-align:right!important;
  font-size:8px!important;
  color:rgba(255,255,255,.70)!important;
}

/* Bottom support bar - approved mockup */
body:not(.reserva-en-curso) .ciro-cta-reserva{
  min-height:92px!important;
  padding:
    16px clamp(44px,7vw,110px)!important;
  background:
    linear-gradient(100deg,#082f6c 0%,#0757ad 54%,#0b82d0 100%)!important;
}

body:not(.reserva-en-curso) .ciro-cta-reserva > div{
  position:relative;
  padding-left:64px;
}

body:not(.reserva-en-curso) .ciro-cta-reserva > div::before{
  content:"\f590";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:3px solid #27d1ed;
  color:#27d1ed;
  font-size:20px;
}

body:not(.reserva-en-curso) .ciro-cta-reserva h2{
  font-size:clamp(20px,1.75vw,28px)!important;
}

body:not(.reserva-en-curso) .ciro-cta-reserva p{
  font-size:15px!important;
}

body:not(.reserva-en-curso) .ciro-cta-reserva a{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  min-width:240px;
  min-height:54px;
  padding:0 26px!important;
  background:
    linear-gradient(135deg,#21d5ec,#0fc6e5)!important;
  color:#052d5b!important;
  font-size:16px!important;
}

body:not(.reserva-en-curso) .ciro-cta-reserva a i{
  font-size:20px;
}

/* Ensure remaining green accents stay gone */
.buscador-reserva-horizontal,
.ciro-cta-reserva,
.ciro-msg-user p,
.ciro-chat-header{
  --verde:#0b67c8!important;
  --verde-oscuro:#082f6c!important;
  --verde-profundo:#061d44!important;
  --turquesa:#22c7e9!important;
  --turquesa-2:#0ea9d8!important;
}

/* Mobile */
@media(max-width:1100px){
  body:not(.reserva-en-curso) .buscador-reserva-horizontal__campos{
    grid-template-columns:1.4fr 1fr 1fr!important;
  }

  body:not(.reserva-en-curso) .btn-buscar-reserva-horizontal{
    grid-column:3;
  }
}

@media(max-width:760px){
  .header-content{
    padding-left:18px!important;
    padding-right:18px!important;
  }

  body:not(.reserva-en-curso) .hero-convencional-contenido{
    padding:30px 20px 28px!important;
  }

  body:not(.reserva-en-curso) .hero-convencional-copy h1{
    font-size:clamp(34px,10vw,44px)!important;
  }

  body:not(.reserva-en-curso) .buscador-reserva-horizontal__campos{
    grid-template-columns:1fr!important;
  }

  body:not(.reserva-en-curso) .btn-buscar-reserva-horizontal{
    grid-column:auto!important;
  }

  body:not(.reserva-en-curso) .ciro-cta-reserva{
    min-height:auto!important;
  }

  body:not(.reserva-en-curso) .ciro-cta-reserva > div{
    padding-left:0;
  }

  body:not(.reserva-en-curso) .ciro-cta-reserva > div::before{
    display:none;
  }

  body:not(.reserva-en-curso) .ciro-cta-reserva a{
    width:100%;
    min-width:0;
  }
}


/* =========================================================
   EME · RESERVAS · V6
   Ajuste de ancho del buscador + botón "Siguiente"
   ========================================================= */

body:not(.reserva-en-curso) .hero-convencional-contenido{
  max-width:1580px!important;
}

body:not(.reserva-en-curso) .buscador-reserva-horizontal{
  width:min(100%, 1500px)!important;
  max-width:1500px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  overflow:hidden!important;
}

body:not(.reserva-en-curso) .buscador-reserva-horizontal__campos{
  grid-template-columns:
    minmax(240px,1.55fr)
    minmax(150px,.9fr)
    minmax(150px,.9fr)
    minmax(150px,.9fr)
    minmax(150px,.9fr)
    minmax(160px,.9fr)!important;
  gap:10px!important;
  width:100%!important;
  min-width:0!important;
}

body:not(.reserva-en-curso) .campo-reserva,
body:not(.reserva-en-curso) .btn-buscar-reserva-horizontal{
  min-width:0!important;
  max-width:100%!important;
}

body:not(.reserva-en-curso) .btn-buscar-reserva-horizontal{
  width:100%!important;
  padding-left:14px!important;
  padding-right:14px!important;
  white-space:nowrap!important;
}

@media(max-width:1250px){
  body:not(.reserva-en-curso) .buscador-reserva-horizontal__campos{
    grid-template-columns:
      minmax(220px,1.45fr)
      minmax(140px,.85fr)
      minmax(140px,.85fr)
      minmax(140px,.85fr)
      minmax(140px,.85fr)
      minmax(145px,.82fr)!important;
    gap:8px!important;
  }
}


/* =========================================================
   EME · RESERVAS · V7
   Altura real del buscador + botón Continuar
   ========================================================= */

body:not(.reserva-en-curso) .buscador-reserva-horizontal{
  min-height:178px!important;
  height:auto!important;
  overflow:visible!important;
  padding:22px 24px 20px!important;
}

body:not(.reserva-en-curso) .buscador-reserva-horizontal__campos{
  min-height:72px!important;
  align-items:end!important;
}

body:not(.reserva-en-curso) .campo-reserva{
  display:flex!important;
  flex-direction:column!important;
  min-height:72px!important;
  justify-content:flex-end!important;
}

body:not(.reserva-en-curso) .campo-reserva > span{
  display:block!important;
  flex:0 0 auto!important;
  line-height:1.2!important;
}

body:not(.reserva-en-curso) .campo-reserva-control{
  flex:0 0 54px!important;
  height:54px!important;
  min-height:54px!important;
}

body:not(.reserva-en-curso) .btn-buscar-reserva-horizontal{
  align-self:end!important;
  flex:0 0 54px!important;
  height:54px!important;
  min-height:54px!important;
}

/* Reserva espacio real para la nota inferior */
body:not(.reserva-en-curso) .buscador-reserva-horizontal__nota{
  min-height:14px!important;
  margin-top:10px!important;
  line-height:1.35!important;
}

/* El hero debe admitir el panel más alto sin cortarlo */
body:not(.reserva-en-curso) #inicio.hero-reservas-convencional{
  overflow:visible!important;
}

body:not(.reserva-en-curso) .hero-convencional-contenido{
  overflow:visible!important;
}

/* En monitores de menor altura reducimos solo espacios del hero,
   no la altura del formulario */
@media (min-width:901px) and (max-height:760px){
  body:not(.reserva-en-curso) .hero-convencional-contenido{
    padding-top:20px!important;
    padding-bottom:20px!important;
  }

  body:not(.reserva-en-curso) .hero-convencional-copy{
    margin-bottom:22px!important;
  }

  body:not(.reserva-en-curso) .hero-convencional-badge{
    margin-bottom:12px!important;
  }

  body:not(.reserva-en-curso) .hero-convencional-copy h1{
    margin-bottom:14px!important;
  }
}


/* =========================================================
   EME · HERO PUBLICADO DESDE FIRESTORE · V9
   ========================================================= */

.hero-reservas-convencional {
  position: relative;
  isolation: isolate;
}

.hero-publico-fondo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image .45s ease;
}

.hero-convencional-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-convencional-contenido {
  position: relative;
  z-index: 2;
}
