/* ==========================================================
   FUENTES
   ========================================================== */

@font-face {
  font-family: 'Domaine';
  src: url('../fonts/Domaine-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DomaineMedium';
  src: url('../fonts/Domaine-Display-Medium.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DomaineDispNar';
  src: url('../fonts/DomaineDispNar-Bold.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fjalla One";
  src: url('../fonts/FjallaOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('../fonts/Urbanist-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ==========================================================
   BASE / TIPOGRAFÍA GLOBAL
   ========================================================== */

body {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  color: #323232;
  line-height: 1.3;
}

h1,
h2,
h3, .h3,
h5 {
  font-family: "DomaineMedium", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.1;
}

.DomaineMedium {
  font-family: "DomaineMedium", sans-serif !important;	
}

h2 {
  font-size: 48px;
  margin-bottom: 1.1rem;
}

h3, .h3 {
  font-size: 36px;
  margin-bottom: 1.1rem;
}

/* Ajustes tipográficos mobile */
@media (max-width: 576px) {
  h2 { font-size: 32px; }
  h3 { font-size: 26px; }
  body,
  p { font-size: 16px; }
}

.text24 {
	font-size: 24px;
}


/* ==========================================================
   ESPACIADOS / HELPERS
   ========================================================== */

.section-padding {
  padding: 80px 0;
}

.section-padding-x {
  padding: 80px;
}

.section-padding-b {
  padding-bottom: 80px;
}

/* Mobile */
@media (max-width: 576px) {
  .section-padding {
    padding: 48px 0;
  }

  .section-padding-x {
    padding: 48px 24px;
  }

  .section-padding-b {
    padding-bottom: 48px;
  }
}

/* Container ancho máximo */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1380px;
  }
}



.bg-dark {
  background-color: #323232 !important;
}


/* ==========================================================
   NAVBAR OVERLAY
   ========================================================== */

.navbar-overlay .nav-link,
.navbar-overlay .navbar-brand {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 18px;
}

.navbar-overlay .nav-link:hover {
  color: #e1e1b3 !important;
}

/* Fondo navbar */
.navbar-overlay.bg-dark {
  background-color: rgba(28, 53, 94, 1) !important;
  padding: 20px 0;
}

/* Espaciado menú desktop */
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: .8rem !important;
    padding-right: .8rem !important;
  }
}

/* RRSS navbar */
.rrss {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rrss a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rrss img {
  display: block;
  width: 25px;
  height: 25px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.rrss a:hover img {
  opacity: 1;
}

/* Navbar mobile */
@media (max-width: 991px) {
  .navbar-overlay {
    background: rgba(28, 53, 94, 1) !important;
  }

  .rrss {
    justify-content: center;
    margin-top: 1rem;
  }

  .rrss a {
    padding: 6px;
  }
}


.land {
  font-size: 20px;
  font-family: "Fjalla One", sans-serif;
  color: #fff;
}

.land:hover {
  color: #e1e1b3;
}




/* ==========================================================
   BOTONES
   ========================================================== */

.btn {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  transition: all 0.3s ease;
  touch-action: manipulation;
}

.btn-primary {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  background-color: #1c355e;
  border-color: #1c355e;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem 1.8rem;
  transition: all 0.3s ease;
}

/* Estados visuales */
.btn-primary:hover {
  background-color: #e1e1b3;
  border-color: #e1e1b3;
  color: #1c355e;
}

.btn-primary:active {
  background-color: #7f6433;
  border-color: #7f6433;
  transform: scale(0.97);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(159, 124, 64, 0.4);
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #c8c8c8;
  border-color: #c8c8c8;
}

.btn-header {
  background-color: transparent !important;
  color: #fff;
  border-color: #fff;
}

.btn-header:hover {
  background-color: #1c355e !important;
  color: #fff;
}

.btn-negative {
  background-color: transparent !important;
  color: #1c355e;
  border-color: #1c355e;
}

.btn-negative:hover {
  background-color: #1c355e !important;
  color: #fff;
}




/* ==========================================================
   SLIDER A PANTALLA COMPLETA
   ========================================================== */

#myCarousel {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

#myCarousel .carousel-item {
  height: 100svh;
  min-height: 100vh;
}

#myCarousel .carousel-item img.slider {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  bottom: 35%;
}

.carousel-caption p {
  font-size: 30px;
}

.carousel-caption h1 {
  font-family: "DomaineDispNar", sans-serif;
  font-size: 72px;
}

/* VIDEO HEADER */
.slider-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Imagen fallback */
.slider-fallback {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Asegurar que el caption esté encima */
.carousel-caption {
  z-index: 2;
}

/* Contenedor */
#myCarousel .carousel-item {
  position: relative;
  height: 100svh;
  min-height: 100vh;
}





/* ==========================================================
   MOBILE PERFORMANCE OPTIMIZATION
   SOLO SMARTPHONE
   NO AFECTA A DESKTOP
   ========================================================== */

@media (max-width: 576px) {

  /* ---------- Slider layout estable ---------- */

  #myCarousel {
    height: 100svh;
    min-height: 100svh;
  }

  #myCarousel .carousel-item {
    height: 100svh;
    min-height: 100svh;
  }

  /* ---------- Optimización media ---------- */

  .slider-video {
    display: none; /* no cargar vídeo en móvil */
  }

  #myCarousel img.slider {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ---------- Caption centrado ---------- */

  .carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,.6);
  }

  /* ---------- Tipografía fluida ---------- */

  .carousel-caption p {
    font-size: clamp(14px,4vw,16px);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .carousel-caption h1 {
    font-size: clamp(30px,8vw,40px);
    line-height: 1.1;
    margin-bottom: 20px !important;
  }

  /* ---------- Botones optimizados para dedo ---------- */

  .carousel-caption .btn {
    font-size: 15px;
    padding: 14px 22px;
    min-height: 48px;
  }

  /* ---------- Indicadores ---------- */

  .carousel-indicators {
    bottom: 18px;
  }

  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }

  /* ---------- Flechas slider ---------- */

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 26px;
    height: 26px;
  }

  /* ---------- Navbar ---------- */

  .navbar-overlay .nav-link {
    font-size: 16px;
    padding: 10px 0;
  }

  /* ---------- Botones globales ---------- */

  .btn,
  .btn-primary {
    font-size: 15px;
    padding: 14px 22px;
    min-height: 48px;
  }

}

@media (max-width: 576px) {
  .slider-video {
    display: none;
  }
}








/* ==========================================================
   BANDAS / COMPONENTES VISUALES
   ========================================================== */

.anuncio {
  padding: 20px 0;
  color: #1c355e;
  background-color: #e1e1b3;
  font-size: 18px;
}

/* Icon band */
.icon-band-info {
  color: #1c355e;
}

.icon-band-info > div {
  max-width: 160px;
}

.icon-band {
  max-height: 60px;
  width: auto;
}

@media (max-width: 576px) {
  .icon-band {
    max-height: 50px;
  }

  .icon-band-wrapper p {
    font-size: 0.9rem;
  }
}


/* ==========================================================
   EXCURSIONES
   ========================================================== */

.excursions-section {
  padding: 10px 0 80px;
}

.excursion-card {
  border: 1px solid #c8c8c8;
  border-radius: 0;
  background-color: #fff;
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excursion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.excursion-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f5f5f5;
}

.excursion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.excursion-card:hover .excursion-image img {
  transform: scale(1.06);
}

.excursion-body {
  padding: 1.25rem 0 0.25rem;
  display: flex;
  flex-direction: column;
}

.excursion-title {
  font-size: 36px;
  margin-bottom: 0.25rem;
}

.excursion-subtitle {
  margin-bottom: 0.75rem;
}

.excursion-duration {
  margin-bottom: 1.25rem;
}

.excursion-body .btn {
  margin-top: auto;
}

.excursion-body .btn-outline-primary {
  --bs-btn-color: #00325f;
  --bs-btn-border-color: #00325f;
  align-self: flex-start;
}

.excursion-body .btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: #00325f;
  border-color: #00325f;
}

.custom-gap {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* Mobile / touch */
@media (max-width: 576px) {
  .excursion-title {
    font-size: 1.05rem;
  }

  .excursion-subtitle {
    font-size: 0.9rem;
  }
}

@media (hover: none) {
  .excursion-card:hover {
    transform: none;
    box-shadow: none;
  }
}

.map-icon {
    width: 30px;
    height: 30px;
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(1000%) contrast(100%);
}
@media (max-width: 767px) {
    .btn .map-icon {
        width: 22px;
        height: 22px;
    }

    #busstop + button {
        padding: 0 12px;
    }
}

/* ==========================================================
   COLLAGES / VENTAJAS
   ========================================================== */

.especial-excursions {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-box {
  aspect-ratio: 320 / 230;
  overflow: hidden;
  border-radius: 0;
  background-color: #f0f0f0;
}

.image-box-tall {
  aspect-ratio: 320 / 479;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive collage */
@media (max-width: 991px) {
  .image-collage {
    grid-template-columns: 1fr;
  }

  .image-box-tall {
    aspect-ratio: 320 / 230;
  }
}

@media (max-width: 576px) {
  .especial-excursions {
    padding: 48px 0;
  }
}

/* Ventajas */
.advantage-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.advantage-top {
  height: 190px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.advantage-top img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.advantage-lead {
  font-weight: 600;
  margin-bottom: 0;
}

.advantage-text {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 576px) {
  .advantage-top {
    max-height: none;
  }
}


/* ==========================================================
   SERVICES EXTRA
   ========================================================== */

.bg-services-extra {
  margin-bottom: 20px;
  background-image: url('../img/bg-services.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px;
  position: relative;
}

.bg-services-extra::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.bg-services-extra > * {
  position: relative;
  z-index: 1;
}

.service-image {
  aspect-ratio: 446 / 302;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}

.extra-image {
  aspect-ratio: 290 / 225;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-services-extra h2 {
  margin-bottom: 1rem;
}

.bg-services-extra p {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991px) {
  .bg-services-extra {
    padding: 48px 24px;
  }
}

@media (max-width: 576px) {
  .bg-services-extra {
    padding: 2rem 1.5rem;
  }
}


/* ==========================================================
   CASES / TESTIMONIOS
   ========================================================== */

.uses-cases {
  background-color: #e8eaef;
}

.cases {
  background-color: #e8eaef;
  border: 1px solid #323232;
  padding: 1.75rem;
  position: relative;
  min-height: 279px;
}

.case-text {
  font-style: italic;
}

.cases-footer {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cases-rating {
  align-items: center;
  gap: 10px;
}

.stars {
  color: #fbbc05;
  font-size: 1.33rem;
  line-height: 1;
  padding-bottom: 10px;
}

.cases-controls {
  display: flex;
  gap: 10px;
}

.cases-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e8eaef;
  background-color: #e8eaef;
  cursor: pointer;
  font-size: 2.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-slide {
  padding-bottom: 3.5rem;
}

@media (max-width: 576px) {
  .cases {
    min-height: auto;
  }

  .cases-footer {
    position: static;
    margin-top: 1.5rem;
  }
}








/* ==========================================================
   PAGE HERO – CABECERA GENERAL
   ========================================================== */

.page-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 720px;
  overflow: hidden;
  background-color: #000;
}

.page-hero--reserve {
  position: relative;
  height: 100vh;
  min-height: 360px;
  max-height: 360px;
  overflow: hidden;
  background-color: #000;
}

.page-hero-sm {
  position: relative;
  height: 100vh;
  min-height: 360px;
  max-height: 360px;
  overflow: hidden;
  background-color: #000;
}

/* Imagen fija */
.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay general */
.page-hero-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}



/* =====================================
   BLOQUE DE TEXTO (izquierda, centrado vertical)
   ===================================== */

.page-hero-content {
  max-width: 830px;
  padding-left: 80px;
  color: #fff;
}

/* Categoría (opcional) */
.page-hero-category {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Título principal */
.page-hero-title {
  font-family: "DomaineDispNar", sans-serif;
  font-size: 72px;
  margin-bottom: 1rem;
}

/* Subtítulo */
.page-hero-subtitle {
  font-family: "Domaine", sans-serif;
  font-size: 36px;
}


/* ==========================================================
   PAGE HERO – MOBILE OPTIMIZATION
   No modifica comportamiento desktop
   ========================================================== */

@media (max-width:576px){

  /* altura más estable en móvil */
	
.page-hero-content {
  padding-left: 0;
}

	
	
  .page-hero{
    height: 70vh;
    min-height: 420px;
    max-height: none;
  }

  .page-hero--reserve,
  .page-hero-sm{
    height: 40vh;
    min-height: 260px;
    max-height: none;
  }

  /* overlay con padding lateral */
  .page-hero-overlay{
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  /* título hero */
  .page-hero-title{
    font-size: clamp(28px,8vw,36px);
    line-height: 1.1;
    margin-bottom: 20px;
  }

  /* botones */
  .page-hero-overlay .btn{
    font-size: 15px;
    padding: 14px 22px;
    min-height: 48px;
  }

}


/* =====================================
   BLOQUE INFERIOR IZQUIERDA
   ===================================== */

.page-hero-footer {
  position: absolute;
  bottom: 40px;
  left: 80px;

  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #fff;
}

/* Meta info */
.page-hero-meta {
  font-size: 18px;
}

.page-hero-meta .num {
  font-size: 36px;

}

/* =====================================
   RESPONSIVE
   ===================================== */

@media (max-width: 991px) {
  .excursion-header-content {
    padding-left: 48px;
  }

  .excursion-header-footer {
    left: 48px;
    bottom: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .excursion-header .excursion-title {
    font-size: 48px;
  }
}

@media (max-width: 576px) {
  .excursion-header {
    min-height: 520px;
  }

  .excursion-header-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .excursion-header-footer {
    left: 24px;
    bottom: 24px;
  }

  .excursion-header .excursion-title {
    font-size: 36px;
  }

  .excursion-subtitle {
    font-size: 18px;
  }
}


/* ==========================================================
   BANDA "INCLUIDO" – DETALLE EXCURSIÓN
   ========================================================== */

.excursion-included {
  background-color: #e8f7ee;
  padding: 24px 0;
}

/* Grid de 4 columnas iguales */
.included-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

/* Columna genérica */
.included-col {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Columna del título */
.included-title-col {
  justify-content: flex-start;
}

/* Título */
.included-title {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
  color: #323232;
  letter-spacing: -2px;
  white-space: nowrap;
}

/* Item icono + texto */
.included-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #323232;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

/* Icono */
.included-item img {
  height: 67px;
  width: auto;
  flex-shrink: 0;
}

/* =====================================
   RESPONSIVE
   ===================================== */

/* Tablet */
@media (max-width: 991px) {
  .included-wrapper {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }

  .included-title-col {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .excursion-included {
    padding: 32px 0;
  }

  .included-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .included-title {
    font-size: 36px;
	  letter-spacing: -1px;
  }

  .included-item {
    justify-content: center;
    text-align: center;
    font-size: 16px;
  }
  .included-col {
    justify-content: center;
    text-align: center;
  }
}



/* ==========================================================
   RESUMEN EXCURSIÓN – DETALLE
   ========================================================== */

.excursion-summary {
  background-color: #fff;
}

/* Grid principal */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px; /* MISMA altura para ambas filas */
  gap: 20px;
}

.summary-grid--text-double .summary-text {
  grid-row: span 2;
}


/* Texto ocupa una celda completa */
.summary-text {
  display: flex;
  flex-direction: column;
/*  justify-content: center;*/
}

.summary-text p:last-child {
  margin-bottom: 0;
}

/* Imagen */
.summary-image {
  overflow: hidden;
  background-color: #eee;
}

.summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================
   RESPONSIVE
   ===================================== */

/* Tablet */
@media (max-width: 991px) {
  .summary-grid {
	  
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }

  .summary-text {
    grid-column: 1 / -1;
  }

  .summary-grid--text-double .summary-text {
    grid-row: auto;
  }
}


/* Mobile */
@media (max-width: 576px) {
  .summary-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .summary-text {
    padding: 20px;
  }

  .summary-image {
    aspect-ratio: 446 / 230;
  }


}






/* ==========================================================
   RUTA / ITINERARIO – DETALLE EXCURSIÓN
   ========================================================== */

.excursion-route {
  background-color: #fff;
}

/* Tabla visual */
.route-table {
}

/* Filas */
.route-row {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr 0.6fr 0.7fr;
  gap: 16px;
  padding: 20px 0 5px;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  align-items: start;
}

/* Header */
.route-header {
  font-family: 'DomaineMedium';
  font-size: 36px;
  letter-spacing: 0.05em;
}

/* Ruta */
.route-title {
  font-weight: 400;
}

/* Listas */
.route-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-row ul li::before {
  content: "• ";
}

.route-row li {
  margin-bottom: 4px;
}

/* Mapa */
.route-map {
  position: sticky;
  top: 120px;
  height: 100%;
}

.route-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
/* Sub-bloques de visita dentro de la ruta */
.route-row.route-highlight .route-title {
  padding-left: 20px;
}
/* =====================================
   RESPONSIVE
   ===================================== */

/* Tablet */
@media (max-width: 991px) {
  .route-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-header {
    display: none;
  }

  .route-row > div::before {
    content: attr(data-label);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    font-size: 24px;
  }

  .route-map {
    position: relative;
    top: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .route-row {
    padding: 16px 0;
  }

  .route-map iframe {
    min-height: 300px;
  }
}



.excursion-cta {
  background-color: #fff;
  padding: 60px 0;
}

.cta-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 446 / 173;
  object-fit: cover;
  display: block;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 1.2rem;
}

.cta-content h2 {
  font-size: 36px;
}

/* Mobile */
@media (max-width: 576px) {
  .excursion-cta {
    padding: 48px 0;
  }

  .cta-content p {
    font-size: 16px;
  }
	
  .cta-content h2 {
    font-size: 28px;
  }	
	
}




/* ==========================================================
   ITINERARIO – DETALLE DE EXCURSIÓN
   ========================================================== */

.excursion-itinerary h2 {
  margin-bottom: 1rem;
}

/* Item */
.itinerary-item {
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.itinerary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Texto */
.itinerary-text h3 {
  font-size: 36px;
  margin-bottom: 1rem;
}

.itinerary-text p {
  font-size: 18px;
}

/* ==========================================================
   IMÁGENES
   ========================================================== */

.itinerary-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.itinerary-images-all {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Columna con dos imágenes */
.itinerary-images-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Imagen horizontal */
.itinerary-images-wide {
  height: 100%;
}

/* Imagen base */
.itinerary-images img {
  width: 100%;
  height: 100%;
  max-width: 446px;
  object-fit: cover;
  display: block;
}

/* Alturas orientativas */
.itinerary-images-col img {
  height: 190px;
}

.itinerary-images-wide img {
  height: clamp(280px, 30vw, 400px);
}

.itinerary-images-all img {
  max-width: 913px;
  height: 400px;
}

/* ==========================================================
   VARIANTE: UNA SOLA IMAGEN GRANDE
   ========================================================== */

.itinerary-images.layout-single {
  grid-template-columns: 1fr;
}

.itinerary-images.layout-single img {
  max-width: 913px;
  height: 338px;
}

/* ==========================================================
   VARIANTE: DOS IMÁGENES HORIZONTALES
   ========================================================== */

.itinerary-images.layout-double {
  grid-template-columns: 1fr 1fr;
}

.itinerary-images.layout-double img {
  height: 360px;
}
@media (max-width: 991px) {
  .itinerary-images.layout-double {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {
  .itinerary-images {
    grid-template-columns: 1fr;
  }

  .itinerary-images img,
  .itinerary-images-wide img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .itinerary-item {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .itinerary-text h3 {
    font-size: 26px;
  }

  .itinerary-text p {
    font-size: 16px;
  }
}




/* ==========================================================
   RECOMENDACIONES – DETALLE EXCURSIÓN
   ========================================================== */

.excursion-recommendations {
  background-color: #f0f0f0;
}

/* Item */
.recommendation-item {
  text-align: center;
  padding: 20px;
}

/* Icono */
.recommendation-item img {
  height: 101px;
  width: auto;
  margin-bottom: 16px;
}

/* Título */
.recommendation-item h3 {
  font-family: 'Urbanist';
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Texto */
.recommendation-item p {
  font-size: 16px;
  margin: 0;
  color: #323232;
}

/* Responsive */
@media (max-width: 576px) {
  .recommendation-item {
    padding: 10px;
  }

  .recommendation-item img {
    height: 56px;
  }

	

.route-row{
border-bottom:1px solid #eee;
padding:18px 0;
}

.route-row ul{
padding-left:16px;
}

.route-title{
font-weight:700;
}

}


/* ==========================================================
   COMPANY – COMPONENTES REUTILIZABLES
   ========================================================== */

.feature-item img {
  height: 223px;
  width: auto;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-family: 'Urbanist';
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}

.feature-item p {
  font-size: 16px;
  margin: 0;
}

.quality-badge {
  max-width: 135px;
}

.quality-text {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 576px) {
  .feature-item img {
    width: 100%;
  }

  .quality-text {
    font-size: 16px;
  }
}


.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 40px;
}

.faq-accordion .accordion-button {
  background: #f0f0f0;
  font-size: 30px;
  padding: 20px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f0f0f0;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-icon {
  font-size: 32px;
  font-weight: 300;
}

.accordion-body {
  font-size: 18px;
  padding: 20px;
}




/* ==========================================================
   RESERVA
   ========================================================== */

.booking-card {
}

.booking-card h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

.booking-card label {
  font-size: 24px;
  margin-bottom: 5px;
	font-family: "DomaineMedium", sans-serif;
}

.booking-card .form-control, .booking-card .form-select {
  font-size: 18px;
	background-color: #f0f0f0;
	border-radius: 0;
	padding: 5px 10px;
	margin-bottom: 5px;
}

.booking-card input.form-control, .booking-card select.form-select {
	height: 49px;
}

.priceText {
  font-size: 72px;
  font-weight: 700;
  color: #1c355e;
}

.textprivacy {
	font-size: 18px !important;
  font-family: "Urbanist", sans-serif !important;
}





@media (max-width: 768px) {


.priceText {
  font-size: 26px;
}

}


.input-number-wrapper{
position:relative;
}

.number-buttons{
position:absolute;
right:5px;
top:5px;
display:flex;
flex-direction:column;
}

.number-buttons button{
border:none;
background:#eee;
width:30px;
height:20px;
cursor:pointer;
}

.number-buttons button:hover{
background:#ddd;
}

.number-wrapper{
    position:relative;
}

.number-wrapper input{
    padding-right:45px;
}

.number-controls{
    position:absolute;
    right:5px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
}

.number-controls button{
    border:none;
    background:transparent;
    font-size:12px;
    cursor:pointer;
}








.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
}

.video-card p {
  margin-bottom: 25px;
}

.video-thumb img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumb:hover img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  border: none;
}

.play-btn::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 18px;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal video {
  width: 100%;
  border-radius: 0;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}






/* ==========================================================
   FOOTER
   ========================================================== */

.footer h5 {
  font-size: 36px;
}

.footer {
  padding-top: 40px;
  background-color: #1c355e;
  color: #fff;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #e1e1b3;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-menu li {
  padding: 0 0 40px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
}

.footer-legal {
  border-top: 1px solid #fff;
  padding-top: 40px;
}

.footer-legal img {
  margin-left: 6px;
}

.footer .form-control {
  border-radius: 0;
  border-color: #fff;
  background-color: #1c355e;
  padding: 2px 10px;
	color: #fff;
}

.footer .btn-footer {
  border-radius: 5px;
  font-size: 16px;
  border-color: #fff;
  background-color: #1c355e;
  color: #fff;
  padding: 10px 20px;
}


.cookies tbody tr td {
	font-size: 16px !important;
}


.alert {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
