:root {
  --primario: #0d3f5e;
  --secundario: #8dd9fd;
  --negro: #111111;
  --blanco: #ffffff;
  --border-radius: 15px;
  --text-shadow: 0px 8px 16px rgba(0, 0, 0, 0.486),
    /* Abajo */ /* 0px -8px 16px rgba(0, 0, 0, 0.486), */ /* Arriba */ 8px 0px
      16px rgba(0, 0, 0, 0.486),
    /* Derecha */ -8px 0px 16px rgba(0, 0, 0, 0.486); /* Izquierda */
  --sombra: 0 10px 20px 5px rgba(255, 255, 255, 0.626);
  --sombra-light: 0 10px 20px 5px rgba(255, 255, 255, 0.866);
  --sombra-sliders: 0 10px 20px 5px rgba(252, 252, 252, 0.867);
  --transition: all 0.5s ease;
  /* Tipografía */
  --font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: 300;
}
h2 {
  font-size: 1.3rem;
  font-weight: 300;
}
button {
  color: var(--secundario);
  background-color: #000000cf;
  border: 1px solid var(--secundario);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-shadow: 0.5px 0.5px 0.5px white;
  transition: var(--transition);
  &:hover {
    color: var(--blanco);
    background-color: var(--secundario);
    transform: scale(1.1);
    transition: var(--transition);
  }
  & i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    font-weight: bold;
  }
}
.button {
  color: var(--secundario);
  background-color: #000000cf;
  border: 1px solid var(--secundario);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-shadow: 0.5px 0.5px 0.5px white;
  transition: var(--transition);
  &:hover {
    color: var(--blanco);
    background-color: var(--secundario);
    transform: scale(1.1);
    transition: var(--transition);
  }
  & i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    font-weight: bold;
  }
}

body {
  background-color: var(--blanco);
  color: var(--primario);
  font-family: var(--font-family);
  width: 100%;
  overflow-x: hidden;
  position: relative;
  display: flex;
}
/* ******************************************* */
/* *---*************- BLOQUE IZQUIERDO CON MENÚ DE NAVEGACIÓN */
/* ******************************************* */
.header {
  position: fixed;
  top: 0.5rem;
  right: 0;
  width: 100%;
  height: 3rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  z-index: 4;
  @media (width>=960px) {
    right: 52dvw;
  }
  & div {
    color: var(--secundario);
    & a:hover {
      color: var(--blanco);
      transform: scale(1.1);
      transition: var(--transition);
    }
  }
  .banderas {
    display: flex;
    gap: 1rem;
    transition: var(--transition);
  }
  .idioma {
    width: 2.6rem;
    height: 2.6rem;
  }
  & a {
    transition: var(--transition);
    &:hover {
      transform: scale(1.1);
    }
  }
  & i {
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
    border: 1px solid var(--primario);
    border-radius: 50%;
    color: var(--primario);
    background-color: var(--secundario);
    /* centrar el i */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);

    &:hover {
      color: var(--blanco);
      border: 1px solid var(--blanco);
      background-color: var(--primario);
      transform: scale(1.1);
      transition: var(--transition);
    }
  }
  .boton_whatsapp {
    font-size: 2.6rem;
    color: white;
    background-color: #00eb63;
    border: none;
    padding: 0;
    &:hover {
      color: #00eb63;
      background-color: var(--blanco);
      transform: scale(1.1);
      transition: var(--transition);
    }
  }

  /* *Tooltips */
  .tooltip0,
  .tooltip1,
  .tooltip2,
  .tooltip3,
  .tooltip4,
  .tooltip5,
  .tooltip6,
  .tooltip7 {
    position: relative;
  }
  .tooltip0::after,
  .tooltip1::after,
  .tooltip2::after,
  .tooltip3::after,
  .tooltip4::after,
  .tooltip5::after,
  .tooltip6::after,
  .tooltip7::after {
    position: absolute;
    right: 0.1rem;
    top: 3rem;
    background-color: var(--primario);
    color: var(--blanco);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--blanco);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: opacity 0.3s linear;
    white-space: nowrap;
  }
  .tooltip0::after {
    content: "WhatsApp";
  }
  .tooltip1::after {
    content: "Llámenos";
  }
  .tooltip2::after {
    content: "Contacto";
  }
  .tooltip3::after {
    content: "English";
  }
  .tooltip4::after {
    content: "Español";
  }
  .tooltip5::after {
    content: "Instagram";
  }
  .tooltip6::after {
    content: "Google Reviews";
  }
  .tooltip7::after {
    content: "Google Maps";
  }
  .tooltip0:hover::after,
  .tooltip1:hover::after,
  .tooltip2:hover::after,
  .tooltip3:hover::after,
  .tooltip4:hover::after,
  .tooltip5:hover::after,
  .tooltip6:hover::after,
  .tooltip7:hover::after {
    opacity: 1;
  }
}
/* ************************************* */
.left {
  width: 50dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sombra);
  z-index: 1;
  background-color: var(--blanco);
  @media (width <= 960px) {
    width: 100dvw;
    position: inherit;
    height: 80dvh;
  }
}

ul {
  position: fixed;
  display: flex;
  flex-direction: column;
  color: var(--blanco);
  font-weight: 500;
  text-shadow: var(--text-shadow);
  text-align: left;
  line-height: 3rem;
  margin-top: 20dvh;
  margin-left: 5dvw;
  @media (width <= 960px) {
    line-height: 2.4rem;
    margin-left: 5vw;
  }
}

ul li {
  /* Estilos base para los li */
  transform: translateX(0);
  transition: var(--transition);

  & i {
    font-size: 2rem;
    margin-right: 1rem;
    @media (width <= 1140px) {
      font-size: 1.6rem;
    }
  }

  & span {
    font-size: 2rem;
    @media (width <= 1140px) {
      font-size: 1.6rem;
    }
  }
}

ul li:hover {
  /* Estilos SOLO para el hover */
  color: var(--secundario);
  font-weight: 700;
  transform: translateX(3vw) scale(1.1);
  text-shadow: var(--text-shadow);
  cursor: pointer;
}
.ahorre {
  font-size: 1.2rem;
}

.footer {
  padding-right: 1rem;
  color: var(--blanco);
  text-shadow: var(--text-shadow);
  font-size: 1rem;
  font-weight: bold;
  position: fixed;
  bottom: 3rem;
  left: 10%;
  z-index: 2;
  @media (width <= 960px) {
    left: 3rem;
    bottom: 25dvh;
  }
  & i {
    color: var(--primario);
    margin-right: 0.5rem;
  }
}
.redes {
  font-size: 2rem;
  padding: 0.3rem;
}

.logo {
  width: 18rem;
  position: fixed;
  top: 3rem;
  left: 1rem;
  filter: drop-shadow(1px 1px 1px var(--negro));
  opacity: 1;
  @media (width <= 960px) {
    width: 13rem;
  }
  &:hover {
    filter: drop-shadow(2px 2px 2px #f7f7f6);
    transition: all 1s ease;
  }
}

/* ******************************************** */
/* * ---------------*********************-------BLOQUE DERECHO */
/* ******************************************** */
.barra-scroll {
  position: fixed; /* Fija la posición del elemento en la ventana del navegador */
  top: 0; /* Fija la posición del elemento en la parte superior de la ventana */
  width: 50vw; /* Ocupa el 100% del ancho de la ventana */
  height: 0.4rem; /* Altura de 8 píxeles */
  box-shadow: var(--sombra);
  background-color: var(--secundario);
  z-index: 3; /* Asegura que el elemento se superponga a otros elementos con un z-index menor */
  scale: 0 1; /* Escala inicial: 0 en el eje X (invisible), 1 en el eje Y (sin cambios) */
  transform-origin: left; /* El punto de origen de la transformación está en el borde izquierdo */
  animation: barra-scroll linear; /* Aplica la animación barra-scroll con una progresión lineal */
  animation-timeline: scroll();
  @media (width<=960px) {
    width: 100vw;
  }
}

@keyframes barra-scroll {
  to {
    scale: 1 1; /* La animación cambia la escala en el eje X de 0 a 1, haciendo que la barra se expanda horizontalmente */
  }
}

.right {
  width: 50dvw;
  background-color: var(--blanco);
  background-image: url(/images/fondo.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: inset 0px 10px 20px 5px rgba(255, 255, 255, 0.844);
  @media (width<960px) {
    width: 100dvw;
    margin-top: 80dvh;
    z-index: 3;
    background-attachment: scroll;
    background-size: 300%;
    background-repeat: repeat;
  }
  .intro {
    background-image: url(/images/ing4.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--secundario);
    width: 90%;
    margin: 1rem auto;
    padding: 2rem;
    text-align: center;
    border: 6px solid var(--blanco);
    border-radius: var(--border-radius);
    box-shadow: var(--sombra);
    text-shadow: var(--text-shadow);
    @media (width<960px) {
      width: 100%;
      padding: 1rem 0.5rem;
    }
    & h1 {
      margin: 1rem 0;
    }
    & h2 {
      color: var(--blanco);
    }
    & .servicios {
      padding: 3rem 2rem;
      display: flex;
      gap: 2rem;
      @media (width<960px) {
        padding: 3rem 0.5rem;
        gap: 1rem;
      }
      & i {
        font-size: 2.2rem;
        padding: 1rem;
        text-shadow: 2px 2px 2px var(--negro);
      }
      & p {
        color: var(--blanco);
        font-size: 1rem;
      }
    }
  }

  /* ******************************************* */

  .hero {
    width: 90%;
    height: 40dvh;
    margin: 1rem auto;
    position: relative;
    background-image: url("/images/ing5.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 6px solid var(--blanco);
    border-radius: var(--border-radius);
    box-shadow: var(--sombra);
    text-shadow: var(--text-shadow);
    animation: magic linear;
    animation-timeline: view();
    animation-range: exit;
    .titulo-hero {
      width: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      text-align: center;
      transform: translate(-50%, -50%);
      /* ADAPTAR EL TAMAÑO DEL TEXTO clamp */
      font-size: clamp(2rem, 5vw + 1rem, 3rem);
      padding: 1rem;
      font-weight: bold;
      color: var(--blanco);
      opacity: 1;
      z-index: 2;
    }
  }
  .hero1 {
    background-image: url("/images/equip3.webp");
  }
  .hero2 {
    background-image: url("/images/car2.webp");
  }
  .hero3 {
    background-image: url("/images/bici4.webp");
  }
  .hero4 {
    background-image: url("/images/exp3.webp");
  }
  .hero5 {
    background-image: url("/images/lanza4.webp");
  }
  .hero6 {
    background-image: url("/images/exp10.webp");
  }

  @keyframes magic {
    from {
      opacity: 1;
      scale: 1;
    }

    to {
      opacity: 0;
      scale: 3;
    }
  }

  .presentacion {
    width: 90%;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: var(--sombra);
    border: 6px solid var(--blanco);
    border-radius: var(--border-radius);
    background-image: url("/images/arena.webp");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    white-space: pre-line;
    & h1 {
      font-size: 1.5rem;
      font-weight: bold;
    }
    & h2 {
      padding: 0.2rem 0 1rem;
    }
  }
  .logo-icon {
    width: 15rem;
    margin: 3rem auto;
    filter: drop-shadow(1px 1px 5px #9a9999);
    @media (prefers-reduced-motion: no-preference) {
      animation: fadeIn linear;
      animation-timeline: view();
      animation-range-start: 0px;
      animation-range-end: 80dvh;
      @keyframes fadeIn {
        to {
          opacity: 1;
        }
      }
    }
  }
}
.precios {
  width: 90%;
  margin: 2rem auto;
  padding: 0.2rem;
  box-shadow: var(--sombra);
  border: 6px solid var(--blanco);
  border-radius: var(--border-radius);
  background-image: url("/images/arena.webp");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

/* ******************************************* */
/* fadeIn - En el <body> de cada página */
.fade-in {
  animation: fadeIn ease 2s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ******************************************* */
.frase {
  color: var(--blanco);
  text-shadow: var(--text-shadow);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
  padding: 2rem 10%;
}

/* ******************************** */
/** FOOTER */
/* ******************************** */
.footer-cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  padding: 2rem 0 4rem;
  background-image: url("/images/footer.webp");
  background-size: cover;
  background-position: center top;
  color: var(--blanco);
  border-top: 0.4rem solid var(--secundario);
  box-shadow: inset 0px 10px 20px 5px rgba(209, 209, 209, 0.813);
  & img {
    width: 10rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(1px 1px 1px var(--negro));
  }
  & h2 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem;
  }
  .redes {
    display: flex;
    gap: 1rem;
    & img {
      width: 2rem;
      cursor: pointer;
    }
  }
  .politicas {
    display: flex;
    padding: 0.2rem 0 1rem;
    & a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--secundario);
      text-align: center;
      margin: 0 0.3rem;
      cursor: pointer;
      @media screen and (max-width: 875px) {
        font-size: 0.8rem;
      }
      &:hover {
        text-decoration: underline;
      }
    }
  }
  & p {
    font-size: 0.9rem;
    text-align: center;
    .anio {
      font-size: 0.8rem;
    }
    & a {
      color: var(--secundario);
      font-size: 0.8rem;
      font-weight: 600;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}

/* ************************************* */
/* ********************************** SLIDER HOME ******* */
/* ************************************* */
.cont-slider {
  position: fixed;
  width: 50%;
  height: 100vh;
  overflow: hidden;
  @media (width <= 960px) {
    width: 100%;
    height: 80dvh;
  }
}

.slider {
  display: flex;
  width: 1600%;
  /* 16 imágenes = 1600% del ancho */
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  width: 6.25%;
  /* 16 imágenes = 6.25% del ancho cada una */
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Imágenes ALQUILER DE BICICLETAS */
.slide:nth-child(1),
.slide:nth-child(5),
.slide:nth-child(9) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/bici1.webp");
}

.slide:nth-child(2),
.slide:nth-child(6),
.slide:nth-child(10) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/bici2.webp");
}

.slide:nth-child(3),
.slide:nth-child(7),
.slide:nth-child(11) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/bici3.webp");
}

.slide:nth-child(4),
.slide:nth-child(8),
.slide:nth-child(12) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/bici4.webp");
}

/* Imágenes de fondo EQUPAMIENTO*/
.slide-equipamiento:nth-child(1),
.slide-equipamiento:nth-child(5),
.slide-equipamiento:nth-child(9) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/equip1.webp");
}

.slide-equipamiento:nth-child(2),
.slide-equipamiento:nth-child(6),
.slide-equipamiento:nth-child(10) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/equip2.webp");
}

.slide-equipamiento:nth-child(3),
.slide-equipamiento:nth-child(7),
.slide-equipamiento:nth-child(11) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/equip4.webp");
}

.slide-equipamiento:nth-child(4),
.slide-equipamiento:nth-child(8),
.slide-equipamiento:nth-child(12) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/equip6.webp");
}
/* Imágenes de fondo EXPERIENCIAS*/
.slide-experiencias:nth-child(1),
.slide-experiencias:nth-child(5),
.slide-experiencias:nth-child(9) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp12.webp");
}

.slide-experiencias:nth-child(2),
.slide-experiencias:nth-child(6),
.slide-experiencias:nth-child(10) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp2.webp");
}

.slide-experiencias:nth-child(3),
.slide-experiencias:nth-child(7),
.slide-experiencias:nth-child(11) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp3.webp");
}

.slide-experiencias:nth-child(4),
.slide-experiencias:nth-child(8),
.slide-experiencias:nth-child(12) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp4.webp");
}

/* Imágenes de fondo EXPERIENCIAS2*/
.slide-experiencias2:nth-child(1),
.slide-experiencias2:nth-child(5),
.slide-experiencias2:nth-child(9) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp10.webp");
}

.slide-experiencias2:nth-child(2),
.slide-experiencias2:nth-child(6),
.slide-experiencias2:nth-child(10) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp11.webp");
}

.slide-experiencias2:nth-child(3),
.slide-experiencias2:nth-child(7),
.slide-experiencias2:nth-child(11) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp13.webp");
}

.slide-experiencias2:nth-child(4),
.slide-experiencias2:nth-child(8),
.slide-experiencias2:nth-child(12) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/exp20.webp");
}

/* Imágenes de fondo EXCURSIONES */
.slide-excursiones:nth-child(1),
.slide-excursiones:nth-child(5),
.slide-excursiones:nth-child(9) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/lanza1.webp");
}

.slide-excursiones:nth-child(2),
.slide-excursiones:nth-child(6),
.slide-excursiones:nth-child(10) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/lanza2.webp");
}

.slide-excursiones:nth-child(3),
.slide-excursiones:nth-child(7),
.slide-excursiones:nth-child(11) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/lanza3.webp");
}

.slide-excursiones:nth-child(4),
.slide-excursiones:nth-child(8),
.slide-excursiones:nth-child(12) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/lanza4.webp");
}
/* Imágenes de fondo COCHES Y MOTOS */
.slide-cars:nth-child(1),
.slide-cars:nth-child(5),
.slide-cars:nth-child(9) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/car1.webp");
}

.slide-cars:nth-child(2),
.slide-cars:nth-child(6),
.slide-cars:nth-child(10) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/moto1.webp");
}

.slide-cars:nth-child(3),
.slide-cars:nth-child(7),
.slide-cars:nth-child(11) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/car4.webp");
}

.slide-cars:nth-child(4),
.slide-cars:nth-child(8),
.slide-cars:nth-child(12) {
  background-image: linear-gradient(
      40deg,
      #ffffffab,
      #00000020,
      #00000020,
      #00000020,
      #ffffffab
    ),
    url("/images/moto2.webp");
}

/* **************************************** */
/** LIGHTBOX POLITICAS */
/* **************************************** */
.light-politicas {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000cf;
  backdrop-filter: blur(10px);
  z-index: 15;
  display: none;
  white-space: pre-line;
  animation: fadeIn 1s;
  .cerrar {
    font-size: 2rem;
    border: none;
    position: absolute;
    top: 1rem;
    right: 2rem;
    background-color: transparent;
    cursor: pointer;
    animation: fadeIn 1s;
    transition: var(--transition);
    &:hover {
      transform: scale(1.1);
    }
  }
  .textos-politicas {
    background-image: url("/images/arena.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    height: 80vh;
    overflow-y: scroll;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--sombra-sliders);
  }
}
/* .qr-denuncias {
  width: 8rem;
  margin: 2rem auto;
} */
.lightbox-activo {
  display: block;
  transition: var(--transition);
}

/* ************************ */
/* * FORMULARIO DE CONTACTO */
/* ************************ */
.container {
  color: var(--blanco);
  background-image: linear-gradient(40deg, #000, transparent, #000),
    url("/images/fondo.webp");
  background-size: cover;
  background-repeat: no-repeat;
  width: 60vw;
  height: 80vh;
  margin: 3rem auto;
  overflow-y: scroll;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--sombra-sliders);
  z-index: 50;
  @media screen and (max-width: 875px) {
    width: 95%;
  }
}
.sec_reservas {
  width: 100%;
  flex-basis: 180%;
  margin-right: 30px;
}
.formulario {
  margin-top: 20px;
}
#requerimientos {
  resize: none;
}
input[type="text"],
textarea {
  width: 100%;
  min-width: 100%;
  padding: 6px;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 6px;
  resize: vertical;
}
input[type="email"] {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 6px;
}
input[type="tel"] {
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 6px;
}
input[type="date"],
select {
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 3px;
  color: gray;
}
.cont_captcha {
  margin: -2rem auto;
}
.submit_button {
  color: var(--secundario);
  background-color: #000000cf;
  border: 1px solid var(--secundario);
  border-radius: var(--border-radius);
  margin: 1rem auto;
  padding: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-shadow: 0.5px 0.5px 0.5px white;
  transition: var(--transition);
  &:hover {
    color: var(--blanco);
    background-color: var(--secundario);
    transform: scale(1.1);
    transition: var(--transition);
  }
}
.privacidad-info {
  font-size: 0.8rem;
}
.naranja {
  color: var(--secundario);
}

/* ******************************** */
/** BANER DE POLÍTICA DE COOKIES */
/* ******************************** */
#cookieNotice {
  background-color: #eeeaea;
  color: gray;
  display: block;
  box-sizing: border-box;
  position: fixed;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
  font-family: inherit;
  z-index: 2;
}
#cookieNotice.display-left {
  left: 20px;
  bottom: 90px;
  width: 370px;
  max-width: 80vw;
}
#saber {
  color: gray;
  font-size: 15px;
  font-weight: 200;
  text-decoration: underline;
  padding-top: 20px;
}
.btn-primary {
  background-color: #5880e1;
  color: white;
  border: none;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  margin: 20px 0 0;
  cursor: pointer;
}

/* ? ************************ */
/* ?  ************************** PAGINA COCHES y MOTOS */
/* ? ************************ */
.grid {
  width: 90%;
  height: 100vh;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--sombra);
  background-image: url("/images/arena.webp");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr, 1fr, 1fr;
  gap: 1rem;
  grid-template-areas:
    "uno uno dos"
    "tres cuatro dos"
    "cinco cuatro dos"
    "seis seis siete";
  @media (width<=960px) {
    padding: 0.5rem;
  }
  .uno,
  .dos,
  .tres,
  .cuatro,
  .cinco,
  .seis,
  .siete {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--border-radius);
    color: var(--blanco);
    box-shadow: var(--sombra);
    transition: var(--transition);
    &:hover {
      transform: scale(1.03);
    }
  }
  .uno {
    grid-area: uno;
    background-image: linear-gradient(
        40deg,
        #ffffffba,
        transparent,
        transparent
      ),
      url("/images/car1.webp");
  }
  .dos {
    grid-area: dos;
    background-image: linear-gradient(
        40deg,
        #ffffffb8,
        transparent,
        transparent
      ),
      url("/images/moto3.webp");
  }
  .tres {
    grid-area: tres;
    background-image: linear-gradient(
        40deg,
        #ffffffb1,
        transparent,
        transparent
      ),
      url("/images/moto2.webp");
  }
  .cuatro {
    grid-area: cuatro;
    background-image: linear-gradient(
        40deg,
        #ffffffb8,
        transparent,
        transparent
      ),
      url("/images/car4.webp");
  }
  .cinco {
    grid-area: cinco;
    background-image: linear-gradient(
        40deg,
        #ffffffb8,
        transparent,
        transparent
      ),
      url("/images/car3.webp");
  }
  .seis {
    grid-area: seis;
    background-image: linear-gradient(
        40deg,
        #ffffffb5,
        transparent,
        transparent
      ),
      url("/images/moto1.webp");
  }
  .siete {
    grid-area: siete;
    background-image: linear-gradient(
        40deg,
        #ffffffbe,
        transparent,
        transparent
      ),
      url("/images/car2.webp");
  }
}

.contactar {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  & button {
    box-shadow: var(--sombra);
  }
}

/* ? ************************ */
/* ?  ************************** PAGINA EXCURSIONES */
/* ? ************************ */
.grid-proyectos {
  width: 90%;
  margin: 2rem auto;
  box-shadow: var(--sombra);
  background-image: url("/images/arena.webp");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));

  & div {
    width: 100%;
    height: 15rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    &:hover {
      transform: scale(1.02);
    }
    & img {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 0.5rem;
      object-fit: cover;
      box-shadow: var(--sombra);
    }
    & h2 {
      position: absolute;
      width: 60%;
      padding: 1rem;
      background-color: #0000004c;
      text-shadow: var(--text-shadow);
      z-index: 1;
    }
    & i {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
      font-size: 2rem;
      text-shadow: var(--text-shadow);
      color: var(--blanco);
      cursor: pointer;
      transition: var(--transition);
      z-index: 1;
      &:hover {
        color: var(--secundario);
      }
    }
  }
}

/** Slider de EXCURSIONES */
.logo-slider {
  width: 18rem;
  position: fixed;
  top: 1rem;
  left: 1rem;
  filter: drop-shadow(1px 1px 1px var(--negro));
  opacity: 1;
  @media (width <= 960px) {
    width: 15rem;
  }
}
.container-proyectos {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  & h2 {
    color: var(--blanco);
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin: 1rem 0;
    @media (width<=960px) {
      font-size: 1.5rem;
    }
  }
  & img {
    width: 100%;
    height: 60vh;
    box-shadow: var(--sombra-sliders);
  }
  & div {
    padding: 2rem;
    display: flex;
    gap: 1rem;
  }
  .button-slider1,
  .button-slider2 {
    font-size: 2rem;
    color: var(--blanco);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    &:hover {
      color: var(--secundario);
    }
  }
}

/* ? ************************ */
/* ?  ************************** PAGINA EXPERIENCIAS  */
.delegada {
  max-width: 22rem;
  margin: 0 auto;
  padding: 4rem 0;
  @media (prefers-reduced-motion: no-preference) {
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 0px;
    animation-range-end: 80dvh;
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
  }
}

.logo-icon {
  width: 10rem;
  margin: 3rem auto;
  filter: drop-shadow(1px 1px 5px var(--negro));
  @media (prefers-reduced-motion: no-preference) {
    animation: fadeIn linear;
    animation-timeline: view();
    animation-range-start: 0px;
    animation-range-end: 80dvh;
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
  }
}
/* * Sección flyer scroll horizontal NO ESTÁ ACTIVO */
.flyer {
  width: 90%;
  margin: 0 auto;
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
  border-radius: var(--border-radius);
  box-shadow: var(--sombra);
  background-image: url("/images/arena.webp");
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-overflow-scrolling: touch; /* Desplazamiento suave para Para iOS */
  overscroll-behavior-x: contain; /* Propiedad moderna estándar */
  scroll-snap-type: x mandatory; /* Para un desplazamiento preciso entre imágenes */
}

.flyer-img {
  height: 70vh; /* Altura fija como solicitaste */
  width: auto; /* El ancho se ajustará proporcionalmente */
  flex: 0 0 auto; /* No crecer, no encoger, base automática */
  scroll-snap-align: center; /* Para que las imágenes se alineen al centro durante el scroll */
  object-fit: cover; /* Mantiene la proporción de la imagen */
  border-radius: var(--border-radius); /* Bordes redondeados */
  box-shadow: var(--sombra); /* Sombra consistente con tu diseño */
}
/* ********************************** */

/* ************************** */
/* ******************   EXPERIENCIAS, CARD E IMAGEN FLYER */
/* ************************* */
.cont-precios-experiencias {
  width: 90%;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--blanco);
  border-radius: var(--border-radius);
  box-shadow: var(--sombra);
  background-image: url("/images/ing5.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  .card-experiencia {
    white-space: pre-wrap;
    background-image: url("/images/arena.webp");
    border: 6px solid var(--blanco);
    border-radius: var(--border-radius);
    box-shadow: var(--sombra);
    text-align: center;
    .img-experiencia {
      width: 100%;
      height: 10rem;
      border-radius: 10px 10px 0 0;
      box-shadow: var(--sombra);
      object-fit: cover;
    }
    & p {
      font-size: 1rem;
      padding: 0.5rem;
    }
  }

  .flyer-img-info {
    background-image: url("/images/arena.webp");
    width: 100%;
    height: auto;
    margin-top: 1rem;
    padding: 3%;
    border-radius: var(--border-radius);
    border: 6px solid var(--blanco);
    box-shadow: var(--sombra);
    display: flex;
    justify-content: center;
    align-items: center;
    @media (width > 960px) {
      padding: 10%;
    }
    & img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      @media (width > 960px) {
        width: 80%;
      }
    }
  }
  .icono {
    width: 3rem;
    max-width: 10rem;
    margin: 2rem auto;
    filter: drop-shadow(1px 1px 5px var(--negro));
  }
}

.grid-experiencias {
  width: 90%;
  height: 60vh;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--sombra);
  background-image: url("/images/arena.webp");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr, 1fr, 1fr;
  gap: 1rem;
  grid-template-areas:
    "tres cuatro dos"
    "cinco cuatro dos"
    "seis seis siete";
  @media (width<=960px) {
    padding: 0.5rem;
  }
  .dos,
  .tres,
  .cuatro,
  .cinco,
  .seis,
  .siete {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--border-radius);
    color: var(--blanco);
    box-shadow: var(--sombra);
    transition: var(--transition);
    &:hover {
      transform: scale(1.03);
    }
  }
  .dos {
    grid-area: dos;
    background-image: linear-gradient(
        40deg,
        #ffffffb8,
        transparent,
        transparent
      ),
      url("/images/exp5.webp");
  }
  .tres {
    grid-area: tres;
    background-image: linear-gradient(
        40deg,
        #ffffffb1,
        transparent,
        transparent
      ),
      url("/images/exp8.webp");
  }
  .cuatro {
    grid-area: cuatro;
    background-image: linear-gradient(
        40deg,
        #ffffffb8,
        transparent,
        transparent
      ),
      url("/images/exp10.webp");
  }
  .cinco {
    grid-area: cinco;
    background-image: linear-gradient(
        40deg,
        #ffffffb8,
        transparent,
        transparent
      ),
      url("/images/exp4.webp");
  }
  .seis {
    grid-area: seis;
    background-image: linear-gradient(
        40deg,
        #ffffffb5,
        transparent,
        transparent
      ),
      url("/images/exp2.webp");
  }
  .siete {
    grid-area: siete;
    background-image: linear-gradient(
        40deg,
        #ffffffbe,
        transparent,
        transparent
      ),
      url("/images/exp6.webp");
  }
}

/* ******************************** */
/** BANER DE POLÍTICA DE COOKIES */
/* ******************************** */
#cookieNotice {
  background-color: #000000cf;
  color: var(--blanco);
  display: block;
  box-sizing: border-box;
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  width: 70%;
  min-width: 16rem;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
  font-family: inherit;
  z-index: 5;
}

#saber {
  color: gray;
  font-size: 15px;
  font-weight: 200;
  text-decoration: underline;
  padding-top: 20px;
}
.btn-primary {
  background-color: #5880e1;
  color: white;
  border: none;
  width: 60%;
  padding: 8px;
  font-size: 16px;
  margin: 20px;
  cursor: pointer;
}

.llegar {
  text-decoration: underline;
  color: var(--primario);
}

/** PÁGINA  gracias.html */
.ok {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 50rem;
  margin: 2rem auto;
  padding: 10vh 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--sombra);
  background-image: linear-gradient(
      40deg,
      transparent,
      var(--primario),
      transparent
    ),
    url("/images/fondo.webp");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  & img {
    width: 50vw;
    max-width: 20rem;
    margin-bottom: 2rem;
  }
  & h1 {
    color: var(--blanco);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    @media (width<=960px) {
      font-size: 1.1rem;
    }
  }
  & a {
    color: var(--secundario);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: underline;
    @media (width<=960px) {
      font-size: 1rem;
    }
  }
}
