 body {
      font-family: 'Syne', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: #181a1f;
      color: #fff;
    }
/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  text-decoration: none;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    opacity 0.15s ease;
}

.whatsapp-float i {
  font-size: 1.7rem;
  line-height: 1;
}

/* Hover desktop */
.whatsapp-float:hover {
  background-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  text-decoration: none;
}

/* MOBILE: un poco más pequeño y más arriba */
@media (max-width: 767.98px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 1rem;
    bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
  }

  .whatsapp-float i {
    font-size: 1.5rem;
  }
}

    .navbar {
      background-color: #181a1f;
      padding-top: 0.5rem;
      padding-bottom:0.5rem;
    
    }

    .navbar-brand img {
      height:70px;
    }

    .navbar-nav .nav-link {
      color: #c9c9c9;
      font-weight: 500;
      position: relative;
      padding-bottom: 0.25rem;
      margin: 0 0.75rem;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: #ffffff;
    }

    /* Línea inferior tipo “active” */
    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-link:hover::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 2px;
      background-color: #0f4250; /* puedes ajustar el color */
    }

    .btn-contactar {
      font-weight: 600;
      border-radius: 999px;
      padding: 0.5rem 1.5rem;
       
    }
    .btn.btn-primary.btn-contactar {
  background-color: #11595d;
  border-color: #0c3339;
}

.btn.btn-primary.btn-contactar:hover,
.btn.btn-primary.btn-contactar:focus {
  background-color: #0f4250;  /* tono para hover, opcional */
  border-color: #0f4250;
}

    /* Dropdown dentro del navbar oscuro */
    .dropdown-menu {
      background-color: #22242a;
      border: 1px solid #333842;
    }
    .dropdown-item {
      color: #f1f1f1;
    }
    .dropdown-item:hover {
      background-color: #333842;
      color: #ffffff;
    }
/* ===========================
   HERO GENERAL
   =========================== */

.hero-section {
  padding: 3rem 0;
  background-color: #181a1f;
}

.hero-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 3rem 3rem;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.8)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 480px;
}


/* ===========================
   BUSCADOR (DESKTOP / GENERAL)
   =========================== */

.hero-search-box {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.hero-search-box .form-control,
.hero-search-box .form-select {
  border: 0;
  box-shadow: none !important;
  background-color: #ffffff;
}

.hero-search-box .form-control:focus,
.hero-search-box .form-select:focus {
  outline: none;
  box-shadow: none !important;
}

.hero-search-box .bi-search {
  font-size: 1.1rem;
}

/* separar un poco las secciones internas en desktop */
.hero-search-box > div {
  min-width: 0;
}


/* ===========================
   RESULTADOS DE BÚSQUEDA (GENERAL)
   =========================== */

.hero-results {
  max-height: 320px;
  overflow-y: auto;
  max-width: 900px;
  margin: 0.75rem auto 0;
  border-radius: 1rem;
}

/* Cada resultado como card clicable */
.result-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #222;
  transition: background-color 0.15s ease, transform 0.15s ease;
  align-items: flex-start;
}

/* quitar subrayado por defecto de enlaces */
.hero-results a,
.result-item {
  text-decoration: none;
}

.hero-results a:hover,
.result-item:hover {
  text-decoration: none;
}

.result-item + .result-item {
  border-top: 1px solid #eee;
}

.result-item:hover {
  background-color: #f4f7fb;
  transform: translateY(-1px);
}

/* Miniatura siempre controlada */
.result-thumb {
  width: 80px;
  height: 60px;
  flex: 0 0 80px;
  border-radius: 0.75rem;
  object-fit: cover;
}

/* Título y descripción */
.result-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.result-desc {
  font-size: 0.875rem;
  color: #666;
}

.hero-search-box .bi-search {
  color: #11595d;  /* un verde oscuro de tu paleta, por ejemplo */
}
/* ===========================
   MOBILE
   =========================== */

@media (max-width: 767.98px) {
  /* ----- Layout general del hero ----- */
  .hero-section {
    padding: 2rem 0 3rem;
  }

  .hero-inner {
    padding: 1.75rem 1.25rem;
    border-radius: 18px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* ----- Caja de búsqueda ----- */
  .hero-search-box {
    text-align: left;
    max-width: 100%;
    margin-top: 1.8rem;
    border-radius: 18px;
    padding: 1.25rem 1.1rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  /* Sobrescribir rounded-pill de Bootstrap en mobile */
  .hero-search-box.rounded-pill {
    border-radius: 18px !important;
  }

  /* Ocultar separador vertical */
  .hero-search-box .vr {
    display: none !important;
  }

  /* Contenedores de input + select a ancho completo */
  .hero-search-box .flex-grow-1,
  .hero-search-box .d-flex.align-items-center.py-1 {
    width: 100%;
  }

  /* Lupa con ancho fijo, alineada al centro */
  .hero-search-box .flex-grow-1 > span.me-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
  }

  /* ----- Campos: input + select ----- */
  .hero-search-box .form-control,
  .hero-search-box .form-select {
    display: block;
    width: 100%;
    box-sizing: border-box;

    background-color: #f5f7fb;
    border-radius: 999px;
    border: 1px solid #e0e4f2;
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;

    text-align: left;
    text-align-last: left; /* para algunos selects */
  }

  /* Input: texto después de la lupa */
  .hero-search-box .form-control {
    padding-left: 0.9rem;
  }

  /* Select: simulamos el espacio de la lupa para alinear textos */
  .hero-search-box .form-select {
    padding-left: 2.5rem; /* ajusta 2.3 / 2.7 si quieres afinar */
  }

  .hero-search-box .form-control::placeholder {
    color: #8a8fa3;
  }

  .hero-search-box .form-control:focus,
  .hero-search-box .form-select:focus {
    border-color: #0c3339;
    box-shadow: 0 0 0 1px rgba(12, 51, 57, 0.12);
    outline: none;
  }

  /* Botón: mismo ancho que los campos */
  .hero-search-box .btn-contactar,
  #btnSearch {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    margin-top: 0.25rem;
  }

  /* ----- Resultados de búsqueda ----- */
  #searchResults,
  .hero-results {
    max-width: 100%;
    margin-top: 0 !important;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    border-top: 1px solid #eee;
  }

  .result-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.6rem;
    border-radius: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
    color: #222;
  }

  .result-item + .result-item {
    border-top: 1px solid #eee;
  }

  .result-thumb {
    width: 72px;
    height: 54px;
    flex: 0 0 72px;
    border-radius: 0.75rem;
    object-fit: cover;
  }

  .result-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
  }

  .result-desc {
    font-size: 0.8rem;
    color: #666;
  }

  .hero-results a,
  .result-item {
    text-decoration: none;
  }
}



.seo-section {
  background-color: #181a1f; /* mismo tono que el fondo general */
  color: #f5f5f5;
}

.seo-image {
  max-width: 130px;      /* tamaño controlado, centrado */
  width: 100%;
  height: auto;
}

.seo-text {
  max-width: 720px;      /* para que no se haga una línea muy larga */
}

.seo-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 2.2vw + 0.5rem, 2.2rem);
}

.seo-tags {
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #d4d4d4;
}
.locations-section {
  background-color: #181a1f;
  color: #ffffff;
}

.locations-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw + 0.5rem, 2.4rem);
}

/* Flechas */
.locations-arrows {
  display: flex;
  gap: 0.5rem;
}

.loc-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #2c313a;
  background: #111317;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.loc-arrow:hover:not(:disabled) {
  background: #0c3339;
  transform: translateY(-1px);
}

.loc-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Contenedor de cards */
.locations-track {
  display: flex;
  gap: 1.5rem;
}

/* Cada card */
.location-card {
  position: relative;
  flex: 0 0 25%;              /* 4 por fila en escritorio */
  height: 420px;              /* 🔹 más alta */
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #ffffff;
  isolation: isolate;
}

/* Overlay oscuro */
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.986),
    rgba(0, 0, 0, 0)
  );
  transition: background 0.2s ease;
  z-index: -1;
}

/* Contenido: siempre pegado al fondo */
.location-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* 🔹 título abajo */
  padding: 1.8rem;
  transform: translateY(18px); /* un pelín hacia abajo por defecto */
  transition: transform 0.25s ease;
}

/* Título visible siempre, abajo */
.location-title {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: transform 0.25s ease;
}

/* Descripción oculta por defecto */
.location-desc {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #e2e2e2;
  opacity: 0;
  max-height: 0;               /* 🔹 totalmente colapsado */
  overflow: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    max-height 0.25s ease;
}

/* Hover: se oscurece un poco más, sube el bloque y aparece el texto */
.location-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4)
  );
}

.location-card:hover .location-content {
  transform: translateY(-10px);  /* 🔹 sube todo el bloque */
}

.location-card:hover .location-title {
  transform: translateY(-4px);   /* 🔹 título un poquito más arriba */
}

.location-card:hover .location-desc {
  opacity: 1;
  max-height: 120px;             /* espacio para que se vea el párrafo */
  transform: translateY(0);
}

/* Fondos de ejemplo por card (ajusta las rutas) */
.location-card--tierra-bomba {
  background-image: url("../img/tierra-bomba.webp");
}

.location-card--rosario {
  background-image: url("../img/islas-rosario.webp");
}

.location-card--baru {
  background-image: url("../img/baru.webp");
}

.location-card--tradicionales {
  background-image: url("../img/tours-tradicionales.webp");
}

.location-card--cenas {
  background-image: url("../img/cenas-atardeceres.webp");
}

.location-card--recorridos {
  background-image: url("../img/recorridos-islas.webp");
}

/* 🔹 Mobile: scroll horizontal sin barra visible */
@media (max-width: 991.98px) {
  .locations-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;

    /* ocultar scrollbars */
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* IE/Edge antiguo */
  }

  .locations-track::-webkit-scrollbar {
    display: none;              /* Chrome / Safari */
  }

  .location-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }
  
}
/* 🔹 AJUSTES MOBILE GENERALES */
@media (max-width: 767.98px) {

  /* Texto un poquito más grande en general */
  body {
    font-size: 16px;
  }

  /* NAVBAR */
  .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .navbar-brand img {
    height: 70px; /* más pequeño que en desktop para que no se coma la pantalla */
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
    margin: 0.25rem 0;
    text-align: center;
  }

 
  /* SECCIÓN SEO */
  .seo-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .seo-image {
    max-width: 90px;
    margin-bottom: 1.5rem;
  }

  .seo-title {
    font-size: 1.4rem;
  }

  .seo-text p {
    font-size: 0.95rem;
  }

  /* CARDS DE UBICACIONES */
  .locations-title {
    font-size: 1.5rem;
    text-align: left;
  }

  .locations-track {
    padding-top: 0.5rem;
  }

  .location-card {
    flex: 0 0 80%;      /* un poco más ancha en mobile */
    height: 360px;      /* algo más alta para que se vea bien el contenido */
  }

  .location-title {
    font-size: 1rem;
  }

  .location-desc {
    font-size: 0.85rem;
  }
}
/* SECCIÓN STATS KAKATUA (tipo hero-2) */
.stats-section {
  background-color: #181a1f;
  color: #ffffff;
}

.stats-title {
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
}

.stats-icon {
  font-size: 2rem;
}

/* Contenedores de stats */
.stats-items {
  margin-top: 1rem;
      align-items: center;
}

/* Cada stat como en la referencia */
.stat-item {
  flex: 0 0 200px; /* o el valor que te guste */
  padding-right: 0;
  margin: 1.2rem 0.75rem;
  border-right: none; /* si lo prefieres sin línea vertical */
}



/* Números grandes */
.stat-number {
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}

/* Los que son solo texto (no contador) */
.stat-number-text {
  font-size: 1.1rem;
}

/* Subtítulo de cada stat */
.stat-label {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  color: #868c9b;
  font-weight: 700;
}

/* Imagen derecha tipo cápsula */
.stats-figure {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.stats-figure-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 5;                  /* forma vertical */
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid #f2f2f2;
  background-image: url("../img/stats.webp"); /* cambia la ruta */
  background-size: cover;
  background-position: center;
}

/* Badge que se sobrepone a la imagen */
.stats-badge {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background-color: #ffffff;
  color: #111317;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.stats-badge-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11595d2c, #11595d);
}

.stats-badge-text {
  font-weight: 600;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 767.98px) {
  .stats-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .stats-title {
    font-size: 1.8rem;
  }

  .stats-icon {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
  }

  .stats-items {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;          /* 2 por fila en mobile */
    padding-right: 1rem;
    border-right: none;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-number-text {
    font-size: 1.05rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}
/* SECCIÓN GALERÍA EXPERIENCIAS */
.experience-section {
  background-color: #181a1f;
  color: #ffffff;
}

.experience-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.4vw + 0.5rem, 2.4rem);
}

.experience-subtitle {
  font-size: 1rem;
  color: #d0d0d0;
}

/* Card base */
.exp-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 260px;
  background: #111317;
  /* animación de entrada */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.25s ease;
}

.exp-card--wide {
  height: 280px;
}

/* Contenido imagen */
.exp-card-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* Overlay suave */
.exp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.25)
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

/* Estado visible (lo pone JS cuando entra en viewport) */
.exp-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover: zoom + más saturación + sombra */
.exp-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.exp-card:hover .exp-card-inner {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.05);
}

.exp-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.35)
  );
}

/* MOBILE */
@media (max-width: 767.98px) {
  .experience-section {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;   /* sección más compacta */
  }

  .experience-title {
    font-size: 1.4rem;
  }

  .experience-subtitle {
    font-size: 0.9rem;
  }

  /* Tarjetas más bajas en mobile */
  .exp-card {
    height: 150px;
  }

  .exp-card--wide {
    height: 170px;
  }
}
/* SECCIÓN RESEÑAS */
.reviews-section {
  background-color: #181a1f;
  color: #ffffff;
}

.reviews-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.3vw + 0.5rem, 2.4rem);
}

.reviews-subtitle {
  color: #d0d0d0;
  font-size: 0.95rem;
}

/* Flechas */
.reviews-arrows {
  display: flex;
  gap: 0.5rem;
}

.reviews-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #111317;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.reviews-arrow:hover:not(:disabled) {
  background: #0c3339;
  transform: translateY(-1px);
}

.reviews-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Hint mobile */
.reviews-hint {
  font-size: 0.85rem;
  color: #b7b7b7;
}

/* Track de tarjetas (slider) */
.reviews-track {
  display: flex;
  gap: 1.5rem;
}

/* Tarjeta de reseña */
.review-card {
  position: relative;
  flex: 0 0 calc(33.333% - 1rem); /* 3 por fila en desktop */
  background-color: #15171e;
  border-radius: 22px;
  border: 1px solid #3a3f49;
  padding: 1.5rem 1.5rem 1.75rem;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 320px;          /* todas la misma altura */
  overflow: hidden;   
}

.review-card:hover {
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
  border-color: #0f4250;
}

/* Cabecera: avatar + nombre + rol 'Cliente de Google' */
.review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  font-size: 0.98rem;
}

.review-role {
  font-size: 0.75rem;
  color: #a5a5a5;
}

/* Estrellas */
.review-stars {
  color: #f6b81e;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

/* Texto, mismo alto y ellipsis */
.review-text {
  font-size: 0.9rem;
  color: #e6e6e6;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;      /* número de líneas visibles */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer pequeño */
.review-footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #9b9b9b;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .reviews-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .reviews-arrows {
    display: none !important; /* flechas ocultas en mobile */
  }
}

@media (max-width: 767.98px) {
  .reviews-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .reviews-title {
    font-size: 1.6rem;
  }

  .review-text {
    -webkit-line-clamp: 7;
  }
}

/* LISTADO DE BLOGS (HOME) */
.blog-list-section {
  background-color: #181a1f;
  color: #ffffff;
}

.blog-list-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.3vw + 0.5rem, 2.4rem);
}

.blog-list-subtitle {
  color: #d0d0d0;
  font-size: 0.95rem;
}

.blog-list-hint {
  font-size: 0.85rem;
  color: #b7b7b7;
}

/* Flechas */
.blog-arrows {
  display: flex;
  gap: 0.5rem;
}

.blog-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: #111317;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.blog-arrow:hover:not(:disabled) {
  background: #0c3339;
  transform: translateY(-1px);
}

.blog-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Track de cards */
.blog-track {
  display: flex;
  gap: 1.5rem;
}

/* Card de blog */
.blog-card {
  flex: 0 0 calc(33.333% - 1rem); /* 3 por fila en desktop */
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover .blog-card-image-inner {
  transform: scale(1.05);
}

.blog-card:hover .blog-card-title {
  color: #ffffff;
}

/* Imagen */
.blog-card-image {
  width: 100%;
  height: 210px;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 0.9rem;
  background-color: #111317;
}

.blog-card-image-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

/* Meta (autor + fecha) */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #c5c5c5;
  margin-bottom: 0.4rem;
}

.blog-author-avatar {
  width: 35px;
  height: 35px;
  border-radius: 999px;
  object-fit: cover;
}

.blog-author-name {
  font-weight: 600;
}

.blog-meta-dot {
  opacity: 0.6;
}

/* Título */
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .blog-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .blog-track::-webkit-scrollbar {
    display: none;
  }

  .blog-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  /* flechas solo desktop */
  .blog-arrows {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .blog-list-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .blog-card-image {
    height: 190px;
  }

  .blog-card-title {
    font-size: 1rem;
  }
}

/* CTA FULL WIDTH WHATSAPP */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  background-image: url("../img/cta-viajar.webp"); /* tu imagen de fondo */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}

.cta-title {
  font-weight: 700;
  font-size: clamp(2rem, 2.8vw + 1rem, 2.6rem);
  margin-bottom: 1.5rem;
}

.cta-btn {
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.9rem;
  background-color: #11595d;      /* color típico WhatsApp */
  border: 1px solid #11595d;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: #0f4250;  /* tono para hover, opcional */
  border-color: #0f4250;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 767.98px) {
  .cta-section {
    min-height: 220px;
  }

  .cta-content {
    padding: 2.2rem 0;
  }

  .cta-title {
    font-size: 1.7rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
  }
}
/* FOOTER GENERAL */
.site-footer {
  background-color: #181a1f;
  color: #ffffff;
  margin-top: 3rem;
}

/* PARTE 1 */
.footer-top {
  background-color: #181a1f;
}

.footer-logo {
  max-height: 180px;
  height: auto;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #d0d0d0;
}

.footer-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-list li + li {
  margin-top: 0.4rem;
}

.footer-list a {
  font-size: 0.9rem;
  color: #c6c6c6;
  text-decoration: none;
}

.footer-list a:hover {
  color: #ffffff;
}

/* Social */
.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: #111317;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid #30343d;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.footer-social-icon:hover {
  background-color: #0c3339;
  border-color: #0c3339;
  transform: translateY(-1px);
}

/* Línea */
.footer-divider {
  border-color: #262a32;
}

/* PARTE 2 (BANDA VERDE) */
.footer-bottom {
  background-color: #11595d; /* verde oscuro tipo turismo */
  color: #fff;
}

.footer-rnt-logo {
  max-height: 90px;
  height: auto;
}

.footer-logos img.footer-partner-logo {
  max-height: 60px;
  height: auto;
}

.footer-legal {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .site-footer {
    margin-top: 2.5rem;
  }

  .footer-top {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
.col-12{
  display: flex;
  justify-content: center;
}

  .footer-title {
    margin-top: 0.5rem;
  }

  .footer-bottom {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .footer-legal {
    text-align: center;
  }

  .footer-rnt-logo {
    max-height: 70px;
  }

  .footer-logos {
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .footer-list a {
    font-size: 0.9rem;
  }

  .footer-legal {
    font-size: 0.8rem;
  }
  .site-footer {
    margin-top: 1.5rem !important;  /* en lugar de 3rem / mt-5 */
  }

  /* Parte superior del footer */
  .footer-top {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  /* Línea divisoria más cerca del contenido */
  .footer-divider {
    margin-top: 1.5rem !important;
  }

  /* Banda verde inferior */
  .footer-bottom {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

  /* Un poco menos de separación entre columnas */
  .footer-top .row.gy-4 {
    row-gap: 1.2rem;
  }
}
/* PÁGINAS DE CATEGORÍA / LUGAR */
.category-page {
  background-color: #181a1f;
  color: #ffffff;
  min-height: 100vh;
}

.category-hero {
  background-color: #181a1f;
}

.category-breadcrumb {
  font-size: 0.9rem;
  color: #bbbbbb;
}

.category-breadcrumb a {
  color: #bbbbbb;
  text-decoration: none;
}

.category-breadcrumb a:hover {
  color: #ffffff;
}

.category-title {
  font-weight: 700;
  font-size: clamp(2rem, 2.6vw + 0.5rem, 2.6rem);
  margin-bottom: 0.5rem;
}

.category-subtitle {
  font-size: 0.95rem;
  color: #d0d0d0;
}

/* GRID DE TOURS (tipo Destination) */
.category-grid-section {
  background-color: #181a1f;
}

.tour-card-wrapper {
  /* solo para futuras cosas si quieres */
}

/* Card principal */
.tour-card {
  position: relative;
  display: block;
  width: 100%;
  height: 320px;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  background-color: #111317;
  cursor: pointer;

  /* animación de aparición */
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.25s ease;
  transition-delay: var(--anim-delay, 0s);
}

.tour-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Fondo */
.tour-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* Overlay degradado + texto */
.tour-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem 1.4rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0)
  );
}

.tour-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.tour-card-meta {
  font-size: 0.85rem;
  color: #d5d5d5;
}

/* Hover: zoom + “flotar” */
.tour-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
}

.tour-card:hover .tour-card-bg {
  transform: scale(1.12);
}

/* MOBILE */
@media (max-width: 767.98px) {
  .category-title {
    font-size: 1.8rem;
  }

  .tour-card {
    height: 260px;
  }
}
/* === TOUR DETAIL PAGE === */

.tour-hero {
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.85)
  );
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.tour-hero-place {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 0.1rem;
}

.tour-hero-title {
  font-weight: 700;
  font-size: clamp(2.1rem, 3vw + 1rem, 3.1rem);
  margin-bottom: 0.4rem;
}

.tour-hero-rating {
  font-size: 0.9rem;
  color: #f5f5f5;
}

.tour-hero-rating i {
  color: #ffbf3b;
  margin-right: 0.25rem;
}

/* tarjeta de precio flotante */
.tour-hero-card-wrapper {
  position: relative;
  z-index: 3;
  transform: translateY(50%);
  margin-bottom: 5rem;
}

.tour-hero-card {
  background-color: #15171e;
  border-radius: 24px;
  border: 1px solid #2b2f39;
  padding: 1.6rem 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);

  opacity: 0;
  transform: translateY(28px);
  animation: heroCardIn 0.6s ease forwards;
}

@keyframes heroCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-hero-price {
  font-weight: 700;
  font-size: 1.7rem;
  color: #2ea8ff;
  display: inline-block;
}

.tour-hero-price-note {
  display: block;
  font-size: 0.9rem;
  color: #cfd2dd;
}

.tour-hero-btn {
  font-weight: 600;
  border-radius: 999px;
  padding: 0.6rem 1.7rem;
  background-color: #25d366;
  border: 1px solid #1fa955;
  color: #0b141a;
}

.tour-hero-btn:hover {
  background-color: #1fa955;
  border-color: #1b8c47;
  color: #0b141a;
}

.tour-hero-cta-note {
  font-size: 0.8rem;
  color: #cfd2dd;
  margin-top: 0.35rem;
}

.tour-main {
  background-color: #181a1f;
  color: #ffffff;
}

/* titulos / texto */
.tour-section-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
}

.tour-description {
  font-size: 0.98rem;
  color: #e2e2e2;
  line-height: 1.7;
}

/* galería */
.tour-gallery-item {
  border-radius: 24px;
  overflow: hidden;
  background-color: #111317;
}

.tour-gallery-img {
  width: 100%;
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.45s ease;
}

.tour-gallery-item:hover .tour-gallery-img {
  transform: scale(1.12);
}

/* tabla plan del tour */

.tour-plan-table {
  margin-bottom: 40px;
  color: #2b2f39;
  border-color: #ffffff;
}

.tour-plan-table th,
.tour-plan-table td {
  border-color: #2b2f39;
  vertical-align: top;
}

.tour-plan-label {
  width: 28%;
  background-color: #15171e;
  font-weight: 600;
  font-size: 0.93rem;
}

.tour-plan-value {
  background-color: #111317;
  font-size: 0.93rem;
}

.tour-plan-table .bi {
  font-size: 1rem;
}

/* listas de incluye / no incluye */
.tour-plan-list {
  list-style: none;
  padding-left: 0;
}

.tour-plan-list li + li {
  margin-top: 0.25rem;
}

/* responsive */
@media (max-width: 991.98px) {
  .tour-hero-card-wrapper {
    transform: translateY(40%);
    margin-bottom: 4.5rem;
  }

  .tour-hero-card {
    padding: 1.4rem 1.4rem;
  }

  .tour-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .tour-hero-card-wrapper {
    transform: translateY(35%);
    margin-bottom: 4rem;
  }

  .tour-hero-content {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .tour-hero-title {
    font-size: 1.9rem;
  }

  .tour-hero-price {
    font-size: 1.5rem;
  }

  .tour-plan-label {
    width: 40%;
  }
}
/* === Tabla del tour en negro con texto blanco === */
.tour-plan-table {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;

}

.tour-plan-table th,
.tour-plan-table td {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

/* Columna de etiquetas */
.tour-plan-label {
  background-color: #000000;
  color: #ffffff;
}

/* Columna de valores */
.tour-plan-value {
  background-color: #000000;
  color: #ffffff;
}

/* Iconos dentro de la tabla */
.tour-plan-table .bi {
  color: #ffffff;
}
/* ============================
   PÁGINA: PREGUNTAS FRECUENTES
   ============================ */

.faq-main {
  background-color: #181a1f;
  color: #f5f5f5;
}

.faq-section {
  background-color: #181a1f;
}

/* Encabezado */
.faq-header {
  color: #f5f5f5;
}

.faq-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4d4d4;
}

.faq-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
  margin-bottom: 0.35rem;
}

.faq-intro {
  max-width: 720px;
  color: #c7c7c7;
}

/* Acordeón */
.faq-accordion {
  background: transparent;
  border-radius: 24px;
}

/* Item del acordeón */
.faq-item {
  background-color: #111317;
  border: 1px solid #262a32;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

/* Botón de cada pregunta */
.faq-button {
  background-color: #111317;
  color: #f5f5f5;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 1.25rem;
  box-shadow: none;
}

.faq-button::after {
  /* flecha de Bootstrap pero más discreta */
  filter: invert(1) opacity(0.7);
}

.faq-button:not(.collapsed) {
  background-color: #151821;
  color: #ffffff;
}

/* Quitar borde azul feo de focus y usar uno más suave */
.faq-button:focus {
  box-shadow: 0 0 0 1px rgba(15, 151, 153, 0.5);
  outline: none;
}

/* Cuerpo del acordeón */
.faq-body {
  background-color: #151821;
  color: #e3e3e3;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0.9rem 1.25rem 1.1rem;
}

/* CTA final */
.faq-cta {
  border-top: 1px solid #262a32;
  margin-top: 1.75rem;
}

.faq-cta p {
  font-size: 0.95rem;
  color: #d0d0d0;
}

/* RESPONSIVE */
@media (max-width: 767.98px) {
  .faq-main {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .faq-title {
    font-size: 1.7rem;
  }

  .faq-intro {
    font-size: 0.9rem;
  }

  .faq-button {
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
  }

  .faq-body {
    font-size: 0.9rem;
  }

  .faq-cta .btn-contactar {
    width: 100%;
    justify-content: center;
  }
}


