/* --- CONFIGURACIÓN GENERAL --- */
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.full-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

a {
  text-decoration: none;
  color: white;
}



/* --- SECCIÓN 1: HERO (VIAJA MAS.) --- */

#home {
  /* background-image set dynamically by script.js (time-based rotation) */
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  #home {
    background-attachment: scroll; /* fixed causa parpadeo en iOS */
    background-position: center top;
    justify-content: flex-start;  /* empuja contenido hacia arriba (eje vertical) */
    padding-top: 76px;            /* justo debajo del navbar fijo */
    padding-bottom: 36px;
  }
}

.hero-title {
  font-size: clamp(3.8rem, 11vw, 8.5rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: -2px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 28px;
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(4.4rem, 17vw, 6rem);
    letter-spacing: -1px;
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    line-height: 1.7;
  }
}


/* ===== SECCIÓN RESEÑAS ===== */

.reviews-section {
  background-color: #f5f2eb;
  padding: 80px 0 60px;
  overflow: hidden;
}

.destiny-section {
  background-color: #2a4fad;
  padding: 80px 0 60px;
  overflow: hidden;
}

.reviews-header {
  padding: 0 20px;
  margin-bottom: 56px;
}

.reviews-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #008fbc;
  margin-bottom: 18px;
}

.destiny-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #eee;
  margin-bottom: 18px;
}

.reviews-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a3a2a;
  line-height: 1.25;
}

.destiny-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #eee;
  line-height: 1.25;
}

.reviews-highlight {
  color: #c0693a;
  font-style: italic;
}

/* Carrusel */

.reviews-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-google-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.88;
}

.review-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a3a2a;
  margin: 0;
}

.review-card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.review-card-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
}

.hl {
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.35), rgba(245, 166, 35, 0.35));
  background-size: 0% 80%;
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-size 0.22s ease;
  border-radius: 3px;
  padding: 0 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.review-card.visible .hl {
  background-size: 100% 80%;
  transition: background-size 0.65s ease;
}

/* ===== TARJETAS CARRUSEL DESTINOS (index) ===== */

.dest-carousel-card {
  width: 320px;
  height: 220px;
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.dest-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.dest-carousel-card:hover img {
  transform: scale(1.06);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 20px;
}

.dest-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.destination-name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  margin: 0;
}

.dest-price {
  color: #E6CF27;
  font-size: 0.96rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  line-height: 1.3;
}

.dest-from {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.78;
  margin-right: 3px;
}

.dest-pp {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
}

.best-seller-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  background: linear-gradient(135deg, #E6CF27 0%, #f5a623 100%);
  color: #052784;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 11px;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(230, 207, 39, 0.55);
  white-space: nowrap;
}

/* ===== BOTÓN VOLVER ===== */

.back-btn {
  position: fixed;
  bottom: 28px;
  left: 20px;
  background: linear-gradient(135deg, #00aced 0%, #0072ff 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 22px rgba(0, 114, 255, 0.45);
  z-index: 1050;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.back-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 114, 255, 0.6);
}

/* LA BARRA TRASLÚCIDA (GLASSMORPHISM) */
.search-bar-mock {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 95%;
  max-width: 900px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* BOTONES DE COLORES CON DEGRADADO */
.btn-hero-custom {
  border: none;
  padding: 11px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  color: white !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
  text-decoration: none;
}

.btn-hero-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-blue {
  background: linear-gradient(135deg, #ccc202 0%, #ff9500 100%);
}
.btn-green {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}
.btn-orange {
  background: linear-gradient(135deg, #f857a6 0%, #ff5858 100%);
}

/* --- ESTADÍSTICAS MAIN  --- */
.stats-row {
  margin-top: 20px;
  width: 100%;
  max-width: 900px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 13px 8px;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 1.55rem;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  animation: float 3s ease-in-out infinite;
}

.stat-number {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 0;
  background: linear-gradient(to right, #fff, #00aced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-desc {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  font-weight: 700;
}

/* Animación de flotado suave para los iconos */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Ajuste responsive para móviles: 2 por fila */

/* --- SECCIÓN 2: DESTINOS (CARRUSEL) --- */
.carousel-item img {
  height: 75vh;
  object-fit: cover;
  border-radius: 30px;
}

.destinos-title {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.destinos-btn {
  position: absolute;
  bottom: 40px;
  right: 60px;
  color: white;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

/* --- SECCIÓN 3: SPLIT (DIRECCIÓN Y FORMULARIO) --- */


#direccion {
    padding: 0 !important;
    overflow: hidden;
}

#direccion .row.g-0 {
    min-height: 100vh; 
}

.direccion-split-img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    display: block; 
    min-height: 100vh; 
}


.direccion-content {
    min-height: 100vh;
    padding: 60px !important; 
    background-color: #2a4fad; 
    color: white;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 1.5rem;
}

.info-text-icons{
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.info-text h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.info-text p {
  opacity: 0.8;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-cyan {
  background: #00aced;
  color: white !important;
  border: none;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 20px;
}

.btn-cyan:hover {
  background: #008fbc;
  transform: scale(1.05);
}

.btn-white {
  background: #ffffff;
  color: #00aced !important;
  border: none;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 20px;
}

.btn-cyan:hover {
  background: #008fbc;
  transform: scale(1.05);
}

/* --- SECCIÓN 4: CONTACTO  --- */
#contacto {
  background: linear-gradient(135deg, #0052d4 0%, #4364f7 50%, #6fb1fc 100%);
  padding: 0 !important;
}

.contact-left-content {
  color: white;
  padding: 8% !important;
}

.contact-benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.contact-benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 500;
}

.benefit-icon {
  background: rgba(255, 255, 255, 0.55);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
}

/* Formulario Estilo Limpio */
.contact-right-side {
  background-color: #f8f9fa; /* Un gris muy claro para resaltar el form */
  padding: 8% !important;
}

.form-container-premium {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-label-custom {
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
  display: block;
}

.form-control-premium {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 15px;
  transition: all 0.3s;
}

.form-control-premium:focus {
  border-color: #4364f7;
  box-shadow: 0 0 0 4px rgba(67, 100, 247, 0.1);
}

/* Botón degradado azul/cyan */
.btn-send-request {
  background: linear-gradient(to right, #00aced, #0072ff);
  border: none;
  color: white;
  font-weight: 700;
  padding: 15px;
  border-radius: 12px;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-send-request:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.3);
  color: white;
}

/* --- BOTÓN DE WHATSAPP FLOTANTE --- */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white !important;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Efecto de pulsación suave */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* --- NAVBAR Y MENU DESPEGABLE--- */
.navbar {
  background: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease;
  z-index: 1030 !important; /* Capa base del nav */
}

/* Link multicolor del menú — enlaza a la landing de promo (promo.html) */
.menu-link-rainbow {
  background: linear-gradient(90deg, #00aced, #4364f7, #E6CF27, #f5a623, #ff5858, #00aced);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-text-shift 5s linear infinite;
}

@keyframes rainbow-text-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 400% 50%; }
}

/* MENU DESPEGABLE INICIO */

.menu-icon-custom {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}
.menu-icon-custom span {
    width: 35px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Escondido a la derecha */
    width: 100%;
    height: 100vh;
    background: rgba(11, 17, 32, 0.98); /* Azul Navy Iter */
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.menu-overlay.active {
    right: 0; /* Se muestra */
}

.menu-links {
    list-style: none;
    padding: 0;
    text-align: center;
}
.menu-links li { margin: 25px 0; }
.menu-links a {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s;
}
.menu-links a:hover { color: #00aced; }

.close-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

.menu-footer {
    position: absolute;
    bottom: 50px;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

@media (max-width: 768px) {
    .menu-links a { font-size: 1.8rem; }
    .navbar-brand img { height: 40px; }
}

/* MENU DESPEGABLE FIN */


/* FOOTER */

footer {
  background: #07090f;
  color: white;
  padding: 44px 0 0;
}

.footer-tagline {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.4px;
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.52);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-nav a:hover { color: #00aced; }

.footer-social {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.footer-social a {
  color: rgba(255,255,255,0.42);
  display: flex;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: #00aced;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 32px;
  padding: 14px 0;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
}

/* Hero image — mobile portrait crop */
@media (max-width: 600px) {
  #home {
    background-position: 62% center;
  }
}

/* MEDIA QUERIES GENERALES */
@media (max-width: 768px) {
  .stat-card {
    padding: 15px 5px;
  }
  .stat-number {
    font-size: 1.4rem;
  }
  .deactive {
    display: none;
  }
  .destinos-title {
    display: none;
  }
  .destinos-btn {
    position: absolute;
    bottom: 50px;
  }
  .hero-title {
    margin-top: 50px;
  }

  #destinos{
    display: none;
  }

  /* ===== SECCIÓN CONÓCENOS (index) — MOBILE ===== */
  .direccion-content {
    padding: 40px 24px !important;
    min-height: auto;
  }

  .direccion-content h2 {
    font-size: 2.2rem !important;
    margin-bottom: 32px !important;
  }

  .info-item {
    gap: 12px;
    margin-bottom: 20px;
  }

  .info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .info-text h5 {
    font-size: 1rem;
  }

  .info-text p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .btn-cyan {
    margin-top: 12px;
    padding: 10px 22px;
    font-size: 0.9rem;
  }

  /* ===== SOBRE NOSOTROS — MOBILE ===== */
  .phoneAboutUs {
    padding-top: 90px !important;
    padding-bottom: 40px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .phoneAboutUs .fs-5 {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  /* Reducir los mb-5 de Bootstrap dentro del about */
  .phoneAboutUs .mb-5 {
    margin-bottom: 20px !important;
  }

  .phoneAboutUs .info-text p {
    font-size: 0.82rem;
    line-height: 1.55;
  }
}

/* ===== RESEÑAS — MOBILE COMPACTO ===== */
@media (max-width: 600px) {
  .destiny-section {
    padding: 50px 0 40px;
  }

  .reviews-header {
    margin-bottom: 32px;
  }

  .destiny-title,
  .reviews-title {
    font-size: 1.5rem;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-card {
    width: 240px;
    padding: 18px 16px;
    gap: 8px;
    border-radius: 14px;
  }

  .review-stars {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .review-card-title {
    font-size: 0.95rem;
  }

  .review-card-text {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .review-card-author {
    font-size: 0.75rem;
  }
}

