:root {
  --verde: #006b3d;
  --verde-oscuro: #043c2f;
  --turquesa: #12b8b0;
  --fondo: #f5f7f8;
  --texto: #1e1e1e;
  --gris: #6b7280;
  --blanco: #ffffff;
  --sombra: 0 18px 45px rgba(0, 0, 0, 0.14);
  --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;
}

.header-reservas {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(4, 60, 47, 0.92);
  backdrop-filter: blur(14px);
  color: white;
  
}

.header-content {
  max-width: 1220px;
  margin: auto;
  height: 70px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-reservas-horizontal {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-reservas {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-reservas a {
  opacity: 0.88;
}

.nav-reservas a:hover {
  opacity: 1;
  color: var(--turquesa);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.selector-idioma {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 10px 12px;
  outline: none;
}

.selector-idioma option {
  color: #111;
}

.btn-whatsapp {
  background: var(--turquesa);
  color: #032b25;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.hero-reservas {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 110px;
  background: #043c2f;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 60, 47, 0.92),
    rgba(4, 60, 47, 0.58),
    rgba(4, 60, 47, 0.20)
  );
}

.hero-slide-1 {
  background-image: url("img/hero/hero-1.jpg");
}

.hero-slide-2 {
  background-image: url("img/hero/hero-2.jpg");
}

.hero-slide-3 {
  background-image: url("img/hero/hero-3.jpg");
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: auto;
  padding: 150px 22px 260px;
  color: white;
}

.hero-slide-content span {
  display: inline-block;
  background: rgba(18, 184, 176, 0.16);
  color: var(--turquesa);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-slide-content h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  margin: 0 0 20px;
  max-width: 720px;
}

.hero-slide-content p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 590px;
  color: rgba(255,255,255,0.9);
}

.hero-search-wrapper {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 55px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 44px));
}

.buscador-reserva {
  background: rgba(255,255,255,0.97);
  color: var(--texto);
  padding: 22px;
  border-radius: 28px;
  box-shadow: var(--sombra);
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 7;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--verde);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.hero-dots {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 11px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.52);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--turquesa);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-header h2,
.experiencias-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 14px;
  color: var(--verde-oscuro);
}

.section-header p {
  margin: 0;
  color: var(--gris);
  line-height: 1.7;
}

.grid-gamas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card-gama {
  background: white;
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-gama:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.card-img {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.img-sedan {
  background-image: url("https://images.unsplash.com/photo-1552519507-da3b142c6e3d?auto=format&fit=crop&w=900&q=80");
}

.img-auto {
  background-image: url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=900&q=80");
}

.img-suv {
  background-image: url("https://images.unsplash.com/photo-1519641471654-76ce0107ad1b?auto=format&fit=crop&w=900&q=80");
}

.img-suv7 {
  background-image: url("https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=900&q=80");
}

.card-body {
  padding: 20px;
}

.tag-gama {
  display: inline-block;
  background: #e7fbf9;
  color: var(--verde);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--verde-oscuro);
}

.card-body p {
  color: var(--gris);
  line-height: 1.5;
  font-size: 14px;
  min-height: 44px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.features span {
  background: #f1f5f9;
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 12px;
  color: #334155;
}

.precio {
  border-top: 1px solid #eef2f7;
  padding-top: 14px;
  margin-top: 14px;
}

.precio small {
  display: block;
  color: var(--gris);
}

.precio strong {
  color: var(--verde);
  font-size: 20px;
}

.precio span {
  color: var(--gris);
  font-size: 13px;
}

.btn-reservar-gama {
  width: 100%;
  margin-top: 16px;
  border: none;
  border-radius: 14px;
  padding: 13px;
  background: var(--verde-oscuro);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.btn-reservar-gama:hover {
  background: var(--verde);
}

.beneficios-section {
  max-width: none;
  background: white;
}

.beneficios-section .section-header,
.grid-beneficios {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.beneficio-card {
  background: var(--fondo);
  padding: 26px;
  border-radius: var(--radio);
}

.beneficio-card h3 {
  color: var(--verde-oscuro);
  margin-top: 0;
}

.beneficio-card p {
  color: var(--gris);
  line-height: 1.6;
}

.experiencias-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.experiencias-content {
  background:
    linear-gradient(135deg, rgba(4,60,47,0.96), rgba(0,107,61,0.78)),
    url("https://images.unsplash.com/photo-1519055548599-6d4d129508c4?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 48px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.experiencias-content h2 {
  color: white;
}

.experiencias-content p {
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.experiencias-grid div {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 24px;
  border-radius: 20px;
  font-weight: 800;
  text-align: center;
}

.footer-reservas {
  background: var(--verde-oscuro);
  color: white;
  padding: 48px 22px;
}

.footer-content {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-content p {
  color: rgba(255,255,255,0.75);
}

/* TABLET */
@media (max-width: 1050px) {
  .nav-reservas {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .grid-gamas,
  .grid-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVIL */
@media (max-width: 650px) {
  .header-content {
    height: 50px;
    padding: 0 10px;
  }

  .logo-reservas-horizontal {
  height: 72px;
}

  .btn-whatsapp {
    padding: 9px 12px;
    font-size: 12px;
  }

  .selector-idioma {
    padding: 8px 9px;
  }

  .hero-reservas {
    padding: 105px 14px 48px;
    min-height: auto;
  }

  .hero-text {
    padding-top: 0;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .buscador-reserva {
    padding: 18px;
    border-radius: 24px;
  }

  .seccion {
    padding: 62px 14px;
  }

  .grid-gamas,
  .grid-beneficios,
  .experiencias-content,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .experiencias-content {
    padding: 28px;
    border-radius: 26px;
  }

  .experiencias-grid {
    grid-template-columns: 1fr;
  }

  .card-img {
    height: 190px;
  }


.hero-reservas {
  min-height: 900px;
  padding-top: 88px;
}

.hero-slide-content {
  padding: 90px 18px 430px;
}

.hero-slide-content h1 {
  font-size: 36px;
}

.hero-search-wrapper {
  bottom: 56px;
  width: calc(100% - 28px);
}

.buscador-reserva {
  grid-template-columns: 1fr;
  padding: 18px;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  font-size: 30px;
  top: 42%;
}

.hero-prev {
  left: 10px;
}

.hero-next {
  right: 10px;
}







}


/* ================================
   PROMOCIONES / SLIDER
================================ */

.promo-slider {
  position: relative;
  background: #006b2f;
  color: white;
  min-height: 380px;
  overflow: hidden;
  padding: 48px 90px 56px;
}

.promo-content {
  max-width: 1220px;
  margin: auto;
  position: relative;
  min-height: 300px;
}

.promo-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 300px;
}

.promo-slide.active {
  display: grid;
}

.promo-img {
  height: 300px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.promo-img-1 {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=80");
}

.promo-img-2 {
  background-image: url("https://images.unsplash.com/photo-1519641471654-76ce0107ad1b?auto=format&fit=crop&w=900&q=80");
}

.promo-img-3 {
  background-image: url("https://images.unsplash.com/photo-1525609004556-c46c7d6cf023?auto=format&fit=crop&w=900&q=80");
}

.promo-info span {
  display: inline-block;
  color: #58ff2e;
  font-weight: 800;
  margin-bottom: 10px;
}

.promo-info h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.promo-info p {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.promo-info ul {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.promo-info li {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
}

.promo-info li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 8px;
  background: #58ff2e;
  color: #00591f;
  font-weight: 900;
}

.promo-btn {
  border: none;
  background: #58ff2e;
  color: #00451d;
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}

.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: white;
  color: #006b2f;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.promo-prev {
  left: 32px;
}

.promo-next {
  right: 32px;
}

.promo-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.promo-dot.active {
  background: #58ff2e;
}

/* MÓVIL */
@media (max-width: 760px) {
  .promo-slider {
    padding: 38px 18px 58px;
  }

  .promo-slide,
  .promo-slide.active {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .promo-img {
    height: 210px;
  }

  .promo-arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .promo-prev {
    left: 10px;
  }

  .promo-next {
    right: 10px;
  }

  .promo-info li {
    text-align: left;
  }
}


/* FIX BUSCADOR HERO */
.hero-search-wrapper .buscador-reserva {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  padding: 22px;
  border-radius: 26px;
}

.hero-search-wrapper .campo-busqueda {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-search-wrapper .campo-busqueda label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.hero-search-wrapper .campo-busqueda input,
.hero-search-wrapper .campo-busqueda select {
  width: 100%;
  height: 46px;
  border: 1px solid #d8dee6;
  background: #ffffff;
  border-radius: 14px;
  padding: 0 14px;
  font-size: 14px;
  font-family: "Poppins", Arial, sans-serif;
  color: #1e1e1e;
}

.hero-search-wrapper .btn-buscar {
  height: 46px;
  min-width: 160px;
  border: none;
  border-radius: 14px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--verde), var(--turquesa));
  color: #ffffff;
  font-weight: 800;
  font-family: "Poppins", Arial, sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-search-wrapper .buscador-reserva {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-search-wrapper .btn-buscar {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .hero-search-wrapper .buscador-reserva {
    grid-template-columns: 1fr;
  }
}


/* ================================
   HERO V2 PREMIUM
================================ */

.hero-reservas {
  background: #032f28;
}

.hero-slide::before {
  background:
    linear-gradient(
      90deg,
      rgba(3, 47, 40, 0.96) 0%,
      rgba(3, 47, 40, 0.78) 42%,
      rgba(3, 47, 40, 0.35) 72%,
      rgba(3, 47, 40, 0.62) 100%
    );
}

.hero-slide-content {
  padding-top: 135px;
}

.hero-slide-content span {
  background: rgba(18, 184, 176, 0.20);
  color: #29f0e4;
  border: 1px solid rgba(41, 240, 228, 0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.hero-slide-content h1 {
  font-weight: 900;
  letter-spacing: -1.8px;
  text-shadow: 0 16px 38px rgba(0,0,0,0.32);
}

.hero-slide-content p {
  font-weight: 500;
  text-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.hero-search-wrapper .buscador-reserva {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.hero-arrow {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}

.hero-arrow:hover {
  background: var(--turquesa);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.hero-dot {
  width: 11px;
  height: 11px;
}

.hero-dot.active {
  width: 28px;
  border-radius: 999px;
}

/* Header premium */
.header-reservas {
  background: rgba(3, 47, 40, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-content {
  transition: height .25s ease;
}

.header-reservas.scrolled {
  background: rgba(3, 47, 40, 0.96);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.header-reservas.scrolled .header-content {
  height: 86px;
}

.header-reservas.scrolled .logo-reservas-horizontal {
  height: 72px;
}

.logo-reservas-horizontal {
  transition: height .25s ease;
}


/* ================================
   FLUJO DE RESERVA
================================ */

.oculto {
  display: none !important;
}

.flujo-reserva {
  background: #ffffff;
  padding: 70px 22px;
}

.flujo-container {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.flujo-main {
  min-width: 0;
}

.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
}

.step {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #94a3b8;
  font-weight: 700;
  font-size: 13px;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #cbd5e1;
  display: grid;
  place-items: center;
  background: white;
}

.step.active {
  color: var(--verde);
}

.step.active .step-circle {
  border-color: var(--verde);
  background: var(--verde);
  color: white;
}

.step-line {
  width: 90px;
  height: 4px;
  background: #cbd5e1;
  margin: 0 10px 24px;
}

.titulo-paso {
  margin-bottom: 28px;
}

.titulo-paso span {
  color: var(--turquesa);
  font-weight: 800;
}

.titulo-paso h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--verde-oscuro);
}

.grid-grupos-reserva {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.grupo-card {
  position: relative;
  background: white;
  border: 1px solid #dbe3ea;
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.grupo-card.destacado {
  border: 2px solid var(--turquesa);
}

.badge-recomendado {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #58ff2e;
  color: #00591f;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.grupo-codigo {
  display: inline-block;
  color: var(--verde);
  font-weight: 900;
  margin-bottom: 10px;
}

.grupo-header h3 {
  margin: 0;
  color: var(--verde-oscuro);
  text-transform: uppercase;
}

.grupo-header p {
  color: #475569;
  font-weight: 600;
}

.grupo-imagen {
  height: 180px;
  display: grid;
  place-items: center;
  margin: 18px 0;
}

.grupo-imagen img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.grupo-precio {
  background: #f1f5f9;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
}

.grupo-precio small {
  display: block;
  color: #64748b;
}

.grupo-precio strong {
  display: block;
  color: var(--verde-oscuro);
  font-size: 26px;
}

.grupo-precio span {
  color: #475569;
  font-size: 13px;
}

.btn-elegir-grupo {
  width: 100%;
  border: none;
  background: #58e51f;
  color: #043c2f;
  padding: 15px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
}

.btn-detalles-grupo {
  margin-top: 14px;
  border: none;
  background: transparent;
  color: var(--verde);
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.grupo-detalles {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.detalle-item {
  background: #f1f5f9;
  border-radius: 14px;
  padding: 12px;
}

.detalle-item span {
  display: block;
  color: #64748b;
  font-size: 12px;
}

.detalle-item strong {
  color: var(--verde-oscuro);
}

.resumen-reserva {
  position: sticky;
  top: 120px;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
}

.resumen-reserva h3 {
  margin: 0;
  background: #e5e7eb;
  padding: 18px;
  text-align: center;
  color: #334155;
}

.resumen-item {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.resumen-item span {
  display: block;
  color: var(--verde);
  font-weight: 900;
  margin-bottom: 5px;
}

.resumen-item strong {
  color: #334155;
  font-size: 14px;
}

.resumen-total {
  background: var(--verde);
  color: white;
  padding: 24px 20px;
  text-align: center;
}

.resumen-total small {
  display: block;
  color: #b7ff8a;
  font-weight: 800;
}

.resumen-total strong {
  font-size: 30px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .flujo-container {
    grid-template-columns: 1fr;
  }

  .resumen-reserva {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .flujo-reserva {
    padding: 48px 14px;
  }

  .steps-bar {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .step-line {
    width: 50px;
  }

  .grid-grupos-reserva {
    grid-template-columns: 1fr;
  }

  .grupo-card {
    padding: 22px;
  }
}



/* PROTECCIONES */

.grid-protecciones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.proteccion-card {
  position: relative;
  background: white;
  border: 1px solid #dbe3ea;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.proteccion-card.recomendada {
  border: 2px solid var(--turquesa);
}

.proteccion-card h3 {
  margin-top: 0;
  color: var(--verde-oscuro);
  font-size: 24px;
}

.proteccion-card p {
  color: #475569;
  line-height: 1.6;
}

.proteccion-precio {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 18px;
  margin: 20px 0;
}

.proteccion-precio strong {
  display: block;
  font-size: 28px;
  color: var(--verde);
}

.proteccion-precio span {
  color: #64748b;
  font-weight: 700;
}

.proteccion-card ul {
  padding-left: 18px;
  color: #334155;
  line-height: 1.8;
}

.btn-elegir-proteccion {
  width: 100%;
  border: none;
  background: #58e51f;
  color: #043c2f;
  padding: 15px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  margin-top: 16px;
}

@media (max-width: 720px) {
  .grid-protecciones {
    grid-template-columns: 1fr;
  }
}


/* ================================
   FORMULARIO PREMIUM
================================ */

#pasoDatos {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

#pasoDatos .titulo-paso {
  margin-bottom: 34px;
}

#pasoDatos .titulo-paso span {
  display: inline-block;
  background: rgba(18,184,176,0.12);
  color: var(--turquesa);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

#pasoDatos .titulo-paso h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: var(--verde-oscuro);
  letter-spacing: -1px;
}

.form-datos-reserva {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.campo-formulario {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.campo-formulario.full {
  grid-column: 1 / -1;
}

.campo-formulario label {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  padding-left: 2px;
}

.campo-formulario input,
.campo-formulario select,
.campo-formulario textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #dbe3ea;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 15px;
  font-family: "Poppins", Arial, sans-serif;
  color: #0f172a;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.campo-formulario input::placeholder,
.campo-formulario textarea::placeholder {
  color: #94a3b8;
}

.campo-formulario textarea {
  min-height: 150px;
  resize: vertical;
}

.campo-formulario input:focus,
.campo-formulario select:focus,
.campo-formulario textarea:focus {
  outline: none;
  border-color: var(--turquesa);
  background: white;
  box-shadow: 0 0 0 5px rgba(18,184,176,0.12);
}

.btn-continuar-reserva {
  grid-column: 1 / -1;
  height: 58px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    var(--verde),
    var(--turquesa)
  );
  color: white;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .3px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 18px 40px rgba(4,60,47,0.18);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.btn-continuar-reserva:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(4,60,47,0.24);
}

/* RESPONSIVE */

@media (max-width: 720px) {

  #pasoDatos {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-datos-reserva {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .campo-formulario.full {
    grid-column: auto;
  }

  #pasoDatos .titulo-paso h2 {
    font-size: 34px;
  }

}

/* ================================
   PASO CONFIRMACIÓN
================================ */

.confirmacion-card {
  background: white;
  border-radius: 30px;
  padding: 42px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 55px rgba(15,23,42,0.08);
}

.confirmacion-header {
  margin-bottom: 34px;
}

.confirmacion-header span {
  display: inline-block;
  background: rgba(18,184,176,0.12);
  color: var(--turquesa);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.confirmacion-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--verde-oscuro);
  letter-spacing: -1px;
}

.confirmacion-header p {
  margin-top: 14px;
  color: #64748b;
  font-size: 16px;
}

.confirmacion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.confirmacion-bloque {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px;
}

.confirmacion-bloque h3 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--verde);
  font-size: 20px;
}

.confirmacion-bloque p {
  margin: 10px 0;
  color: #334155;
  line-height: 1.6;
}

.confirmacion-bloque strong {
  color: #0f172a;
}

.confirmacion-total {
  background: linear-gradient(
    135deg,
    var(--verde),
    #065f46
  );
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  color: white;
  margin-bottom: 26px;
}

.confirmacion-total small {
  display: block;
  color: #8effb6;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.confirmacion-total strong {
  display: block;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1;
  margin-bottom: 12px;
}

.confirmacion-total p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.btn-confirmar-reserva {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--turquesa),
    #06b6d4
  );
  color: white;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .5px;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(6,182,212,0.22);
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.btn-confirmar-reserva:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(6,182,212,0.28);
}

/* RESPONSIVE */

@media (max-width: 720px) {

  .confirmacion-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .confirmacion-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .confirmacion-header h2 {
    font-size: 36px;
  }

  .confirmacion-total {
    padding: 26px 18px;
  }

}


/* ================================
   PANTALLA ÉXITO RESERVA
================================ */

.pantalla-exito-reserva {
  min-height: 80vh;
  background: linear-gradient(135deg, #043c2f, #006b3d);
  padding: 90px 22px;
  display: grid;
  place-items: center;
}

.exito-card {
  width: min(720px, 100%);
  background: white;
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0,0,0,0.22);
}

.exito-icono {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #58e51f;
  color: #043c2f;
  display: grid;
  place-items: center;
  font-size: 46px;
  font-weight: 900;
}

.exito-card > span {
  display: inline-block;
  color: var(--turquesa);
  font-weight: 900;
  margin-bottom: 12px;
}

.exito-card h2 {
  margin: 0;
  color: var(--verde-oscuro);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}

.exito-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 16px;
}

.codigo-reserva-box {
  background: #f1f5f9;
  border-radius: 22px;
  padding: 24px;
  margin: 28px 0;
}

.codigo-reserva-box small {
  display: block;
  color: #64748b;
  font-weight: 800;
  margin-bottom: 8px;
}

.codigo-reserva-box strong {
  display: block;
  color: var(--verde);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 1px;
}

.exito-nota {
  font-size: 14px;
  color: #64748b;
}

.btn-volver-inicio {
  margin-top: 20px;
  border: none;
  border-radius: 18px;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--verde), var(--turquesa));
  color: white;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 720px) {
  .pantalla-exito-reserva {
    padding: 60px 14px;
  }

  .exito-card {
    padding: 32px 20px;
    border-radius: 24px;
  }
}



/* OCULTAR RESUMEN LATERAL EN PASO DE GRUPOS */
.flujo-container {
  grid-template-columns: 1fr !important;
}

.resumen-reserva {
  display: none !important;
}

.grid-grupos-reserva {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.grupo-card {
  padding: 24px 22px;
}

.grupo-imagen {
  height: 190px;
}

.grupo-imagen img {
  max-height: 185px;
}

@media (max-width: 1100px) {
  .grid-grupos-reserva {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 650px) {
  .grid-grupos-reserva {
    grid-template-columns: 1fr !important;
  }
}

/* AJUSTE VISUAL PASO GRUPOS */
.flujo-reserva {
  padding-top: 35px;
}

.steps-bar {
  margin-bottom: 28px;
}

.titulo-paso {
  margin-bottom: 22px;
}

.titulo-paso h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.grupo-card {
  min-height: auto;
  padding: 22px 20px;
}

.grupo-header h3 {
  font-size: 18px;
}

.grupo-header p {
  font-size: 14px;
  min-height: 42px;
}

.grupo-imagen {
  height: 155px;
  margin: 10px 0 14px;
}

.grupo-imagen img {
  max-height: 150px;
}

.grupo-precio {
  padding: 12px;
  margin-bottom: 12px;
}

.grupo-precio strong {
  font-size: 24px;
}

.btn-elegir-grupo {
  padding: 13px;
}

.card-flota img {
  height: 190px;
  object-fit: contain;
  padding: 10px;
}

.btn-card-reservar {
  width: 100%;
  border: none;
  border-radius: 14px;
  background: #004d3b;
  color: white;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.btn-card-reservar:hover {
  background: #00c2b2;
  transform: translateY(-2px);
}

.card-gama .btn-card-reservar {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
  border: none;
  border-radius: 14px;
  padding: 14px 18px;
  background: var(--verde-oscuro);
  color: white;
  font-weight: 800;
  font-family: "Poppins", Arial, sans-serif;
  cursor: pointer;
}

.card-gama .btn-card-reservar:hover {
  background: var(--verde);
}

.card-img-contain {
  background: #f8fafc;
  display: grid;
  place-items: center;
}

.card-img-contain img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 12px;
}

.opciones-pago {
  margin: 26px 0;
  display: grid;
  gap: 16px;
}

.opciones-pago h3 {
  margin: 0;
  color: var(--verde-oscuro);
  font-size: 22px;
}

.opcion-pago-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #dbe3ea;
  border-radius: 20px;
  padding: 18px;
  cursor: pointer;
}

.opcion-pago-card input {
  width: 22px;
  height: 22px;
  accent-color: var(--verde);
}

.opcion-pago-card div {
  display: grid;
  gap: 5px;
}

.opcion-pago-card strong {
  color: #0f172a;
}

.opcion-pago-card span {
  color: var(--verde);
  font-weight: 900;
}

/* ================================
   FIX DEFINITIVO HERO + BUSCADOR
================================ */

.hero-reservas {
  min-height: 860px;
  padding-top: 90px;
  overflow: hidden;
}

.hero-slide-content {
  padding: 115px 22px 320px;
}
.hero-search-wrapper {
  bottom: 280px;
  z-index: 8;
}

.hero-arrow {
  z-index: 9;
}

@media (max-width: 650px) {

  .hero-reservas {
    min-height: auto !important;
    height: auto !important;
    padding: 70px 14px 28px !important;
    overflow: visible !important;
  }

  .hero-slide {
    position: relative !important;
    display: none !important;
    min-height: 320px !important;
  }

  .hero-slide.active {
    display: block !important;
  }

  .hero-slide-content {
    padding: 68px 0 42px !important;
  }

  .hero-search-wrapper {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: -18px !important;
    z-index: 20 !important;
  }

  .hero-arrow {
    top: 260px !important;
    transform: none !important;
    z-index: 30 !important;
  }

  .hero-prev {
    left: 16px !important;
  }

  .hero-next {
    right: 16px !important;
  }

  .hero-dots {
    bottom: auto !important;
    top: 315px !important;
  }
}