@charset "UTF-8";
/* Sass Document */
* {
  box-sizing: border-box;
}
*::-moz-selection {
  background: #f1f1f2;
  color: #5c5c5c;
}
*::selection {
  background: #f1f1f2;
  color: #5c5c5c;
}

body {
  font-size: 16px;
  line-height: 22px;
  overflow-x: hidden !important;
  background: #fff;
  color: #002340;
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: url("../images/arrow-cursor-icono.png"), auto;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
  color: #002340;
}
a:hover {
  text-decoration: none;
  color: #002340;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  html, body {
    overflow-x: initial;
  }
}

/*------------------------------------base-------------------------------------*/
.blanco {
  color: #fff;
}

.claro {
  color: #0167B2;
}

.medio {
  color: #002340;
}

.obscuro {
  color: #00101D;
}

.aqua {
  color: #01A1BB;
}

.bg-blanco {
  background: #fff;
}

.bg-claro {
  background: #0167B2;
}

.bg-medio {
  background: #002340;
}

.bg-obscuro {
  background: #00101D;
}

.bg-aqua {
  background: #01A1BB;
}

.bg-gris {
  background: #d8d8d8;
}

[text-split] {
  opacity: 0;
}

html [text-split] {
  opacity: 1;
}

.word {
  opacity: 1;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  transform-origin: bottom;
}

.container-fluid {
  padding: 0 4rem;
}

.espacio {
  padding: 11% 0;
}

.f12 {
  font-size: 12px;
}

.bold {
  font-weight: 700;
}

.titulo {
  font-size: 30px;
  font-weight: 700;
}

.subtitulo {
  font-size: 22px;
  font-weight: 700;
}

/*------------------------------------fin base-------------------------------------*/
.w-btn-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #fff;
  width: 40px;
  height: 40px;
  opacity: 1;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar {
  background: rgb(0, 16, 29);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10;
  transform: translateY(-50px);
  opacity: 0;
}
.navbar-nav {
  color: #fff;
}
.navbar-nav a {
  color: #fff;
}
.navbar .nav-item {
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
}
.navbar .nav-link {
  opacity: 0.7;
  transition: all 0.4s ease;
}
.navbar .nav-link:hover {
  opacity: 1;
  color: #fff;
}
.navbar .nav-link.active {
  opacity: 1;
  color: #fff;
}
.navbar .nav-dot {
  width: 7px;
  height: 7px;
  position: absolute;
  bottom: -5px;
  background: #fff;
  border-radius: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
.navbar .dropdown-menu {
  border-radius: 0;
  display: block !important;
  border: 0;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transform: translateY(15px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  opacity: 0;
}
.navbar .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.navbar .dropdown-item {
  padding: 5px 13px;
  color: #66727c;
  width: 280px;
  position: relative;
  text-wrap: auto;
  font-size: 0.9rem;
}
@media (max-width: 1400px) {
  .navbar .dropdown-item {
    width: 240px;
  }
}
@media (max-width: 1400px) and (max-width: 1200px) {
  .navbar .dropdown-item {
    width: 200px;
  }
}
.navbar .dropdown-item:hover {
  color: #0167B2;
}
.navbar .dropdown-item::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  left: 5%;
  top: 0;
  background-color: #f1f1f1;
}
.navbar .dropdown-item-title {
  margin-bottom: 12px;
  padding: 4px 12px 0px 12px;
  font-size: 16px;
  text-transform: uppercase;
}
.navbar .dropdown-item-title-arrow {
  transform: rotate(90deg);
}
.navbar .dropdown-menu2 {
  right: -255px;
}
.navbar .navbar-brand img {
  width: 120px;
  transition: all 0.4s ease;
}
.navbar.fijo {
  background: rgba(0, 16, 29, 0.8);
}
@media (max-width: 1024px) {
  .navbar {
    position: fixed;
    width: 100%;
  }
  .navbar .navbar-brand img {
    width: 90px;
  }
}

.sub-sub-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: -60px;
  min-width: 170px;
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 0.5rem;
  z-index: 20;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}
.sub-sub-menu.sub-sub-left {
  right: 100%;
  left: initial;
}
.sub-sub-menu a {
  color: #002340;
}

.li-item:hover > .sub-sub-menu {
  display: block;
  animation: fadeIn 0.2s;
}

/* Animación */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive: Opcional, oculta el menú en móvil */
@media (max-width: 900px) {
  .menu {
    flex-direction: column;
    gap: 0;
  }
  .menu-item, .sub-menu-item {
    width: 100%;
  }
  .dropdown > .sub-menu,
  .sub-menu-item.dropdown > .sub-sub-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
  }
}
.an.accordion-item {
  background: transparent;
  border-bottom: 0;
  padding: 6px 0;
}
.an button {
  padding: 0;
}
.an .accordion-button:not(.collapsed) {
  color: #fff;
  background: transparent;
  outline: 0;
}
.an .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.a_movil {
  font-size: 16px;
  border: 0;
  background: transparent;
  color: #fff;
}

.dropdown-toggle::after {
  display: none;
}

.slider {
  position: sticky;
  top: 70px;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.slider__caption {
  position: absolute;
  z-index: 2;
  bottom: 120px;
  left: 4%;
  color: #fff;
  width: 380px;
}
.slider__caption h1 {
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw, 4rem);
}

.animarImg {
  transform: scale(1.2);
}

.animarCaption {
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  transform: translateY(20px);
}

.nav-pills {
  border-bottom: 2px dotted #DDDDDD;
}
.nav-pills .nav-link {
  color: #002340;
  background: transparent;
  opacity: 0.4;
  border-radius: 0;
  padding-bottom: 15px;
}
.nav-pills .nav-link.active {
  color: #002340;
  background: transparent;
  opacity: 1;
  border-bottom: 2px solid #0167B2;
}

.input {
  background: #fff;
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(1, 103, 178, 0.4);
  padding: 10px;
}

.button--buscar {
  background: #0167B2;
  color: #fff;
  border: 0;
  height: 40px;
  width: 100%;
}
@media (min-width: 1024px) {
  .button--buscar {
    width: 40px;
  }
}

.wrapper--top {
  position: relative;
  z-index: 2;
}

.filter {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.fondo-blanco {
  background: rgba(255, 255, 255, 0.9);
}

.fondo-medio {
  background: rgba(0, 35, 64, 0.9);
}

.fondo-claro {
  background: rgba(1, 103, 178, 0.9);
}

.noticias .card:hover {
  top: 0;
}
.noticias .carousel-indicators {
  bottom: -50px;
}

.card {
  border-radius: 0;
  position: relative;
  top: 0;
  transition: all 0.4s ease;
}
.card--img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
  display: block;
}
.card--p {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.8s ease;
}
@media (min-width: 1024px) {
  .card--p {
    max-height: 1px;
  }
}
.card:hover {
  top: -10px;
}
.card:hover .card--img img {
  transform: scale(1.2);
}
.card:hover .card--p {
  max-height: 100px;
}

.cuadro {
  height: 400px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cuadro .titulo {
  position: absolute;
  z-index: 3;
  margin-bottom: 0;
  transition: all 0.4s ease;
}
.cuadro .titulo.sin_pos {
  position: relative;
}
.cuadro .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
  left: 0;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0);
}
.cuadro img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  transition: transform 0.8s ease;
}
.cuadro img.arco {
  -o-object-fit: none;
     object-fit: none;
  position: absolute;
  bottom: 0;
  height: auto;
  width: auto;
}
.cuadro:hover .titulo {
  margin-bottom: 20px;
}
.cuadro:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}
.cuadro:hover img {
  transform: scale(1.2);
}
.cuadro:hover img.arco {
  transform: scale(1);
}
.cuadro.cuadro--2 {
  color: #fff;
  text-align: center;
  background: #0167B2;
  background: linear-gradient(180deg, rgb(1, 103, 178) 0%, rgb(0, 35, 64) 100%);
}

.wrapp-noticias {
  background: #0167B2;
}

footer {
  position: relative;
  z-index: 2;
}
footer a {
  color: #fff;
  opacity: 0.7;
}
footer a:hover {
  color: #fff;
  opacity: 1;
}
footer .border-bottom {
  border-bottom: 1px dotted #fff !important;
}

.animar {
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  transform: translateY(20px) scale(0.9);
}

.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  display: block;
  transition: opacity 300ms linear;
  opacity: 0;
  width: 6px;
  height: 6px;
  mix-blend-mode: difference;
}

.cursor.moving {
  opacity: 1;
}

.cursor::before {
  content: " ";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 300ms linear;
}

.cursor.expand::before {
  opacity: 0;
}

.node {
  mix-blend-mode: difference;
  pointer-events: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: block;
  transition: opacity 300ms linear;
  opacity: 0;
  width: 32px;
  height: 32px;
}

.node.moving {
  opacity: 1;
}

.node::before {
  content: " ";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: transparent;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 0.5px solid #ffffff;
  transform: scale(1.5);
  opacity: 1;
  transition: opacity 300ms linear, transform 300ms linear, border 300ms linear, background-color 300ms linear;
}

.modal-content {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.efecto {
  position: fixed;
  width: 100%;
  height: 0%;
  background: #fff;
  bottom: 0;
  left: 0;
  z-index: 11;
}

.estamos {
  position: sticky;
  top: 0px;
  z-index: 1;
  display: flex;
  height: auto;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  margin-top: 70px;
}
@media (min-width: 992px) {
  .estamos {
    margin-top: 0;
  }
}
@media (min-width: 992px) and (min-width: 1024px) {
  .estamos {
    height: 20vh;
  }
}
.estamos--texto {
  text-align: center;
  font-weight: 900;
  color: #fff;
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 500px;
}
.estamos--texto h1 {
  font-size: 25px;
}
@media (min-width: 1024px) {
  .estamos--texto h1 {
    font-size: 40px;
  }
}
.estamos img {
  min-width: 100%;
}
.estamos::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 60%;
  height: 100%;
  background: #0D3C68;
  background: radial-gradient(circle, rgba(13, 60, 104, 0.5) 0%, rgba(13, 60, 104, 0.2) 48%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.animarTexto {
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  transform: translateY(20px);
}

.cuadro_all {
  background: #fbfbfb;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  height: 100%;
  border: 1.5px solid #f1f1f3;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.cuadrito {
  background: #f1f1f2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  margin: 10px auto;
}

.itinerario-vuelo {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.itinerario-vuelo__item {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #d8d8d8;
  margin-bottom: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.itinerario-vuelo__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #17426c;
}
.itinerario-vuelo__aerolinea {
  flex: 1;
  text-align: left;
}
.itinerario-vuelo__num-vuelo {
  flex: 1;
  text-align: right;
  font-size: 1.5rem;
  color: #236db0;
}
.itinerario-vuelo__info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  justify-content: space-between;
  align-items: center;
}
.itinerario-vuelo__info small {
  min-width: 23%;
  text-align: center;
  padding: 0em 0.7em;
  border-radius: 6px;
  color: #979797;
  background: #fff;
}
.itinerario-vuelo__destino, .itinerario-vuelo__hora, .itinerario-vuelo__puerta, .itinerario-vuelo__status2 {
  min-width: 23%;
  text-align: center;
  padding: 0.35em 0.7em;
  border-radius: 6px;
  background: #f5f7fa;
}
.itinerario-vuelo__destino__destino, .itinerario-vuelo__hora__destino, .itinerario-vuelo__puerta__destino, .itinerario-vuelo__status2__destino {
  background: #d7eafd;
  color: #236db0;
  font-weight: 600;
}
.itinerario-vuelo__destino__hora, .itinerario-vuelo__hora__hora, .itinerario-vuelo__puerta__hora, .itinerario-vuelo__status2__hora {
  background: #eaf7d7;
  color: #3d6b0c;
  font-weight: 500;
}
.itinerario-vuelo__destino__puerta, .itinerario-vuelo__hora__puerta, .itinerario-vuelo__puerta__puerta, .itinerario-vuelo__status2__puerta {
  background: #f6e5d7;
  color: #b96912;
  font-weight: 500;
}
.itinerario-vuelo__destino__status2, .itinerario-vuelo__hora__status2, .itinerario-vuelo__puerta__status2, .itinerario-vuelo__status2__status2 {
  font-weight: 700;
  background: #f0f0f0;
  color: #444;
}
.itinerario-vuelo__destino.status2--on-time, .itinerario-vuelo__hora.status2--on-time, .itinerario-vuelo__puerta.status2--on-time, .itinerario-vuelo__status2.status2--on-time {
  background: #d9f7be;
  color: #389e0d;
}
.itinerario-vuelo__destino.status2--delayed, .itinerario-vuelo__hora.status2--delayed, .itinerario-vuelo__puerta.status2--delayed, .itinerario-vuelo__status2.status2--delayed {
  background: #fff2e8;
  color: #d4380d;
}
.itinerario-vuelo__destino.status2--cancelled, .itinerario-vuelo__hora.status2--cancelled, .itinerario-vuelo__puerta.status2--cancelled, .itinerario-vuelo__status2.status2--cancelled {
  background: #fff1f0;
  color: #cf1322;
}

@media (max-width: 600px) {
  .itinerario-vuelo {
    padding: 0.5rem;
  }
  .itinerario-vuelo__item {
    padding: 0.7rem;
  }
  .itinerario-vuelo__header {
    font-size: 1rem;
  }
  .itinerario-vuelo__info {
    font-size: 0.9rem;
    gap: 0.2rem;
  }
  .itinerario-vuelo__destino, .itinerario-vuelo__hora, .itinerario-vuelo__puerta, .itinerario-vuelo__status2 {
    min-width: 23%;
    padding: 0.25em 0.5em;
    font-size: 0.92em;
  }
}
figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

figure > img {
  grid-row: 1/-1;
  grid-column: 1;
}

.cc {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.cc-estacionamiento {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.cc-llegar {
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.w__directorio {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 10px;
}
.w__directorio small {
  color: #979797;
  display: block;
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #ccc;
}

.accordion-button:not(.collapsed) {
  background: #fff;
}

.num {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #C2E7FE;
  font-size: 20px;
  font-weight: 700;
}

.card-equipaje {
  background: #F0F0F0;
  height: 250px;
  padding: 3rem;
}

.card-conocenos {
  background: #F0F0F0;
  min-height: 300px;
  padding: 3rem;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .card-conocenos {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}

.carousel-indicators {
  bottom: -50px;
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  background: #002340;
  border: 0;
  border-radius: 30px;
}

.card_info {
  position: relative;
  height: 300px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.card_info--titulo, .card_info--texto {
  position: relative;
  z-index: 3;
  padding: 20px;
}
.card_info--texto {
  opacity: 1;
  top: 0px;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) {
  .card_info--texto {
    opacity: 0;
    top: 30px;
  }
}
.card_info--overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.2);
}
.card_info--img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 300px;
  width: 100%;
}
.card_info--img img {
  transition: all 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
}
.card_info:hover .card_info--texto {
  opacity: 1;
  top: 0;
}
.card_info:hover .card_info--overlay {
  background: rgba(0, 0, 0, 0.7);
}
.card_info:hover .card_info--img img {
  transform: scale(1.1);
}

.card2 {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.card2--texto {
  padding: 15px;
  position: absolute;
  z-index: 3;
  bottom: 20px;
  background: #0167B2;
  color: #fff;
  margin: 0 20px;
  opacity: 1;
  transition: all 0.4s ease;
}
@media (min-width: 1024px) {
  .card2--texto {
    opacity: 0;
    bottom: 30px;
  }
}
.card2 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.4s ease;
}
.card2:hover img {
  transform: scale(1.1);
}
.card2:hover .card2--texto {
  opacity: 1;
  bottom: 20px;
}

.submenu {
  position: sticky;
  top: 90px;
}
.submenu a {
  background: #fff;
  display: block;
  padding: 5px;
  border-radius: 4px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #0167B2;
}
.submenu a:hover {
  background: #F0F0F0;
  color: #002340;
}
.submenu a.activo {
  background: #0167B2;
  color: #fff;
}

.ancla {
  position: absolute;
  width: 1px;
  height: 1px;
  left: 0;
  top: -120px;
}

.btn-primary {
  background: #0167B2;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tarifas-container {
  max-width: 100%;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  padding: 0;
}

.tarifas-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  background: #0167B2;
  padding: 18px 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tarifas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0px 14px 12px 14px;
}

.tarifa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #f0f1f5;
}
.tarifa-row:nth-child(even) {
  background: #f0f1f5;
}

.tarifa-row:last-child {
  border-bottom: none;
}

.tarifa-label {
  font-size: 1.07em;
  font-weight: 500;
  color: #444;
}

.tarifa-precio {
  color: #1A9850;
  font-weight: 700;
  font-size: 1.07em;
  letter-spacing: 0.01em;
  min-width: 90px;
  text-align: right;
}

@media (max-width: 600px) {
  .tarifas-container {
    padding: 18px 6px;
  }
  .tarifas-title {
    font-size: 1.08rem;
  }
  .tarifa-row {
    padding: 9px 0;
  }
}
.sticky {
  position: sticky;
  top: 120px;
}

#restaurantes {
  background: #f9f9f9;
  padding-block: 4rem;
}
#restaurantes h2 {
  color: #0167B2;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
#restaurantes .card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 1, 0.3, 1);
}
#restaurantes .card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
}
#restaurantes .card .card-img-top {
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/10;
  height: 450px;
  padding: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 1, 0.3, 1);
}
#restaurantes .card .card-img-top:hover {
  filter: brightness(0.96) saturate(1.08);
}
#restaurantes .card .card-title {
  color: #0167B2;
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}
#restaurantes .card .card-sec {
  color: #0167B2;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
#restaurantes .card .card-text {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 0;
}
#restaurantes .card .card-footer {
  background: transparent;
  border-top: 1px dotted #ccc;
  font-size: 0.97rem;
  color: rgba(0, 0, 0, 0.5);
  padding-bottom: 1.2rem;
}
@media (max-width: 991px) {
  #restaurantes .card-img-top {
    height: 170px;
  }
}
@media (max-width: 768px) {
  #restaurantes h2 {
    font-size: 2rem;
  }
  #restaurantes .row-cols-md-3 {
    row-gap: 2.2rem;
  }
  #restaurantes .card-img-top {
    height: 140px;
  }
}

.cards {
  background: #E0F2FF;
  text-align: center;
  padding: 2rem;
}

.descargar {
  background: #C2E7FE;
  padding: 10px 30px;
  border-radius: 50px;
  width: 190px;
  min-width: 190px;
  transition: all 0.4s ease;
}
.descargar:hover {
  box-shadow: 0 12px 17px #c9e7fa;
}

.lista_descargar li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-direction: row;
  border-bottom: 1px dotted #0167B2;
}
@media (max-width: 768px) {
  .lista_descargar li {
    align-items: flex-start;
    flex-direction: column;
  }
}

.bg-blanco-transparente {
  background: rgba(255, 255, 255, 0.9);
}

.marquee {
  width: 100%;
  height: 300px;
}
@media (min-width: 1024px) {
  .marquee {
    height: 345px;
    overflow: hidden;
  }
}

.marquee__content {
  display: flex;
  align-items: center;
  list-style: none;
  animation: scrolling 30s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0vw);
  }
  100% {
    transform: translateX(-195vw);
  }
}
.marquee__content:hover {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  margin: 0 0 0 10px;
}

.marquee__servicio {
  position: relative;
}
.marquee__servicio--foto {
  width: 100%;
  height: 345px;
}
@media (min-width: 1024px) {
  .marquee__servicio--foto {
    width: 100%;
    height: 345px;
  }
}
.marquee__servicio--foto img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hp {
  position: relative;
  text-align: center;
  height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hp--wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 25%;
  margin-top: 10%;
  background: rgba(0, 16, 29, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 16px 48px;
  color: #fff;
  transition: all 0.4s ease;
}
.hp--wrap::before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url("../images/arrow-down.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.hp--wrap > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hp--logo {
  max-width: 180px;
  margin: 0 auto 48px auto;
}

.hp--img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.hp:hover .hp--wrap {
  height: 80%;
}

.hp:hover .hp--wrap::before {
  transform: rotate(180deg);
}

.hp2--img {
  height: 300px;
  position: relative;
}

.hp2--img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.cursor {
  position: fixed;
  height: 32px;
  width: 32px;
  border-radius: 32px;
  background-color: light-dark(black, white);
  transform: translate(-50%, -50%);
  transform-origin: top left;
}

.click {
  scale: 0.8;
}

/* Only display a message if the user can't hover (which would indicate they're using an input that doesn't have a cursor) */
@media (hover: hover) {
  .no-cursor {
    display: none;
  }
}
.justify {
  text-align: justify;
}

.cb-cursor {
  display: none;
}

.loader-itinerarios {
  position: absolute;
  right: 0px;
  bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 32px;
  background: #f8f8f8;
  z-index: 9999;
  transform: scale(0.8);
  display: none;
}

#bloque_destino_2, #bloque_horas_2, #bloque_origenes_2, #bloque_horas_llegadas_2 {
  display: none;
}

#bloque_destino_2, #bloque_origenes_2 {
  width: 33.33333333%;
}
@media (max-width: 991px) {
  #bloque_destino_2, #bloque_origenes_2 {
    width: 100%;
  }
}

#bloque_horas_2, #bloque_horas_llegadas_2 {
  width: 25%;
}
@media (max-width: 991px) {
  #bloque_horas_2, #bloque_horas_llegadas_2 {
    width: 100%;
  }
}

#bloque_destino_2 > div, #bloque_horas_2 > div {
  width: 100% !important;
}

#bloque_destino_1 select:disabled, #bloque_horas_1 select:disabled, #bloque_origenes_1 select:disabled, #bloque_horas_llegadas_1 select:disabled {
  opacity: 0.5;
  background: #f1f1f2;
}

#ley-contabilidad .lista_descargar h5 {
  text-transform: lowercase;
}

#ley-contabilidad .lista_descargar h5::first-letter {
  text-transform: uppercase;
}/*# sourceMappingURL=estilos.css.map */