:root {
  --green: #4DB200;
  --green-dark: #3d8f00;
  --black: #0a0a0a;
  --near-black: #141414;
  --bg: #f0f0ee;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #7a7a7a;
  --radius: 14px;
  --shadow: 0 2px 6px rgba(0,0,0,0.05);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; display: block; }

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

/* ---------- HERO ---------- */

.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  color: var(--white);
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  background-position: center 25%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active { opacity: 1; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.05) 55%, rgba(0,0,0,0.75) 100%);
}

/* ---------- HEADER ---------- */

.header {
  position: relative;
  z-index: 60;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(6px);
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.header__top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo img { height: 76px; }

.header__search-row {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 32px 28px;
  display: flex;
  justify-content: center;
}

.search {
  width: 95%;
  max-width: 1180px;
  flex-wrap: wrap;
  display: flex;
  gap: 22px;
  background: transparent;
}

.search__par {
  display: flex;
  gap: 6px;
  flex: 2;
  min-width: 260px;
}
.search__par .search__field--fecha { flex: 1; min-width: 0; }

.search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transition: box-shadow 0.25s ease;
}

.search__field:focus-within { box-shadow: 0 6px 20px rgba(0,0,0,0.20); }

.search__field--grow { flex: 1; min-width: 180px; }
.search__field img { width: 30px; height: 30px; opacity: 0.85; }

.search__field input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  color: var(--text);
}

.search__field input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  padding: 8px 18px;
}

.header__phone img { width: 30px; height: 30px; }
.header__phone-number { font-weight: 600; font-size: 15px; color: #fff; }

.header__separador { color: rgba(255,255,255,0.5); font-size: 15px; }

.header__badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.header__badge img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

/* ---------- HERO CONTENT ---------- */

.hero__promo {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  text-align: center;
}

.hero__off {
  animation: badgePopIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.3s;
  transition: transform 0.3s ease;
}

.hero__off:hover { transform: scale(1.06); }

.hero__off img {
  width: clamp(280px, 24vw, 440px);
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.5));
}

@keyframes badgePopIn {
  0% { opacity: 0; transform: scale(0.55); }
  100% { opacity: 1; transform: scale(1); }
}

.hero__promo-legal {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 8px;
  font-style: italic;
}

.hero__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  font-size: 19px;
  line-height: 1.4;
}

.hero__caption strong { font-family: var(--font-display); font-weight: 700; }

.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
}

.hero__dot.is-active { background: var(--white); }

/* ---------- BOTONES (genérico) ---------- */

.btn {
  border: none;
  border-radius: 30px;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); }

/* ---------- CAPA SPOTLIGHT ---------- */

.spotlight-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.spotlight-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- FLOTA ---------- */

.flota {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 16px;
}

.flota__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
}

.card__categoria {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card__modelo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 2px 0 12px;
}

.card__img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card__img img { max-height: 130px; object-fit: contain; }

.card .btn--primary {
  margin: 0 auto 14px;
}

.card__legal {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
}

.card__specs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.card__specs > .spec:not(:last-child) { order: 1; }
.card__specs > .spec:last-child { order: 3; }
.card__specs::after { content: ''; flex-basis: 100%; order: 2; }

.spec {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #eef7e6;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
}

.spec img { width: 25px; height: 25px; }

/* ---------- PAGOS ---------- */

.pagos {
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 24px;
  text-align: left;
}

.pagos__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pagos__logos {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pagos__logos img { height: 24px; }

/* ---------- FOOTER ---------- */

.footer {
  background: var(--black);
  margin-top: 48px;
}

.footer__top {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  color: rgba(255,255,255,0.85);
}

.footer__brand img { height: 34px; margin-bottom: 14px; }
.footer__brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.65); max-width: 340px; }
.footer__brand em { font-style: italic; color: rgba(255,255,255,0.85); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  margin: 0 0 12px;
  color: var(--white);
}

.footer__col p { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0 0 10px; }

.footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.footer__phone img { width: 16px; height: 16px; }

.footer__bottom {
  background: #dcd9d3;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6f6f6f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__social img { width: 27px; height: 27px; filter: invert(1) brightness(1.4); }

.footer__links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 13px;
  color: #4a4a4a;
}

.footer__copy {
  margin-left: auto;
  font-size: 13px;
  color: #4a4a4a;
}

.footer__copy strong { color: var(--black); font-weight: 700; }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .header { margin: 0 16px; border-radius: 16px; }
  .header__top { padding: 14px 18px; gap: 14px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .header__search-row { padding: 14px 18px 16px; }
  .search { width: 100%; flex-direction: column; }
  .search__field { box-shadow: none; border: 1px solid #e5e5e5; }

  .hero { min-height: 1000px; }
  .hero__promo { margin-top: 56px; }
  .hero__off img { width: 190px; }
  .hero__caption { margin-top: 40px; font-size: 16px; padding: 0 16px; }
  .hero__dots { margin: 16px 0 20px; }

  .flota { padding: 36px 16px 12px; }
  .flota__grid { grid-template-columns: repeat(2, 1fr); }

  .footer__top { grid-template-columns: 1fr; text-align: center; padding: 36px 20px 28px; }
  .footer__brand img { margin-left: auto; margin-right: auto; }
  .footer__brand p { margin-left: auto; margin-right: auto; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
  .footer__copy { margin-left: 0; width: 100%; text-align: center; }
}

@media (max-width: 560px) {
  .header { margin: 0 10px; border-radius: 14px; }
  .header__top { padding: 12px 14px; gap: 10px; }
  .header__phone-number { font-size: 13px; }
  .header__search-row { padding: 12px 14px 14px; }
  .search__field { padding: 10px 14px; }

  .hero { min-height: 900px; }
  .hero__caption { font-size: 15px; margin-top: 28px; line-height: 1.35; }
  .hero__off img { width: 150px; }

  .flota__grid { grid-template-columns: 1fr; }
  .card { padding: 16px; }
  .card__img { height: 100px; }
  .card__img img { max-height: 100px; }

  .pagos { padding: 20px 16px; }
  .pagos__logos { flex-wrap: wrap; gap: 14px; }

  .footer__links { justify-content: center; }
}

/* ---------- RESERVA: HEADER Y PROGRESO ---------- */
.reserva-header {
  background: var(--black);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reserva-header__logo img { height: 36px; }
.progreso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 20px 8px;
}
.progreso__paso {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
}
.progreso__paso.is-active,
.progreso__paso.is-done { opacity: 1; }
.progreso__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ccc;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.progreso__paso.is-active .progreso__num,
.progreso__paso.is-done .progreso__num { background: var(--green); }
.progreso__label { font-size: 12px; line-height: 1.3; color: var(--text); }
.progreso__linea { width: 60px; height: 2px; background: #ddd; }

/* ---------- RESERVA: CONTENIDO ---------- */
.reserva-main { max-width: 1100px; margin: 0 auto; padding: 20px 24px 80px; }
.paso__titulo {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 26px;
  text-align: center;
  margin: 20px 0 32px;
}
.paso1-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  background: var(--black);
  padding: 20px;
  border-radius: 16px;
}
.paso1-form .search__field { background: var(--white); border-radius: 12px; padding: 12px 16px; }

/* ---------- RESERVA: PASO 3 ---------- */
.paso3-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.paso3-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.paso3-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #666;
  font-style: italic;
}
.paso3-form input, .paso3-form select {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  color: var(--text);
}
.paso3-form__row { display: flex; gap: 16px; }
.paso3-form__row label { flex: 1; }
.paso3-form__intro { font-weight: 600; color: var(--green); margin-bottom: 4px; }

/* Formularios del PANEL DE EMPLEADOS.
   Nacieron reutilizando .paso3-form, que pertenece al paso 3 del embudo publico:
   heredaban su label en cursiva y gris —pensado para un formulario de cliente— y
   hubo que cancelarlo a base de !important en el checklist del check-in.
   Con clase propia, un retoque del embudo publico deja de propagarse a los 5
   formularios del panel (coche, check-in, check-out, reserva manual, bloqueo).
   Se declara ANTES de .checkin-checklist a proposito: a igual especificidad gana
   la regla mas tardia del fichero, y asi el checklist puede sobrescribir la
   direccion de sus labels sin necesidad de !important. */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #666;
  font-style: normal;
}
.admin-form input, .admin-form select {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  color: var(--text);
}

.resumen-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.resumen-card__categoria { color: var(--green); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.resumen-card__modelo { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.resumen-card img.resumen-card__foto { width: 100%; border-radius: 10px; margin-bottom: 12px; }
.resumen-card__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.resumen-card__badge { background: #f0f0ee; border-radius: 8px; padding: 6px 10px; font-size: 12px; }
.resumen-card__linea {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid #f0f0ee;
}
.resumen-card__linea small { display: block; color: #999; font-size: 11px; }
.resumen-card__total {
  display: flex; justify-content: space-between;
  align-items: center;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 17px;
}

/* ---------- RESERVA: GRACIAS ---------- */
.paso--gracias { text-align: center; padding: 80px 20px; }
.paso--gracias h2 { font-family: var(--font-display); color: var(--green); font-size: 30px; margin-bottom: 12px; }
.paso--gracias p { color: #666; line-height: 1.6; }

.btn-verde {
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-verde:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .paso3-layout { grid-template-columns: 1fr; }
  .paso3-form__row { flex-direction: column; }
}

.search__submit {
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 14px;
  border: none;
  border-radius: 16px;
  padding: 14px 26px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.search__submit:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.card__usd {
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  margin: 10px 0 4px;
}

/* ---------- WHATSAPP FLOTANTE ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
}

/* ---------- SERVICIOS ---------- */
.servicios {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  text-align: center;
}
.servicios__titulo {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  margin-bottom: 32px;
}
.servicios__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.servicio {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.servicio img { width: 26px; height: 26px; }

/* ---------- TU VIAJE (ABOUT) ---------- */
.viaje {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.viaje__img {
  background: linear-gradient(160deg, #111 0%, #2a2a2a 100%);
  border-radius: 18px;
  min-height: 420px;
  overflow: hidden;
}
.viaje__img video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}
.viaje__texto h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  margin-bottom: 20px;
}
.viaje__texto p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
.viaje__lema { font-style: italic; font-weight: 600; }
.viaje__btn {
  display: inline-block;
  text-decoration: none;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .viaje { grid-template-columns: 1fr; }
  .viaje__img { min-height: 260px; }
}

/* ---------- MAPA ---------- */
.mapa {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 56px;
}
.mapa__marco {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.mapa__marco iframe { display: block; }

/* ---------- NAV HEADER + CTA FLOTA ---------- */
html { scroll-behavior: smooth; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header__nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.header__nav a:hover { color: var(--green); }
.header__login {
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 20px;
  padding: 7px 16px;
  color: rgba(255,255,255,0.85);
}
@media (max-width: 900px) {
  .header__top { flex-wrap: wrap; }
  .header__burger { display: flex; order: 5; }
  .header__nav {
    display: none;
    order: 10;
    width: 100%;
  }
  .header__nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .header__nav.is-open .header__login {
    align-self: stretch;
    text-align: center;
  }
}

.flota__cta { text-align: center; margin: 8px 0 16px; }
.flota__cta a { text-decoration: none; }

/* ---------- CARRUSEL FLOTA ---------- */
.carrusel {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.carrusel__ventana {
  overflow: hidden;
  flex: 1;
  padding: 24px 16px;
}
.carrusel__pista {
  display: flex !important;
  gap: 20px;
  transition: transform 0.45s ease;
}
.carrusel__pista .card {
  flex: 0 0 calc((100% - 40px) / 3);
}
.carrusel__flecha {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 26px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.carrusel__flecha:hover { color: var(--green); }
.carrusel__flecha:disabled { opacity: 0.3; cursor: default; }
.carrusel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 24px;
}
.carrusel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
}
.carrusel__dot.is-active { background: var(--green); }

@media (max-width: 900px) {
  .carrusel__pista .card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 600px) {
  .carrusel__pista .card { flex: 0 0 100%; }
}

/* ---------- HEADER COMPACTO (scroll) ---------- */
.header .header__search-row {
  max-height: 200px;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
  overflow: hidden;
}
.header.is-compact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: none;
  margin: 0;
  border-radius: 0;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.header.is-compact .header__search-row {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* ---------- COMPENSAR HEADER FIJO EN NAVEGACION POR ANCLAS ---------- */
#flota, #about, #servicios, #ubicacion {
  scroll-margin-top: 96px;
}

/* ---------- AJUSTES MOVIL: BUSCADOR ---------- */
@media (max-width: 768px) {
  .search { flex-wrap: nowrap; }
  .header .header__search-row { max-height: 640px; }
  .search__submit { width: 100%; padding: 14px; }
}

.search__submit:disabled {
  background: #9a9a96;
  color: rgba(255,255,255,0.7);
  cursor: not-allowed;
}

/* ---------- REGISTRO ---------- */
.registro__intro {
  color: var(--green);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 24px 0 36px;
}
.registro__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.requisitos h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 4px 0 12px;
}
.requisitos ul { list-style: none; padding: 0; margin: 0; }
.requisitos li {
  font-size: 13px;
  font-style: italic;
  color: #999;
  padding: 4px 0 4px 22px;
  position: relative;
}
.requisitos li::before {
  content: '•';
  position: absolute;
  left: 6px;
}
.requisitos li.is-ok { color: var(--green); }
.requisitos li.is-ok::before { content: '✓'; font-weight: 700; }
.registro__error {
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .registro__layout { grid-template-columns: 1fr; }
}

.btn-verde:disabled {
  background: #9a9a96;
  color: rgba(255,255,255,0.7);
  cursor: not-allowed;
}

/* ---------- MODAL LOGIN ---------- */
.login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.login-modal__card {
  background: var(--black);
  border-radius: 18px;
  padding: 32px 28px;
  width: 100%;
  max-width: 400px;
  color: var(--white);
}
.login-modal__card > img { height: 42px; margin-bottom: 26px; }
.login-modal__card label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}
.login-modal__card input {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  box-sizing: border-box;
}
.login-modal__row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.login-modal__row input { flex: 1; margin-top: 0; }
.login-modal__btn { padding: 12px 20px; white-space: nowrap; }

/* ---------- MIS RESERVAS ---------- */
.reservas-lista {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 480px;
  margin: 0 auto;
}
.reserva-item__fechas {
  position: relative;
  margin-bottom: 16px;
  padding-left: 4px;
}
.reserva-item__fechas p { margin-bottom: 12px; font-size: 14px; line-height: 1.5; }
.reserva-item__fechas em { font-style: italic; color: #666; }
.reserva-item__estado {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  background: #eee;
  color: #666;
}
.reserva-item__estado--pendiente { background: #fff3cd; color: #856404; }
.reserva-item__estado--confirmada { background: #d4edda; color: #155724; }

/* ---------- PANEL ADMIN ---------- */
.admin-main { max-width: 1280px; }
.admin-tabla-wrap { overflow-x: auto; }
.admin-tabla {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  font-size: 13px;
}
.admin-tabla th {
  background: var(--black);
  color: var(--white);
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
}
.admin-tabla td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0ee;
  vertical-align: top;
}
.admin-tabla small { color: #888; }
.admin-acciones { white-space: nowrap; }
.admin-btn {
  border: 1px solid #ddd;
  background: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  margin: 2px 2px 2px 0;
}
.admin-btn--ok { background: var(--green); border-color: var(--green); color: var(--black); font-weight: 700; }
.admin-btn--no { background: #fdecea; border-color: #f5c6cb; color: #c0392b; }
.reserva-item__estado--cancelada { background: #fdecea; color: #c0392b; }

.admin-estado {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  background: #eee;
  color: #666;
}

/* Reserva pendiente que supera el umbral de confirmación (ver HORAS_PENDIENTE_ANTIGUA en index.js) */
.admin-tabla tr.fila-pendiente-alerta td { background: #fdecea; }
.admin-tabla tr.fila-pendiente-alerta td:first-child { box-shadow: inset 4px 0 0 0 #c0392b; }
.badge-pendiente-antigua {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  background: #fdecea;
  color: #c0392b;
  white-space: nowrap;
}
.badge-info {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  background: #eaf7ef;
  color: #1b6b3a;
}

/* ---------- ADMIN: PESTAÑAS, FLOTA, MODAL ---------- */
.admin-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 28px;
}
.admin-tab {
  border: 1px solid #ddd;
  background: var(--white);
  border-radius: 20px;
  padding: 10px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.admin-tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
}
.flota-toolbar { margin-bottom: 16px; text-align: right; }
.admin-thumb { width: 72px; height: 44px; object-fit: contain; }
.fila-apagada td { opacity: 0.45; }
.fila-apagada td.admin-acciones { opacity: 1; }

.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.admin-modal__card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}
.admin-modal__card h3 {
  font-family: var(--font-display);
  margin-bottom: 20px;
}
.admin-modal__botones {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

/* ---------- ADMIN: TOOLBAR, FILTROS, NOTAS ---------- */
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.admin-filtros { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-filtro {
  border: 1px solid #ddd;
  background: var(--white);
  border-radius: 16px;
  padding: 7px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.admin-filtro.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.admin-buscador {
  flex: 1;
  min-width: 220px;
  max-width: 360px;
  padding: 9px 14px;
  border: 1px solid #ddd;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 13px;
}
.admin-nota {
  background: #fffbe6;
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  padding: 5px 8px;
  margin-top: 6px;
  font-size: 12px;
  color: #555;
  max-width: 220px;
  white-space: pre-wrap;
}
#nota-texto {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  resize: vertical;
  margin-bottom: 14px;
}

/* ---------- ADMIN: BANNERS ---------- */
.banners-ayuda {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}
.banners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.banner-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}
.banner-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.banner-card__pie {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  color: #888;
}
.banner-subir { cursor: pointer; display: inline-block; }

/* ---------- ADMIN: ORDEN Y ARCHIVOS ---------- */
.banner-primero { color: var(--green); font-size: 12px; }
.archivos-titulo {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 40px 0 8px;
}

.coche-subir-btn { display: inline-block; cursor: pointer; margin-top: -6px; }

/* ---------- ADMIN: LAYOUT CON SIDEBAR ---------- */
.reserva-main.admin-main { max-width: 1440px; }
.admin-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.admin-sidebar {
  width: 230px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: sticky;
  top: 20px;
}
.admin-sidebar .admin-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  color: var(--text);
}
.admin-sidebar .admin-tab:hover:not(:disabled) { background: #f0f0ee; }
.admin-sidebar .admin-tab.is-active {
  background: var(--green);
  color: var(--black);
}
.admin-tab--pronto {
  opacity: 0.4;
  cursor: default;
}
.pronto-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  background: #e8e8e6;
  border-radius: 8px;
  padding: 2px 7px;
  color: #888;
}
.admin-contenido { flex: 1; min-width: 0; }
.admin-seccion-titulo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 4px 0 18px;
}

@media (max-width: 900px) {
  .admin-layout { flex-direction: column; }
  .admin-sidebar {
    width: 100%;
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .admin-sidebar .admin-tab { width: auto; }
  .admin-tab--pronto { display: none; }
}

/* ---------- ADMIN: CLIENTES ---------- */
.admin-modal__card--ancho { max-width: 700px; }
.cliente-datos p { font-size: 14px; margin-bottom: 6px; }
.cliente-notas-label {
  display: block;
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin-top: 14px;
}
.cliente-notas-label textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  resize: vertical;
  margin-top: 6px;
}
.cliente-historial-titulo {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 6px 0 10px;
}
.cliente-reserva {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0ee;
  font-size: 13px;
}

/* ---------- ADMIN: DASHBOARD ---------- */
.dash-tarjetas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.dash-tarjeta {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #666;
}
.dash-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
}
.dash-tarjeta--alerta .dash-num { color: #c0392b; }
.dash-tarjeta--aviso .dash-num { color: #b8860b; }
.dash-columnas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.dash-bloque {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.dash-bloque h3 {
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 12px;
}
.dash-bloque--alerta { border-left: 4px solid #c0392b; }
.dash-linea {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0ee;
  font-size: 13px;
}
.dash-linea:last-child { border-bottom: none; }
@media (max-width: 800px) {
  .dash-columnas { grid-template-columns: 1fr; }
}

/* ---------- ADMIN: CHECK-IN Y ESTADOS NUEVOS ---------- */
.reserva-item__estado--en_curso { background: #cce5ff; color: #004085; }
.reserva-item__estado--devuelta { background: #e2e3e5; color: #383d41; }
.checkin-checklist {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 16px;
}
.checkin-checklist legend {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  padding: 0 6px;
}
.checkin-checklist label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}
.checkin-checklist input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); }
#form-checkin textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  resize: vertical;
}
.ci-fotos-preview { display: flex; flex-wrap: wrap; gap: 6px; }
.ci-foto-chip {
  background: #f0f0ee;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  color: #555;
}

/* ---------- ADMIN: CHECK-OUT ---------- */
.checkout-comparacion {
  background: #f7f7f5;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.comparacion-linea {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 4px 0;
}
.comparacion-linea--alerta { color: #c0392b; font-weight: 600; }
.comparacion-fotos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.comparacion-fotos img {
  width: 74px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
}

/* ---------- CALENDARIO CUSTOM DEL BUSCADOR ---------- */
.search__field--fecha { position: relative; cursor: pointer; }

.search__date-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  pointer-events: none;
}

.search__date-display {
  pointer-events: none;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

.search__date-display.is-vacio { color: #8a8a86; }

.calendario-popup {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  padding: 18px 20px;
  width: 300px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, top 0.55s cubic-bezier(0.4, 0, 0.2, 1), left 0.55s cubic-bezier(0.4, 0, 0.2, 1), width 0.55s ease;
}

.calendario-popup.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.calendario-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.calendario-popup__mes {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  text-transform: capitalize;
}

.calendario-popup__flecha {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.calendario-popup__flecha:hover { background: #f0f0ee; }
.calendario-popup__flecha:disabled { opacity: 0.25; cursor: not-allowed; }
.calendario-popup__flecha:disabled:hover { background: none; }

.calendario-popup__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}

.calendario-popup__diasemana {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 0 10px;
  text-transform: uppercase;
}

.calendario-popup__dia {
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--text);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s ease;
}
.calendario-popup__dia:hover:not(:disabled) { background: #eef7e6; }
.calendario-popup__dia:disabled { color: #ccc; cursor: not-allowed; }
.calendario-popup__dia.is-selected { background: var(--green); color: var(--black); font-weight: 700; }
.calendario-popup__dia.is-vacio { visibility: hidden; }

.calendario-popup--portal {
  position: absolute;
  top: 0;
  left: 0;
}

/* ---------- PANELES DE LISTA (UBICACION / HORA) ---------- */
.calendario-popup--opciones { width: 240px; padding: 10px; }
.calendario-popup--horas { width: 150px; padding: 10px; }

.calendario-popup__opcion {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.calendario-popup__opcion:hover { background: #eef7e6; }
.calendario-popup__opcion.is-selected { background: var(--green); color: var(--black); font-weight: 700; }

.calendario-popup__lista {
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.calendario-popup__lista .calendario-popup__opcion { text-align: center; }

/* ---------- DETALLE DE RESERVA ---------- */
.detalle-progreso {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 18px 20px;
  background: #f7f7f5;
  border-radius: 14px;
}
.detalle-progreso__paso {
  font-size: 14px;
  white-space: nowrap;
}
.detalle-progreso__item.is-cancelada {
  font-size: 15px;
  font-weight: 600;
  color: #c0392b;
}
.detalle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 28px;
}
.detalle-grid > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}
.detalle-grid strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 700;
}
.detalle-grid .admin-estado {
  align-self: flex-start;
}
.detalle-notas {
  margin-top: 20px;
  padding: 14px 16px;
  background: #fffbe8;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}
.detalle-panel {
  animation: fadeInDetalle 0.2s ease;
}
@keyframes fadeInDetalle {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- ACCIONES EN DETALLE DE RESERVA ---------- */
.detalle-banner {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detalle-banner--accion { background: #fff8e1; color: #8a6d00; }
.detalle-banner--ok { background: #e6f4ea; color: #1b6b3a; }
.detalle-banner--neutro { background: #eef0f2; color: #444; }
.detalle-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.detalle-acciones .btn-verde,
.detalle-acciones .admin-btn {
  font-size: 14px;
}

/* ---------- PESTAÑA DE PAGOS ---------- */
.pagos-resumen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.pagos-resumen__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: #f7f7f5;
  border-radius: 10px;
}
.pagos-resumen__item span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pagos-resumen__item strong { font-size: 18px; }
.pagos-resumen__saldo { border: 2px solid currentColor; background: #fff; }
.pagos-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px;
  max-width: 560px;
}
.pagos-form__row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pagos-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  flex: 1;
  min-width: 140px;
  margin-bottom: 12px;
}
.pagos-form input, .pagos-form select {
  padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 14px;
}

/* ---------- VER/OCULTAR CONTRASEÑA ---------- */
.pass-wrap { position: relative; display: block; }
.pass-wrap input { width: 100%; padding-right: 44px; box-sizing: border-box; }
.pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #999;
  display: flex;
  align-items: center;
}
.pass-toggle:hover { color: #333; }
.pass-toggle svg { width: 20px; height: 20px; }

/* ---------- MENU HAMBURGUESA ---------- */
.header__burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  align-items: center;
}
@media (max-width: 900px) {
  .header__burger { display: flex; }
}

/* ---------- ENLACES DEL DASHBOARD ---------- */
.dash-link { text-decoration: none; color: inherit; display: block; border-radius: 8px; }
.dash-link:hover .dash-linea { background: #f4f6f2; }

/* ---------- GRILLA DE ACCESORIOS (check-in/out) ---------- */
.accesorios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 14px;
}
.accesorios-grid label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
}
.accesorios-grid input[type="checkbox"] { width: auto; margin: 0; }
.accesorios-grid label.acc-faltante { color: #c0392b; font-weight: 600; }
@media (max-width: 700px) {
  .accesorios-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- BOTONES VERDES CON TEXTO BLANCO (hero) ---------- */
.btn-verde--claro { color: #fff; }

/* ---------- RELOJ DEL BUSCADOR: mantiene su tamaño original ---------- */
#campo-hora-inicio img, #campo-hora-fin img { width: 18px; height: 18px; }

/* ===== Pantalla de gracias: requisitos de entrega ===== */
.requisitos-entrega {
  max-width: 640px;
  margin: 34px auto 0;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 26px 30px 30px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.requisitos-entrega__titulo {
  margin: 0 0 20px;
  text-align: center;
  color: var(--green);
  font-size: 17px;
  font-weight: 700;
}
.requisitos-entrega__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #f2f2f2;
}
.requisitos-entrega__item:first-of-type { border-top: 0; padding-top: 0; }
.requisitos-entrega__item:last-of-type { padding-bottom: 0; }
.requisitos-entrega__icono { width: 40px; height: 40px; flex: 0 0 40px; margin-top: 2px; }
.requisitos-entrega__nombre { margin: 0 0 4px; font-size: 13px; font-weight: 700; color: #333; }
.requisitos-entrega__desc { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-muted, #6b6b6b); }
.requisitos-entrega__desc strong { color: #333; font-weight: 700; }

@media (max-width: 720px) {
  .requisitos-entrega { margin-top: 26px; padding: 22px 18px 24px; border-radius: 14px; }
  .requisitos-entrega__titulo { font-size: 16px; }
  .requisitos-entrega__icono { width: 32px; height: 32px; flex: 0 0 32px; }
}

/* ===== Paso 3: aviso bajo el intro del formulario ===== */
.paso3-form__aviso {
  margin: 6px 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted, #6b6b6b);
}
