@charset "UTF-8";
/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   VARIABLES GLOBALES
   ======================================== */
:root {
  --primary: #3eb3e7;
}

@font-face {
  /*font-family: 'News Gothic BT Bold', sans-serif;*/
  font-family: "helvetica neue lt 45 light";
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/nuevas/HelveticaNeueLT-Light?#iefix") format("eot"), url("./fonts/nuevas/HelveticaNeueLT-Light.woff") format("woff"), url("./fonts/nuevas/HelveticaNeueLT-Light.woff2") format("woff2"), url("./fonts/nuevas/HelveticaNeueLT-Light.ttf") format("truetype"), url("./fonts/nuevas/HelveticaNeueLT-Light.svg") format("svg");
}
.text-primary {
  color: var(--primary);
}

/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* _fonts.scss */
@font-face {
  font-family: "Adobe Garamond Pro";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/AdobeGaramondPro/AdobeGaramondPro-Regular.woff2") format("woff2"), url("../fonts/AdobeGaramondPro/AdobeGaramondPro-Regular.woff") format("woff"), url("../fonts/AdobeGaramondPro/AdobeGaramondPro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Neue LT 45 Light";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/nuevas/HelveticaNeueLT-Light.woff2") format("woff2"), url("../fonts/nuevas/HelveticaNeueLT-Light.woff") format("woff"), url("../fonts/nuevas/HelveticaNeueLT-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Neue LT 95 Black";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/nuevas/HelveticaNeueLT-Black.woff2") format("woff2"), url("../fonts/nuevas/HelveticaNeueLT-Black.woff") format("woff"), url("../fonts/nuevas/HelveticaNeueLT-Black.ttf") format("truetype");
}
/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   ESTILOS BASE Y ELEMENTOS GENERALES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  color: #3eb3e7;
}

ul {
  list-style: none;
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #3eb3e7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

html::-webkit-scrollbar {
  width: 0.5rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #196db6;
  border-radius: 5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Helvetica Condensed", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #383637;
  font-size: 38px;
}

h1 span,
h2 span,
h3 span {
  font-family: "Helvetica Condensed", Arial, sans-serif;
  font-weight: 600;
  color: #3eb3e7;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 50px;
  font-family: "Helvetica Condensed", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-amarillo {
  background-color: #fecb32;
  color: #fff;
}
.btn-amarillo:hover {
  background-color: rgb(27.8930875576, 163.8718894009, 224.3069124424);
}

.btn-celeste {
  background-color: #3eb3e7;
  color: #fff;
}
.btn-celeste:hover {
  background-color: rgb(27.8930875576, 163.8718894009, 224.3069124424);
}

/**********************
Ws botón redondo con tooltip ws-tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
  position: fixed;
  bottom: 13px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  cursor: pointer;
  display: block;
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
  background: #1ca550;
  padding: 8px 11px;
  opacity: 1;
}

#chat-ws-redondo.ws.tooltip img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}

#chat-ws-redondo.ws.tooltip i {
  font-size: 44px;
  color: white;
}

.ws.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #1ca550;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1ca550 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.section-paseos {
  background: #fff;
  position: relative;
}

.section-paseos .image-wrapper {
  position: relative;
  display: inline-block;
}

.section-paseos .image-wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #009FE3;
  z-index: -1;
}

.section-paseos .subtitulo {
  color: #3eb3e7;
  font-style: italic;
  text-transform: none;
  font-size: 1.8rem;
  font-family: "Adobe Garamond Pro", serif;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-paseos h1 {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-paseos h1 span {
  color: #00AEEF;
}

.lista-paseos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lista-paseos .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.lista-paseos .info {
  display: flex;
  align-items: center;
  gap: 0px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.05rem;
}

.lista-paseos .info i {
  color: #00AEEF;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .lista-paseos .item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section-paseos h1 {
    font-size: 28px;
  }
}
.img-border {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  margin-bottom: 20px;
}

.img-border::before {
  position: absolute;
  content: "";
  top: 1rem;
  left: 4rem;
  right: 9rem;
  bottom: -2rem;
  border: 5px solid #3eb3e7;
  z-index: 1;
}

.img-border img {
  position: absolute;
  top: 3rem;
  left: 2rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}

@media (max-width: 1500px) {
  .img-border::before {
    position: absolute;
    content: "";
    top: 1rem;
    left: 3rem;
    right: 1rem;
    bottom: -2rem;
    border: 5px solid #3eb3e7;
    z-index: 1;
  }
  .img-border img {
    position: absolute;
    top: 3rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
}
@media (max-width: 991px) {
  .img-border::before {
    position: absolute;
    content: "";
    top: 1rem;
    left: 7rem;
    right: 5rem;
    bottom: -2rem;
    border: 5px solid #3eb3e7;
    z-index: 1;
  }
  .img-border img {
    position: absolute;
    top: 3rem;
    left: 2rem;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 2;
  }
}
/* RESPONSIVE */
@media (max-width: 767px) {
  .img-border img {
    position: absolute;
    top: 2rem;
    left: 0rem;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    z-index: 2;
  }
  .img-border::before {
    position: absolute;
    content: "";
    top: 2rem;
    left: -1rem;
    right: -1rem;
    bottom: -2rem;
    border: 5px solid #3eb3e7;
    z-index: 1;
  }
  .img-border {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 700px;
    margin-bottom: 20px;
  }
}
.color-gris {
  color: #b6b2b2;
  font-size: 24px;
}

@media (max-width: 521px) {
  .img-border {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    margin-bottom: 20px;
  }
}
/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   HEADER Y NAVEGACIÓN
   ======================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: all 0.4s ease;
  /* Dropdown desktop */
}
header .logo {
  position: relative;
}
header .logo img {
  height: 60px;
  transition: opacity 0.3s ease;
}
header .logo .logo-color {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
header nav a {
  font-family: "Helvetica Condensed", Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}
header nav a:hover {
  color: #3eb3e7;
}
header .menu-toggle {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
header .dropdown {
  position: relative;
}
header .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 1001;
}
header .dropdown .dropdown-menu a {
  color: #383637;
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  text-transform: none;
}
header .dropdown .dropdown-menu a:hover {
  background: #3eb3e7;
  color: #fff;
}
header .dropdown:hover .dropdown-menu {
  display: block;
}
header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
header.scrolled .logo .logo-blanco {
  opacity: 0;
}
header.scrolled .logo .logo-color {
  opacity: 1;
}
header.scrolled nav a,
header.scrolled .menu-toggle {
  color: #383637;
}
header.scrolled .menu-toggle {
  background: #196db6 !important;
  color: white !important;
  padding: 5px 10px;
  border-radius: 50px;
}
header.scrolled .dropdown .dropdown-menu a:hover {
  background: #3eb3e7;
  color: #fff;
}

/* MENÚ MÓVIL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #196db6;
  color: #fff;
  padding: 2rem;
  transition: right 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.mobile-menu ul {
  margin-top: 3rem;
}
.mobile-menu ul li {
  margin-bottom: 1rem;
  /* Submenú móvil */
}
.mobile-menu ul li a {
  font-family: "Helvetica Condensed", Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu ul li a:hover {
  color: #fecb32;
}
.mobile-menu ul li.has-submenu {
  position: relative;
  /* flecha solo en primer nivel */
}
.mobile-menu ul li.has-submenu > a::after {
  content: "\f107"; /* caret-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.mobile-menu ul li.has-submenu .submenu {
  display: none;
  margin-top: 0.5rem;
  margin-left: 1rem;
  /* quita flecha de los internos */
}
.mobile-menu ul li.has-submenu .submenu a {
  font-size: 16px;
  color: #fff;
  opacity: 0.9;
}
.mobile-menu ul li.has-submenu .submenu a:hover {
  color: #fecb32;
}
.mobile-menu ul li.has-submenu .submenu li a::after {
  content: none !important;
}
.mobile-menu ul li.has-submenu.open .submenu {
  display: block;
}
.mobile-menu ul li.has-submenu.open > a::after {
  transform: rotate(180deg);
}
.mobile-menu .mobile-buttons .btn {
  width: 100%;
}
.mobile-menu .mobile-flags img {
  width: 28px;
}

/* Redes flotantes */
.social-fixed {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1100;
}
.social-fixed a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}
.social-fixed a.facebook {
  background: #1877f2;
}
.social-fixed a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-fixed a.tiktok {
  background: #000;
}
.social-fixed a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Flecha del submenú móvil */
.mobile-menu > ul > li.has-submenu > a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu > ul > li.has-submenu > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mobile-menu > ul > li.has-submenu.open > a::after {
  transform: rotate(180deg);
}

/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* HERO - Vimeo con texto inferior */
#hero.videoWrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}
#hero.videoWrapper .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#hero.videoWrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
#hero.videoWrapper .hero-content {
  bottom: 15%;
  left: 5%;
  z-index: 3;
  padding: 10px;
  color: #fff;
}
#hero.videoWrapper .hero-content h1 {
  font-family: "Adobe Garamond Pro", serif;
  font-size: 7rem;
  color: #fecb32;
  line-height: 1;
  margin: 0;
  font-style: italic;
}
#hero.videoWrapper .hero-content h2 {
  font-family: "Helvetica Condensed", Arial, sans-serif;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.1rem;
}
#hero.videoWrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
  #hero.videoWrapper .hero-content {
    bottom: 12%;
    left: 4%;
  }
  #hero.videoWrapper .hero-content h1 {
    font-size: calc(56px + 0.6vw);
    margin-bottom: -10px;
  }
  #hero.videoWrapper .hero-content h2 {
    font-size: calc(28px + 1.2vw);
  }
}
@media (max-width: 576px) {
  #hero.videoWrapper .hero-content {
    bottom: 8%;
    left: 4%;
  }
}

/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   POPUPS (PROMO + RESIDENCIA)
   ======================================== */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.popup .popup-content {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 30px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.4s ease forwards;
  margin: 5% auto;
}
.popup .popup-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.popup .popup-content p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}
.popup .popup-content .botones {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.popup .popup-content .botones button {
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup .popup-content .botones button#btn-si {
  background-color: #ffca00;
  color: #000;
}
.popup .popup-content .botones button#btn-si:hover {
  background-color: #e6b800;
}
.popup .popup-content .botones button#btn-no {
  background-color: #00bcd4;
  color: #fff;
}
.popup .popup-content .botones button#btn-no:hover {
  background-color: #009fb6;
}
.popup .popup-content .mensaje-error {
  color: #d32f2f;
  font-size: 0.95rem;
  margin-top: 15px;
  display: none;
}
.popup .popup-content .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 30px;
  color: #444;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
}
.popup .popup-content .close-popup:hover {
  color: #000;
  transform: scale(1.1);
}

/* ===== Animación ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Responsividad ===== */
@media (max-width: 480px) {
  .popup .popup-content {
    padding: 20px;
  }
  .popup .popup-content p {
    font-size: 1.1rem;
  }
  .popup .popup-content .botones {
    flex-direction: column;
    gap: 10px;
  }
  .popup .popup-content .botones button {
    width: 100%;
  }
  .popup .popup-content .close-popup {
    font-size: 26px;
  }
}
/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   CAROUSELS DE EXPERIENCIAS
   ======================================== */
.section-experiencias {
  position: relative;
  overflow: hidden;
}
.section-experiencias .bloque-experiencia {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: dotted 1px #dedede;
  height: 100%;
  overflow: visible;
  /* visible para permitir ver las flechas */
  min-height: 800px;
  /* Flechas — posicionadas respecto al bloque, no al swiper */
  /* Paginación */
}
.section-experiencias .bloque-experiencia .titulo-seccion {
  font-family: "Helvetica Condensed", Arial, sans-serif;
  font-size: 1.3rem;
  color: #383637;
  margin: 0;
  text-transform: uppercase;
}
.section-experiencias .bloque-experiencia .titulo-seccion span {
  font-family: "Adobe Garamond Pro", serif;
  color: #3eb3e7;
  font-style: italic;
  text-transform: none;
  font-size: 1.8rem;
}
.section-experiencias .bloque-experiencia .btn {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  white-space: nowrap;
}
.section-experiencias .bloque-experiencia .btn.btn-amarillo {
  background-color: #fecb32;
  color: #fff;
}
.section-experiencias .bloque-experiencia .btn.btn-amarillo:hover, .section-experiencias .bloque-experiencia .btn.btn-amarillo:active, .section-experiencias .bloque-experiencia .btn.btn-amarillo:focus {
  background-color: #3eb3e7;
  color: #fff;
}
.section-experiencias .bloque-experiencia .btn.btn-celeste {
  background-color: #3eb3e7;
  color: #fff;
}
.section-experiencias .bloque-experiencia .btn.btn-celeste:hover, .section-experiencias .bloque-experiencia .btn.btn-celeste:active, .section-experiencias .bloque-experiencia .btn.btn-celeste:focus {
  background-color: #fecb32;
  color: #fff;
}
.section-experiencias .bloque-experiencia .swiper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 50px;
  position: relative;
  z-index: 1;
  /* para que las flechas queden arriba */
}
.section-experiencias .bloque-experiencia .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.section-experiencias .bloque-experiencia .swiper-slide {
  height: auto;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}
.section-experiencias .bloque-experiencia .card-experiencia {
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
  width: 100%;
}
.section-experiencias .bloque-experiencia .card-experiencia:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.section-experiencias .bloque-experiencia .card-experiencia img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.section-experiencias .bloque-experiencia .card-experiencia .contenido {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
  justify-content: space-between;
}
.section-experiencias .bloque-experiencia .card-experiencia .contenido h4 {
  font-family: "Helvetica Condensed", Arial, sans-serif;
  color: #383637;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.section-experiencias .bloque-experiencia .card-experiencia .contenido p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #383637;
  margin-bottom: 1rem;
}
.section-experiencias .bloque-experiencia .card-experiencia .contenido .precios {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.section-experiencias .bloque-experiencia .card-experiencia .contenido .precios span {
  display: block;
}
.section-experiencias .bloque-experiencia .card-experiencia .contenido a.btn {
  align-self: flex-start;
  margin-top: auto;
}
.section-experiencias .bloque-experiencia .swiper-button-prev,
.section-experiencias .bloque-experiencia .swiper-button-next {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgb(62, 179, 231);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 99;
  /* por encima del swiper */
}
.section-experiencias .bloque-experiencia .swiper-button-prev:hover,
.section-experiencias .bloque-experiencia .swiper-button-next:hover {
  background: #3eb3e7;
  color: #fff;
}
.section-experiencias .bloque-experiencia .swiper-button-prev {
  left: -20px;
}
.section-experiencias .bloque-experiencia .swiper-button-next {
  right: -20px;
}
.section-experiencias .bloque-experiencia .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}
.section-experiencias .bloque-experiencia .swiper-pagination-bullet {
  background: #383637;
  opacity: 0.4;
}
.section-experiencias .bloque-experiencia .swiper-pagination-bullet-active {
  opacity: 1;
  background: #3eb3e7;
}
.section-experiencias .swiper-button-next:after,
.section-experiencias .swiper-button-prev:after {
  font-size: 14px !important;
}
@media (max-width: 992px) {
  .section-experiencias .bloque-experiencia {
    padding: 1rem;
    min-height: 100%;
  }
  .section-experiencias .swiper-button-prev,
  .section-experiencias .swiper-button-next {
    display: none !important;
  }
  .section-experiencias .swiper-pagination {
    display: block;
  }
}
.section-experiencias .swiper-button-prev {
  left: 15px !important;
}
.section-experiencias .swiper-button-next {
  right: 15px !important;
}

/* ========================================
   CAROUSEL INDEX
   ======================================== */
.section-carousel {
  position: relative;
  background-color: #fff;
}

.section-carousel .carousel-inner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.section-carousel .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #00AEEF;
  opacity: 0.5;
}

.section-carousel .carousel-indicators .active {
  opacity: 1;
}

.section-carousel .carousel-control-prev-icon,
.section-carousel .carousel-control-next-icon {
  filter: invert(100%);
  width: 2rem;
  height: 2rem;
}

.section-carousel .carousel-control-next {
  right: 10px;
}

.section-carousel .carousel-control-prev {
  left: 10px;
}

.section-carousel .carousel-control-prev,
.section-carousel .carousel-control-next {
  width: 8%;
}

.section-carousel .carousel-control-prev,
.section-carousel .carousel-control-next {
  width: 46px;
  height: 46px;
  background: #3eb3e7;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 1;
}

.section-carousel .carousel-control-prev:hover,
.section-carousel .carousel-control-next:hover {
  background: #383637;
}

.section-carousel .carousel-control-prev-icon,
.section-carousel .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  filter: brightness(0) invert(1);
}

.section-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.section-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .section-carousel .carousel-control-prev,
  .section-carousel .carousel-control-next {
    width: 12%;
  }
}
/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   SECCIÓN NUEVOS PASEOS
   ======================================== */
.promo-nuevos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 5rem 0;
}
.promo-nuevos .promo-img {
  position: relative;
  flex: 1;
}
.promo-nuevos .promo-img:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 4px solid #ff2579;
  z-index: -1;
}
.promo-nuevos .promo-contenido {
  flex: 1;
}
.promo-nuevos .promo-contenido h2 {
  color: #ff2579;
  font-family: "Helvetica Condensed", Arial, sans-serif;
  font-size: 2rem;
}
.promo-nuevos .promo-contenido h2 span {
  color: #383637;
}
.promo-nuevos .promo-contenido ul {
  margin-top: 1rem;
}
.promo-nuevos .promo-contenido ul li {
  margin-bottom: 0.5rem;
}

/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   BLOQUE DE VIDEOS
   ======================================== */
.section-videos .video-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.section-videos .video-item img {
  width: 100%;
  transition: transform 0.5s ease;
}

.section-videos .video-item:hover img {
  transform: scale(1.1);
}

.section-videos h1 {
  margin-bottom: 0px;
}

.section-videos h1 span {
  font-family: "Adobe Garamond Pro", serif;
  color: #3eb3e7;
  font-style: italic;
  text-transform: none;
  font-size: 2.8rem;
}

.section-videos .subtitle {
  text-align: center;
  background-color: #3eb3e7;
  text-transform: uppercase;
  padding: 5px;
  letter-spacing: 2px;
  display: table;
  margin: 0 auto;
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

#videoModal .modal-content {
  background: transparent;
  box-shadow: none;
}

#videoModal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   FOOTER
   ======================================== */
/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background-color: #196db6;
  color: #fff;
  /* LOGOS INFERIORES */
  /* COPYRIGHT */
  /* RESPONSIVE */
}
footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}
footer p,
footer a {
  font-size: 14px;
  line-height: 1.5;
}
footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #d1e4ff;
}
footer i {
  color: #fff;
  font-size: 14px;
  width: 18px;
}
footer #lower-foot {
  background: #fff;
  padding: 20px 0;
}
footer #lower-foot a {
  display: inline-block;
  transition: transform 0.3s ease;
}
footer #lower-foot a:hover {
  transform: translateY(-3px);
}
footer #lower-foot a img {
  height: 50px;
  filter: grayscale(100%) brightness(1);
  opacity: 1;
  transition: all 0.4s ease;
}
footer #lower-foot a:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
footer .bg-danger {
  background-color: #3eb3e7 !important;
}
footer .bg-danger a {
  font-size: 10px;
  color: #fff !important;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}
footer .bg-danger a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  footer .row > div {
    text-align: center;
  }
  footer i {
    display: none;
  }
  footer h5 {
    margin-top: 20px;
  }
}

/* ========================================
   STURLA VIAJES - ARCHIVO MADRE
   ======================================== */
/* ========================================
   MEDIA QUERIES
   ======================================== */
@media (max-width: 1715px) {
  /* Oculta los links del menú desktop */
  header .main-nav ul {
    display: none !important;
  }
  /* Muestra botones y flags siempre */
  header .main-nav .lang-buttons {
    display: flex !important;
  }
  /* Asegura que el botón hamburguesa también se vea */
  header .menu-toggle {
    display: block !important;
  }
}
@media (max-width: 1360px) {
  header nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
@media (max-width: 992px) {
  .promo-nuevos {
    flex-direction: column;
    text-align: center;
  }
  .videos-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   HEADER MOBILE FIX
   ========================================================= */
@media (max-width: 991px) {
  body {
    padding-top: 95px;
  }
  header {
    background-color: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  header .logo .logo-blanco {
    opacity: 0 !important;
  }
  header .logo .logo-color {
    opacity: 1 !important;
  }
  header nav ul li a {
    color: #333 !important;
  }
  header .menu-toggle {
    color: #333 !important;
  }
  .section-experiencias .bloque-experiencia .swiper-button-prev, .section-experiencias .bloque-experiencia .swiper-button-next {
    top: 33%;
  }
}/*# sourceMappingURL=style.css.map */