/* ===== Tipografía global ===== */
html {
  scroll-behavior: smooth;
}
html, body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #13017C;
  font-weight: 400;
  overflow-x: hidden;

}

/* ====== Header fijo ====== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  animation: slideDownHeader 0.8s ease;
}

/* ====== Barra superior ====== */

.top-bar {
  background-color: #13017C;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 14px;
  border-bottom: 6px solid #FEA621; /* 💛 línea gruesa amarilla debajo */
}

}

.top-column {
  flex: 1;
  text-align: center;
}

.top-column.left { text-align: left; }
.top-column.right { text-align: right; }

.top-link {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.top-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.top-link i {
  font-size: 16px;
}

.icon-tripadvisor {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ====== Cabecera principal ====== */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 40px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.logo img {
  height: 60px;
  animation: fadeIn 1s ease;
}

/* ====== Menú de navegación ====== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #13017C;
  font-weight: 600;
  transition: color 0.3s ease;
  font-size: 1.2em;
}

.main-nav a:hover { color: #01A0C6; }
.main-nav a.active { color: #01A0C6; }

/* ====== Botón menú hamburguesa ====== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #13017C;
  cursor: pointer;
}

/* ====== Compensación del header ====== */
body::before {
  content: "";
  display: block;
  height: 140px;
}

@media (max-width: 900px) {
  body::before {
    height: 180px;
  }
}

/* ====== HERO SECTION ====== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  animation: fadeUp 1.2s ease-in-out;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  align-items: center;
  z-index: 2;
}

/* Texto izquierda */
.hero-left h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  font-weight: 700;
  animation: fadeLeft 1.3s ease;
}

.hero-left .highlight {
  color: #01A0C6;
}

/* Formulario derecha */
.booking-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #13017C;
  animation: fadeRight 1.3s ease;
}

.booking-form h2 {
  margin-top: 0;
  color: #13017C;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.booking-form label {
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.booking-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.booking-form input:focus {
  border-color: #01A0C6;
  outline: none;
  box-shadow: 0 0 6px rgba(1,160,198,0.4);
}

.booking-form button {
  background: #01A0C6;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background: #018aa8;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .booking-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease forwards;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ====== ANIMACIONES ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideDownHeader {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
.container {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #0077b6;
}

label {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-top: 15px;
}

label span {
  margin-left: 5px;
}

select, input[type="range"] {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.range-text {
  font-size: 0.9em;
  color: #555;
  text-align: right;
  margin-top: -5px;
}

.btn-search {
  margin-top: 20px;
  width: 100%;
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-search:hover {
  background-color: #005f87;
}
/* === NUEVAS ANIMACIONES MÁS NOTORIAS === */

/* Estado inicial */
.reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: all 1.2s ease;
}

.reveal-left {
  transform: translateX(-120px);
}

.reveal-right {
  transform: translateX(120px);
}

.reveal-scale {
  transform: scale(0.7);
}

/* Estado visible */
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Efecto de entrada escalado tipo pop */
@keyframes popUp {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* Aplica rebote a títulos */
.hero-left h1 span.highlight {
  display: inline-block;
  animation: bounceIn 1.4s ease-out infinite alternate;
}

@keyframes bounceIn {
  from { transform: scale(1); }
  to { transform: scale(1.08); color: #FEA621; }
}

/* Video con zoom más fuerte */
.hero-video {
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

/* Botón más dinámico */
.btn-search {
  animation: fadeInUp 1.3s ease forwards;
  transform-origin: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-search:hover {
  transform: scale(1.08) rotate(-1deg);
  box-shadow: 0 0 20px rgba(1,160,198,0.8);
}

/* Sombras flotantes */
.container, .booking-form {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* Fade up general */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ==== Ajustes para pantallas pequeñas (Hero más alto y mejor espaciado) ==== */
@media (max-width: 900px) {
  .hero {
    height: auto; /* Ya no limitado a 100vh */
    min-height: 130vh; /* Ocupa más alto que el viewport */
    padding: 100px 0 120px; /* Más espacio arriba y abajo */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    grid-template-columns: 1fr; /* Apila texto y formulario */
    gap: 50px;
    align-items: center;
    justify-items: center;
  }

  .hero-left h1 {
    font-size: 2.1rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-right .container {
    max-width: 90%;
    margin: 0 auto;
  }

  /* Aumenta tamaño del contenedor para respiro visual */
  .container {
    padding: 35px 25px;
  }

  /* Ajusta el video para cubrir correctamente el área extra */
  .hero-video {
    height: 130vh;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 150vh; /* más altura aún para móviles pequeños */
    padding: 120px 0 150px;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .hero-video {
    height: 150vh;
  }
}
/* === 💙 ABOUT SECTION STYLES === */
.about-section {
  background: #13017C; /* azul principal */
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  color: #FEA621; /* amarillo */
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  animation: fadeUp 1s ease-out forwards;
}

.about-subtitle {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 50px;
  letter-spacing: 2px;
  animation: fadeUp 1.2s ease-out forwards;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  animation: fadeUp 1.4s ease-out forwards;
}

.about-text {
  text-align: center;
  padding: 0 20px;
}

.about-highlight {
  color: #FEA621;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  color: #f5f8fa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-closing {
  color: #FEA621;
  font-weight: 600;
  font-size: 1.1rem;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-btn {
  display: inline-block;
  background:#FEA621;
  color:#13017C;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #ffeb7a;
  transform: scale(1.08);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-image img {
    max-width: 90%;
  }
}

/* Animación de entrada */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === 💛 SERVICES SECTION STYLES === */
.services-section {
  background: #FEA621; /* Amarillo principal */
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cada columna */
.service-box {
 
  border-radius: 20px;
  padding: 40px 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1.2s ease both;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Iconos */
.service-icon {
  font-size: 3rem;
  color: #13017C; /* Azul */
  margin-bottom: 20px;
  animation: popIn 1.2s ease both;
}

/* Títulos */
.service-title {
  color: #13017C; /* Azul */
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Texto */
.service-text {
  color: black;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

/* Responsividad */
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-box {
    padding: 30px 20px;
  }
  .service-title {
    font-size: 1.2rem;
  }
}

/* Animaciones */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
>
/* === 💙 DEALS PROMO STYLES === */
.deals-section {
  background: #fff;
  color: #13017C;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.deals-title {
  font-family: "Pacifico", cursive;
  color: #13017C;
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  animation: fadeDown 1.2s ease both;
  text-align:center;
}

.deals-icon {
  width: 70px;
  height: auto;
  margin: 10px auto 25px;
  display: block;
  animation: popIn 1s ease both;
}

.deals-subtitle {
  color: #0096c7; /* azul cielo */
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
  animation: fadeUp 1.2s ease both;
  text-align:center;
}

/* Contenedor de columnas */
.deals-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card de cada promoción */
.deal-card {
  background: #f8f9fb;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  animation: fadeUp 1.4s ease both;
}

.deal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Título del tour */
.deal-name {
  color: #13017C;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* Texto del tour */
.deal-text {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Botón */
.deal-btn {
  background: #13017C;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
position:relative;
display:inline-block;
margin-top:10px;
}

.deal-btn:hover {
  background: #0f016a;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
  .deals-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .deal-card {
    text-align: center;
  }
}

/* Animaciones */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

/* Fuente caligráfica */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
/* === 💙 DEALS PROMO STYLES === */
.deals-section {
  background: #fff;
  color: #13017C;
  text-align: center;
  padding: 100px 20px;
}
.deals-title {
  font-family: "Pacifico", cursive;
  color: #13017C;
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.deals-icon {
  width: 70px;
  margin: 10px auto 25px;
}
.deals-subtitle {
  color: #0096c7;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
}
.deals-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
.deal-card {
  background: #f8f9fb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Imagen fija redondeada */
.deal-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  
}

/* Info */
.deal-info {
  padding: 25px 30px 40px;
  text-align: left;
}
.deal-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #13017C;
  margin-bottom: 15px;
}
.deal-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.deal-price {
  font-weight: 700;
  color: #0096c7;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.deal-price span {
  font-weight: normal;
  color: #555;
  font-size: 0.9rem;
}
.deal-btn {
  background: #13017C;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.deal-btn:hover {
  background: #0f016a;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 900px) {
  .deals-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .deal-info {
    text-align: center;
  }
  .deal-img {
    height: 220px;
  }
}

/* Fuente caligráfica */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
/* === 💥 DEALS PROMO ANIMATED === */
.deals-section {
  background: #fff;
  color: #13017C;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.deals-title {
  font-family: "Pacifico", cursive;
  color: #13017C;
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  transform-origin: center;
}

.deals-icon {
  width: 70px;
  margin: 10px auto 25px;
  display: block;
}

.deals-subtitle {
  color: #0096c7;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Grid */
.deals-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjetas */
.deal-card {
  background: #f9fafc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  transform: scale(0.9);
  opacity: 0;
}

.deal-card.visible {
  animation: popBounce 1.1s ease forwards;
}

.deal-card:hover {
  transform: scale(1.04) rotate(1deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Imagen */
.deal-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 4px solid #13017C;
  border-radius: 0 0 30px 30px;
  transition: all 0.5s ease;
}

.deal-img:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: brightness(1.1);
}

/* Texto */
.deal-info {
  padding: 25px 30px 40px;
}

.deal-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #13017C;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.deal-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.deal-price {
  font-weight: 700;
  color: #0096c7;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.deal-btn {
  background: #13017C;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.deal-btn:hover {
  background: #FEA621;
  color: #13017C;
  transform: scale(1.15) rotate(2deg);
  box-shadow: 0 0 20px rgba(19,1,124,0.5);
}

/* === ANIMACIONES INTENSAS === */
@keyframes popBounce {
  0% { opacity: 0; transform: scale(0.7) translateY(100px); }
  60% { opacity: 1; transform: scale(1.08) translateY(-15px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-150px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

/* Estados iniciales */
.reveal-up, .reveal-left, .reveal-scale, .reveal-zoom {
  opacity: 0;
}

/* Estados visibles */
.reveal-up.visible { animation: fadeInUp 1.1s ease forwards; }
.reveal-left.visible { animation: fadeInLeft 1.1s ease forwards; }
.reveal-scale.visible { animation: popBounce 1.2s ease forwards; }
.reveal-zoom.visible { animation: zoomIn 1.1s ease forwards; }

/* Responsivo */
@media (max-width: 900px) {
  .deals-columns {
    gap: 25px;
  }
  .deal-img {
    height: 200px;
  }
}
/* ============================= */
/* ✨ SCROLL REVEAL ANIMATIONS   */
/* ============================= */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-top {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.8);
}

.reveal-top {
  transform: translateY(-50px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-top.active {
  opacity: 1;
  transform: none;
}

/* Efecto al hacer scroll en header */
.header-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.reseñas-section {
    background-color: white;
    padding: 50px 20px;
    font-family: 'Montserrat', sans-serif;
color:black;
}

.reseñas-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Columna izquierda */
.reseñas-left {
    flex: 1 1 350px;
    max-width: 400px;
}

.reseñas-left h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

.rating {
    font-size: 2rem;
    color: #ffde59;
    cursor: pointer;
    margin-bottom: 15px;
}

.rating span:hover,
.rating span:hover ~ span {
    color: #ccc;
}

.reseñas-left textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: none;
}

.reseñas-left button {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.reseñas-left button:hover {
    background-color: #333;
}

/* Columna derecha */
.reseñas-right {
    flex: 1 1 400px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.reseñas-right h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

/* CARRUSEL RENOMBRADO */
.carousel1 {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.carousel-item1 {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-weight: bold;
    font-size: 1rem;
}

.carousel-item1.active1 {
    opacity: 1;
}

.carousel-btn1 {
    pointer-events: auto;
    background: rgba(0,0,0,0.4);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
width: auto; /* ⚠ evita expansión automática */
    height: auto;
}

.carousel-nav1 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn1:hover {
    background-color: rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
    .reseñas-container {
        flex-direction: column;
        align-items: center;
    }
    .reseñas-left, .reseñas-right {
        max-width: 100%;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .reseñas-container {
        flex-direction: column;
        align-items: center;
    }
    .reseñas-left, .reseñas-right {
        max-width: 100%;
    }
}



.form-container {
    background-color: gray;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin:40px auto;
}

.form-container h2 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

label {
    display: block;
    color: white;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.inline-fields {
    display: flex;
    justify-content: space-between;
}

.field {
    width: 48%;
}

.spam-and-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spam-question {
    flex: 1;
    margin-right: 10px;
}

#spam-label {
    margin-bottom: 5px;
    display: block;
}

#spam-check {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

button {
    width: 50%;
    padding: 10px;
    background-color: white;
    border: none;
    border-radius: 5px;
    color: gray;
    font-size: 1.2rem;
    cursor: pointer;
}

button:hover {
    background-color: lightgray;
}

.white-text {
    color: white;
}


.happy-customers-section {
  background-color: #13017C;
  color: white;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.happy-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
  color: #FEA621;
}


.happy-carousel-wrapper {
  position: relative; /* necesario para los botones absolutos */
}



.happy-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.happy-slide {
  flex: 0 0 calc((100% - 60px) / 4);
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.happy-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.happy-slide:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Botones de control */
.carousel-btn2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-btn {
  left: -25px; /* fuera del carrusel a la izquierda */
}

.right-btn {
  right: -25px; /* fuera del carrusel a la derecha */
}

.carousel-btn:hover {
  background-color: rgba(0,0,0,0.8);
}
/* Scrollbar oculto */
.happy-carousel::-webkit-scrollbar {
  display: none;
}

/* Animación de entrada */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
/* Pantallas medianas: 2 imágenes visibles */
@media (max-width: 992px) {
  .happy-slide {
    flex: 0 0 calc((100% - 20px) / 2); /* 2 imágenes visibles */
  }
}

/* Pantallas pequeñas: 1 imagen visible */
@media (max-width: 600px) {
  .happy-slide {
    flex: 0 0 100%; /* 1 imagen visible */
  }
}
/* Contenedor de la sección */
.farewell-section{
position:relative;
height: min(56vw, 520px); /* altura responsiva */
min-height:260px;
display:flex;
align-items:flex-end; /* el contenido estará abajo */
background-position:center center;
background-size:cover;
background-repeat:no-repeat;
padding:var(--padding);
color: #fff;
overflow:hidden;
}


/* Superposición suave para asegurar legibilidad */
.farewell-section::after{
content:"";
position:absolute;
inset:0;
background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.48) 100%);
pointer-events:none;
}


/* Texto sobrepuesto en esquina inferior izquierda */
.farewell-text{
position:relative; /* por encima de ::after */
z-index:1;
max-width:85%;
margin:20px;
padding:var(--text-pad);
background:transparent;
color:#ffffff;
text-shadow: 0 6px 18px rgba(0,0,0,0.6); /* sombra grande para contraste */
font-weight:700;
letter-spacing:0.02em;
font-size:clamp(18px, 3.25vw, 36px); /* tamaño responsivo */
line-height:1.05;
text-transform:uppercase;
}


/* Alineación horizontal en móviles para dejar margen */
@media (max-width:640px){
.farewell-section{padding:1rem}
.farewell-text{font-size:clamp(16px, 5.2vw, 22px); max-width:95%}
}
.footer-section{background:#FFF;padding:3rem 1.5rem;color:white;font-family:inherit;margin:0;border-top:6px solid #0b6bd6; /* línea azul superior */}
.footer-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;}
.footer-title{color:#004aad;font-size:1.4rem;font-weight:700;margin-bottom:0.75rem;}
.footer-text{margin:0.25rem 0;font-size:1rem;color:#000;line-height:1.35;}
.footer-text a{color:#000;text-decoration:none;}
.footer-text a:hover{text-decoration:underline;}
.hours-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;}

.copyright-bar{background:darkgray;text-align:center;font-size:0.95rem;color:black;font-weight:500;margin:0;padding:5px;}

    .tour-principal{
   padding:80px;}

     .tour-principal .description {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
      margin-bottom: 20px;
      margin-top:100px;
    }

      .tour-principal .features {
      margin-bottom: 20px;
      padding-left: 20px;
    }

  
      .tour-principal   .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      margin-bottom: 30px;
    }

     .tour-principal  .gallery img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
    }
/* Lightbox styles */
.lightbox {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
}


.lightbox img {
max-width: 90%;
max-height: 90%;
border-radius: 10px;
}


.lightbox-close {
position: absolute;
top: 20px;
right: 20px;
font-size: 2rem;
color: white;
cursor: pointer;
}
.hero-image {
width: 100%;
height: 280px;
border-radius: 10px;
margin-bottom: 25px;
overflow: hidden;
vertical-align:center;
}
.hero-image img{
width:100%;
object-fit: cover;
}
.cta-columns {
text-align:center;
}
.cta-columns a {
  margin-top: 20px;
  width: 100%;
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
position: relative;
display: inline-block;
}
  /* Pantallas pequeñas: 1 imagen visible */
@media (max-width: 600px) {
 .hero-image {
display:none;
}
}
<!-- CSS -->
<!-- CSS (add to your stylesheet or inside a <style> block) -->

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section styling */
.airport-transfer {
  background-color: #0b6bd6; /* azul */
  padding: 80px 0;           /* 80px top and bottom */
  color: #ffffff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Grid: image + content */
.transfer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
}

/* Image */
.transfer-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Content */
.transfer-content h2 {
  font-size: 32px;
  margin: 0 0 12px 0;
  line-height: 1.1;
  color:blue;
}

.transfer-content p {
  font-size: 16px;
  margin: 0 0 14px 0;
  color: black;
  line-height: 1.6;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-block;
  background-color: #25D366; /* WhatsApp green */
  color: #06121a;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.18);
  margin-top: 8px;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.22);
  outline: none;
}

/* Responsive layout: two columns on wider screens */
@media (min-width: 900px) {
  .transfer-grid {
    grid-template-columns: 48% 52%;
    gap: 40px;
  }

  .transfer-content {
    padding-right: 10px;
  }
}

/* Make text centered when used inside narrow containers (optional) */
@media (max-width: 480px) {
  .transfer-content h2 {
    font-size: 26px;
  }
  .btn-whatsapp {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}
.tour-price {
  font-size: 1.5rem;
  color: #e74c3c; /* rojo brillante para llamar la atención */
  font-weight: bold;
  margin: 10px 0 20px 0;
}

