

.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #006400; /* verde corporativo */
  padding: 12px 0;
  text-align: center;
  z-index: 2000; /* siempre encima */
}

.top-banner a {
  display: inline-block;
  margin: 0 15px;
  padding: 10px 20px;
  background: white;
  color: #006400;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.top-banner a:hover {
  background: #228B22;
  color: white;
}


.gallery-img {
  height: 500px;        /* tamaño fijo de la galería */
  width: 100%;          /* ocupa todo el ancho disponible */
  object-fit: contain;  /* respeta la imagen completa dentro del tamaño */
  transition: transform 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

h3 {
  font-weight: bold;   /* negrita */
  color: #006400;      /* verde corporativo */
  font-size: 1.5rem;   /* tamaño uniforme */
  margin-bottom: 15px; /* espacio debajo */
}











.contact-section {
  background: #f9f9f9;
  padding: 50px 20px;
  border-top: 2px solid #006400;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #006400;
  font-weight: bold;
}
.contact-text {
  margin-bottom: 30px;
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
}
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.phone-btn {
  background: #25D366; /* verde WhatsApp */
  color: white;
}
.phone-btn:hover {
  background: #128C7E;
  transform: scale(1.05);
}
.email-btn {
  background: #006400; /* verde corporativo */
  color: white;
}
.email-btn:hover {
  background: #228B22;
  transform: scale(1.05);
}

/* Animaciones */
.phone-icon {
  animation: vibrate 1s infinite;
}
@keyframes vibrate {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

.email-icon {
  animation: flap 2s infinite;
}
@keyframes flap {
  0% { transform: translateY(0); }
  25% { transform: translateY(-3px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(3px); }
  100% { transform: translateY(0); }
}

.payment-text {
  font-size: 1.1rem;
  color: #000;
  font-weight: bold;
  margin-top: 10px;
}
.payment-logos {
  margin-top: 10px;
}
.card-logo {
  height: 40px;
  margin: 0 10px;
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}











.review-section {
  background: #f9f9f9;
  padding: 60px 20px;
  border-top: 2px solid #006400;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #006400;
  font-weight: bold;
}
.review-text {
  font-size: 1.1rem;
  color: #000;
  font-weight: bold;
  margin-bottom: 30px;
}
.google-reviews {
  max-width: 800px;
  margin: 0 auto 20px auto;
}
.review-cta {
  margin-top: 20px;
}
.btn-review {
  display: inline-block;
  padding: 12px 30px;
  background: #006400;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-review:hover {
  background: #228B22;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}












.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #006400; /* verde corporativo */
  z-index: 2000;
  padding: 10px 0;
}
.menu-container {
  display: flex;
  justify-content: space-between; /* marca a la izquierda, menú a la derecha */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.brand-name a {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
}
.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
.menu-links li {
  display: inline;
}
.menu-links li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s;
}
.menu-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s;
}
.menu-links li a:hover::after {
  width: 100%; /* subrayado animado */
}
.menu-links li a:hover {
  color: #ddd;
}

/* Botón hamburguesa oculto en desktop */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    background: #006400;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  .menu-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}



/* Ajuste del header */
header {
  margin-top: 0;       /* elimina espacio extra arriba */
  padding-top: 20px;   /* antes estaba más alto, ahora reducido */
  padding-bottom: 20px;
}

/* Ajuste del contenedor interno */
header .container {
  margin-top: 0 !important;
  padding-top: 40px;   /* antes estaba 60px o más, ahora más compacto */
  padding-bottom: 20px;
}
/* Responsive: en móviles aún más compacto */
@media (max-width: 768px) {
  header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .container {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}






.logo-img {
  height: 120px;
}

/* En pantallas pequeñas (celulares) */
@media (max-width: 768px) {
  .logo-container {
    text-align: center !important; /* centra el logo */
    width: 100%;                   /* ocupa todo el ancho */
  }
  .logo-img {
    display: inline-block;
    margin: 0 auto;
  }
}






.booking-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.booking-col {
  flex: 1;
}

.booking-col label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

.booking-col .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  display: block;
  transition: border-color 0.3s;
}

.booking-col .form-control:focus {
  border-color: #007BFF;
  outline: none;
}





/* ===== Booking Section ===== */
#booking {
  background: #f9f9f9;
  padding: 50px 0;
}

#booking h2 {
  color: #006400;
  font-weight: bold;
  margin-bottom: 25px;
}

/* Contenedor verde */
#booking .container > div {
  background: #006400;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}








/* Botón principal */
#booking button {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

#booking button:hover {
  background: #ddd;
  color: #006400;
}

/* Tabla de resultados */
#booking table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}

#booking table th,
#booking table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

#booking table th {
  background: #006400;
  color: #fff;
  font-weight: bold;
}

#booking table td {
  background: #fff;
  color: #333;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  /* Campos se apilan en dos filas */
  #booking .col-md-3,
  #booking .col-md-2,
  #booking .col-md-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }


  /* Passenger y Luggage más pequeños en móviles */
  .passenger-select, .luggage-select {
    width: 80px;
  }

  /* Botón ocupa todo el ancho */
  #booking button[NAME="findTickets"] {
    width: auto;
  }
}











