/* Tipografía y ajustes generales */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #f0f8ff, #e8f4fd);  /* azul muy claro, más suave */
  color: #003366;
  min-height: 100vh;
}


a {
    color: #0074cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
  background: linear-gradient(to right, #a8def3, #e6f7ff);   /* mismo gradiente que el body */
  color: #003366;        /* azul oscuro para contraste */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.logo-link {
  height: 56px;
  flex-shrink: 0;
}

.logo {
  height: 100%;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #003366;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #0074cc;
  text-decoration: none;
}

.btn-excursiones {
  background: #F97316 !important;
  color: white !important;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.btn-excursiones:hover {
  background: #EA580C !important;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #003366;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger-icon {
  width: 24px;
  height: 24px;
}

/* Menú móvil */
.mobile-menu {
  background: white;
  border-top: 1px solid #E5E7EB;
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
}

.mobile-menu-item:hover {
  background: #F3F4F6;
  text-decoration: none;
}

.mobile-excursiones {
  color: #F97316 !important;
  font-weight: bold;
}

/* Autocompletado */
.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}

.suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.suggestion-item:hover,
.suggestion-item.highlight {
  background-color: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

/* Campo hotel con posición relativa para el autocompletado */
.form-group {
  position: relative;
  margin-bottom: 1rem;
}

/* Estilos para botones del tipo de traslado */
.tipo-traslado-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.tipo-traslado-buttons.has-active .tipo-btn:not(.active) {
  opacity: 0.4;
  filter: grayscale(0.3);
}

.tipo-btn {
  background: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6c757d;
  font-weight: 500;
  opacity: 0.7;
}

.tipo-btn:hover {
  background: #e9ecef;
  border-color: #0074cc;
  color: #0074cc;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 116, 204, 0.2);
  opacity: 1;
}

.tipo-btn.active {
  background: #0074cc;
  border-color: #0074cc;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 116, 204, 0.4);
  font-weight: 700;
  opacity: 1;
  transform: scale(1.05);
}

.tipo-btn.active:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 116, 204, 0.5);
}

/* Página de cotización */
.summary-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.summary-box h3 {
  color: #003366;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  border-bottom: 2px solid #a8def3;
  padding-bottom: 0.5rem;
}

.summary-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-details li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.summary-details li:last-child {
  border-bottom: none;
}

.summary-details strong {
  color: #003366;
  min-width: 40%;
  font-weight: 600;
}

.notes-item {
  background-color: #fff9c4 !important;
  padding: 1rem !important;
  border-radius: 8px !important;
  border: 1px solid #f0e68c !important;
  display: block !important;
}

/* Botones */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.5rem 0;
}

.btn-primary {
  background: #0074cc;
  color: white;
}

.btn-primary:hover {
  background: #005aa3;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.continue-form {
  text-align: center;
  margin: 2rem 0;
}

/* Error box */
.error-box {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.error-box h2 {
  color: #721c24;
  margin-bottom: 1rem;
}

.error-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  background: white;
  border-radius: 8px;
  padding: 1rem;
}

.error-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f5c6cb;
  color: #721c24;
}

.error-list li:last-child {
  border-bottom: none;
}

/* Responsive - Escritorio */
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* Contenedor principal */
.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 51, 102, 0.1);
  border: 1px solid rgba(168, 222, 243, 0.3);
}

.container h1 {
  text-align: center;
  color: #003366;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.lead {
  text-align: center;
  color: #0074cc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Logo y enlaces */
.logo a { color: #AEE6F4; }     /* acento celeste claro */
.nav-links a { color: #F2FCFF; font-weight: 500; }
.nav-links a:hover { color: #AEE6F4; }


.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    color: white;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #a8def3;
}

/* Footer */
/* ===== FOOTER ======= */
.site-footer{
  background:#FFFFFF;
  color:#000;
  padding:40px 20px 20px;
  font-size:.95rem;
  border:2px solid #005E75;   /* marco teal completo */
  border-radius:2px;
  -webkit-font-smoothing:antialiased;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:20px;
}

/* columnas */
.footer-col{flex:1 1 280px;}
.footer-left  {text-align:left;  align-items:flex-start; display:flex; flex-direction:column; gap:8px;}
.footer-center{text-align:center; align-items:center;     display:flex; flex-direction:column; gap:10px;}
.footer-right {text-align:right;  align-items:flex-end;   display:flex; flex-direction:column; gap:10px;}

/* marca */
.brand{display:flex;align-items:center;gap:12px;}
.brand img{height:70px;}
.brand h4{margin:0;color:#005E75;}

/* líneas de info */
.info-line{margin:0;display:flex;align-items:center;gap:6px;}
.info-line img{width:24px;height:24px;}
.info-line a{color:#005E75;text-decoration:none;}
.info-line a:hover{text-decoration:underline;}
.hours{margin:0;}

/* MITUR */
.mitur{height:100px;}
.mitur-text,.copyright{margin:0;font-size:.85rem;}

/* redes sociales */
.social-icons{display:flex;gap:16px;justify-content:flex-end;}
.social-icons img{width:34px;height:34px;}

/* payment mark */
.payment-mark img{height:80px;border:0;}
.payment-mark a{display:inline-block}

/* encabezados en columna derecha */
.footer-right h4{color:#005E75;margin:0 0 10px;}


/*======================================================
                HERO
=====================================================*/

/* Hero - Página de inicio */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #a8def3, #e6f7ff);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #003366;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Formulario de reservas */
.booking-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.booking-form button {
    width: 100%;
    padding: 12px;
    background-color: #0074cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.booking-form button:hover {
    background-color: #005fa3;
}

/* Página de resumen */
.resumen-reserva {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Página de agradecimiento */
.pagina-gracias {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    text-align: center;
    background-color: #f0f9ff;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.pagina-gracias h2 {
    color: #003366;
}

.boton-volver {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #0074cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.boton-volver:hover {
    background-color: #005fa3;
}
.vehiculos-destacados {
  text-align: center;
  padding: 40px 20px;
}

.vehiculos-destacados h2 {
  color: #003366;
  margin-bottom: 20px;
}

.galeria-vehiculos {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.galeria-vehiculos img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
#hotel-list div:hover {
  cursor: pointer;
}
.booking-form input[type="date"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
/* Estilo para las opciones de transporte */
.opcion-transporte {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.opcion-transporte:hover {
    background-color: #f0f9ff;
}

.opcion-transporte img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.opcion-transporte input[type="radio"] {
    margin-top: 8px;
    transform: scale(1.2);
}
/* Fondo degradado general */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #a8def3, #e6f7ff);
}

/* Tarjetas blancas centradas */
.card {
  background-color: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Botones principales */
button {
  width: 100%;
  padding: 12px;
  background-color: #0074cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: #005fa3;
}


.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #a8def3, #e6f7ff);
}

/* Contenedor tipo tarjeta */
.card {
  background-color: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Título */
.card h2 {
  margin-bottom: 20px;
  color: #003366;
}

/* Resumen de datos */
.resumen-datos p {
  margin-bottom: 8px;
  line-height: 1.5;
}

/*===========================
 Opciones de transporte 
 ===========================*/
/* === Bloque de opciones de transporte =========================== */
.opciones-transporte-horizontales{
  display:flex;
  flex-wrap:wrap;             /* permite bajar a segunda línea en móvil */
  gap:16px;                   /* espacio entre tarjetas */
  justify-content:center;     /* centro horizontal */
}

/* ===== Opciones de transporte =================================== */
/* === Opciones de transporte – fila única ======================= */
.opciones-transporte-horizontales{
  display:flex;
  flex-wrap:nowrap;            /* ← NO se envuelve, siempre una fila */
  gap:16px;
  justify-content:center;      /* centrado horizontal */
}

.opcion-transporte{
  flex:1;                      /* ← cada tarjeta ocupa el mismo ancho */
  max-width:180px;             /* opcional: tope para que no crezcan mucho */
  background:#f5f7f9;
  border:1px solid #d0d7de;
  border-radius:6px;
  padding:12px;
  text-align:center;
  font-size:.90rem;
  transition:transform .15s ease, border .15s ease;
  cursor:pointer;
}

.opcion-transporte:hover{
  transform:translateY(-4px);
  box-shadow:0 4px 8px rgba(0,0,0,.10);
}

/* Imagen más pequeña */
.opcion-transporte img{
  width:100%;
  height:auto;
  border-radius:4px;
  margin:8px 0;
}

/* Radio visible y ampliado */
.opcion-transporte input[type="radio"]{
  margin-top:6px;
  transform:scale(1.2);
}

/* Borde teal cuando se selecciona */
.opcion-transporte input[type="radio"]:checked ~ *{
  border-color:#005E75;
}

/* Estilo visual para resumen de cotización */
.resumen-reserva {
  background: linear-gradient(to right, #a8def3, #e6f7ff);
  padding: 60px 20px;
  text-align: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.resumen-reserva h2 {
  color: #003366;
  margin-bottom: 30px;
  font-size: 28px;
}

.resumen-reserva ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 500px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  padding: 30px;
  text-align: left;
  font-size: 16px;
}

.resumen-reserva li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #003366;
}

.resumen-reserva button {
  padding: 12px 24px;
  background-color: #0074cc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.resumen-reserva button:hover {
  background-color: #005fa3;
}
/* Opciones de transporte en línea horizontal */
.opciones-transporte-horizontal {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  margin-top: 30px;
}

.opciones-transporte-horizontales {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  margin-top: 30px;
}

/* Tarjetas de opciones de transporte - Versión unificada */
.opcion-transporte {
  background-color: #ffffff;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  padding: 24px;
  flex: 1;
  max-width: 280px;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.opcion-transporte:hover {
  background-color: #f0f9ff;
  transform: translateY(-4px);
  border-color: #0074cc;
  box-shadow: 0 8px 16px rgba(0,116,204,0.15);
}

.opcion-transporte img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.opcion-transporte h3 {
  font-size: 1.2rem;
  color: #003366;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.opcion-transporte p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.opcion-transporte .precio-opcion {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0074cc;
  margin: 16px 0;
}

.opcion-transporte input[type="radio"] {
  margin-top: 12px;
  transform: scale(1.3);
}
/* Bloque de Tipo de viaje — corrige conflicto con .booking-form label {display:block} */
.tipo-viaje {
  margin-bottom: 20px;
  text-align: center;
}

.tv-title {
  font-weight: bold;
  color: #003366;
  margin-bottom: 12px;
}

/* Lista en columna, centrada */
.tv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;   /* centra cada línea */
}

/* Cada línea centrada */
.tv-line {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Anula el display:block heredado y alinea botón + texto juntos */
.tv-label {
  display: inline-flex !important;  /* anula .booking-form label */
  align-items: center;
  gap: 6px;                         /* espacio corto entre botón y texto */
  margin: 0;
  width: auto;                      /* evita ocupar toda la fila */
  font-size: 16px;
  white-space: nowrap;              /* evita salto a dos líneas */
}

/* Opcional: tamaño del radio */
.tv-label input[type="radio"] {
  transform: scale(1.15);
  margin: 0;
  padding: 0;
}
