* {
  box-sizing: border-box;
  margin: 0%;
  padding: 0%;
}

p {
  text-wrap: pretty;
  margin: 10px 0;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

h1 {
  font-size: 2.2rem;
  color: var(--texto);
}

:root {
  --marca: rgb(4, 156, 179);
  --naranja: rgb(255, 118, 5);
  --bga: rgba(4, 156, 179, 0.6);
  --bgn: rgb(255, 118, 5, 0.6);
  --rojo: rgb(153, 23, 23);
  --celeste: rgb(81, 165, 192);
  --rojo-2: rgb(201, 48, 78);
  --azul: rgb(0, 102, 204);
  --texto: rgb(55, 53, 54);
  --texto-tour: rgb(128, 130, 133);
  --bg-gray: rgb(105, 105, 105);
  --white: rgb(255, 255, 255);
  --gray: rgb(235, 236, 240);
  --hr: rgb(236, 235, 235);
  --green:#058d54;
  --box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  --box-shadow2: 5px 5px 10px rgba(0, 0, 0, 0.5);
  --box-shadow3: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow: 2px 2px 4px #05233f;
  /* bg transparentes para Texto */
  --oscuro: rgba(0, 0, 0, 0.388);
  --claro: rgba(255, 255, 255, 0.431);
  --maxw: 1400px
}

body {
  width: 100%;
  background: var(--gray);
}

hr {
  size: 1px;
  /* border-top: 1px solid var(--celeste); */
  opacity: .3;
  color: var(--celeste);
}

.center {
  text-align: center;
}

.espacio {
  height: 2rem;
}

.espacio2 {
  height: 4rem;
}

img {
  display: block;
  width: 100%;
}

ul {
  list-style: none;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
  margin-left: 1rem;
}

a {
  text-decoration: none;
}

.custom-submit {
  width: 180px;
  background-color: #008CBA;
  color: white;
  margin: 1rem auto;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-content: center;
}

.title {
  max-width: 1340px;
  text-align: center;
  margin: 3rem auto;
  font-size: 18px;
}

.title h1,
.title h2 {
  color: var(--marca);
}

.title span {
  color: var(--naranja);
}

.title p {
  max-width: 640px;
  margin: 1rem auto;
}

.leerBtn {
  display: inline-block;
  min-width: 150px;
  max-width: 220px;
  height: 42px;
  background: var(--naranja);
  color: var(--white);
  line-height: 1;
  margin: 0% auto;
  padding-top: 14px;
  outline: solid 3px var(--naranja);
  border-radius: 8px;
}

.leerBtn:hover {
  outline: solid 3px var(--white);
}

.top-line {
  display: grid;
  width: 100%;
  height: 60px;
  background: var(--marca);
  place-content: center;
}

.top-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--maxw);
  gap: 10px;
  color: var(--white);
}

.top-info a {
  color: var(--white);
}

.line-head {
  display: grid;
  grid-template-columns: 150px auto 35px 35px;
  gap: 10px;
  width: 90%;
  margin: 0% auto;
  padding: 0 30px;
  position: relative;
  background: var(--white);
  align-items: center;
}

.idiomas {
  display: grid;
  grid-template-columns: 30px;
  align-self: center;
}

.navBar {
  display: none;
  position: absolute;
  align-items: center;
  width: 400px;
  height: 100vh;
  top: 60px;
  left: 0%;
  z-index: 5;
  background: var(--white);
  box-shadow: var(--box-shadow2);
  overflow: scroll;
}

.navBar.mostrar {
  display: block;
}

.logo-menu {
  width: 100%;
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 10px 0;
}

.logo {
  width: 100%;
  aspect-ratio: 8/3;
}

.menu-btn {
  width: 35px;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  cursor: pointer;
  font-size: 24px;
  font-weight: bolder;
  color: var(--azul);
  padding: 0%;
}

/* ================== Menu Principal ================== */
.menu {
  font-size: 14px;
  top: 0%;
}

.menu a {
  display: block;
  padding: 10px 5px;
  color: var(--texto);
  text-align: left;
  border-bottom: solid 2px var(--hr);
}

.menu a:hover {
  color: var(--naranja);
}

.has-submenu>a::after {
  width: 15px;
  height: 15px;
  content: "⮟";
  align-items: center;
  margin: 0% 0px 0px 5px;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  color: var(--texto);
}

.submenu {
  display: none;
  margin: 0;
  padding: 0;
  border-top: solid 2px var(--naranja);
}

.submenu .has-submenu>a::after {
  width: 15px;
  height: 15px;
  content: "➤";
  float: right;
}

.submenu.active {
  display: grid;
}

.submenu a {
  border-bottom: solid 1px var(--hr);
}

/* ================== // Menu Principal ================== */
.contenido {
  width: 99%;
  max-width: 1000px;
  margin: 2rem auto;
  padding: .5rem;
}

.bgmarca {
  background: var(--bga);
  padding: 1.5rem;
  border-radius: 7px;
  backdrop-filter: blur(6px);
}

.bgwhite {
  background: #ffffff3f;
  padding: 1.5rem;
  border-radius: 7px;
  backdrop-filter: blur(6px);
}

.bggray {
  background: var(--bg-gray);
}

.dobleCol {
  grid-column: span 2;
  grid-row: span 1;
  overflow: hidden;
}

.dobleFil {
  grid-column: span 1;
  grid-row: span 2;
  overflow: hidden;
}

.dobleColFil {
  grid-column: span 2;
  grid-row: span2;
}

.fondo-blanco {
  background: #fff;
  color: #000;
  font-size: 18px;
  padding: .5rem 1.5rem;
  box-sizing: border-box;
}

.dosCol {
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.tour-head {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 60% repeat(3, 1fr);
  text-align: center;
  color: var(--white);
  aspect-ratio: 1/1;
}

.tourHeadImg {
  grid-column: 1/-1;
  grid-row: 1/5;
  aspect-ratio: 1/1;
}

.tourHeadTit {
  grid-column: 1/-1;
  grid-row: 2/3;
  color: var(--white);
  text-shadow: var(--shadow);
  font-size: 1.3rem;
  font-weight: bolder;
}

.tourHeadTit h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.tresCol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  max-width: var(--maxw);
  gap: 2rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: var(--white);
}

.cuatroCol {
  display: grid;
  /* grid-auto-rows: auto; */
  grid-auto-flow: dense;
  grid-gap: 2rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  color: var(--texto);
}

.cuatroCol img {
  /* object-fit: cover; */
  width: 100%;
  /* height: 100%; */
}

.destino {
  display: grid;
  background: var(--white);
  border-top: solid 20px var(--white);
  border-right: solid 20px var(--white);
  border-left: solid 20px var(--white);
  color: var(--texto);
  text-align: center;
  font-weight: bolder;
  line-height: 1;
}

.destino>footer {
  grid-column: 1/-1;
  grid-row: 2/3;
  padding: 1rem 0%;
}

.destino a {
  position: relative;
  display: block;
  overflow: hidden;
  grid-column: 1/-1;
  grid-row: 1/2;
}

.destino a img {
  width: 100%;
  aspect-ratio: 7/5;
  transition: transform 0.2s ease-out;
}

.destino a img:first-child {
  display: inline-block;
}

.destino a img:last-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
}

.destino a:hover img:first-child {
  transform: translateY(100%);
}

.destino a:hover img:last-child,
.destino[data-animation] a:hover img:last-child {
  transform: none;
}

.card {
  box-shadow: #4b595a 0px 0px 17px -3px;
  background: var(--white);
  color: var(--texto);
}

.card li {
  padding: 7px 0%;
}

.fig {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 20px 20px auto;
}

.fig img {
  width: 100%;
  aspect-ratio: 4/3;
  grid-column: 1/2;
  grid-row: 1/3;
}

.fig .best {
  grid-column: 1/-1;
  grid-row: 2/4;
  width: 150px;
  padding: 9px 0;
  background: var(--bga);
  backdrop-filter: blur(6px);
  color: var(--white);
  text-align: center;
  border-radius: 0 50px 50px 0;
}

.fig .adven {
  grid-column: 1/-1;
  grid-row: 2/4;
  width: 150px;
  padding: 9px 0;
  background: var(--bgn);
  backdrop-filter: blur(6px);
  color: var(--white);
  text-align: center;
  border-radius: 0 50px 50px 0;
}

.fig figcaption {
  display: grid;
  grid-column: 1/1;
  grid-row: 4/5;
  place-content: center;
  text-align: center;
  font-weight: bold;
  height: 40px;
}

.card .dosCol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.btnMas {
  display: grid;
  place-content: center;
  height: 30px;
  outline: solid 3px var(--marca);
  font-size: 1rem;
  color: var(--white);
  border-radius: 7px;
  background: var(--naranja);
}

.price {
  text-align: right;
  font-size: 20px;
}

.price span {
  font-weight: bold;
  color: var(--darken);
}

.nosotros {
  background-image: url("../img/pag-nosotros-fondo.webp");
  background-attachment: fixed;
  background-repeat: repeat-y;
  background-size: 100%;
  padding: 4rem;
  color: var(--white);
}

.nosotros h2 {
  font-size: 60px;
  color: var(--white);
}

.contacto {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 1rem;
}

.table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ANIMATIONS ––––––––––––––––––––––––––––––––––––––––––––– */
.ani[data-animation="to-top"] a span:last-child {
  transform: translateY(100%);
}

.ani[data-animation="to-top"] a:hover span:first-child {
  transform: translateY(-100%);
}

.ani[data-animation="to-right"] a span:last-child {
  transform: translateX(-100%);
}

.ani[data-animation="to-right"] a:hover span:first-child {
  transform: translateX(100%);
}

.ani[data-animation="to-left"] a span:last-child {
  transform: translateX(100%);
}

.ani[data-animation="to-left"] a:hover span:first-child {
  transform: translateX(-100%);
}

/* // ANIMATIONS ––––––––––––––––––––––––––––––––––––––––––––– */
icon-text,
icon-dos {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .5rem;
  align-items: center;
}

.icono {
  width: 1rem;
  height: 1rem;
  fill: var(--white);
  stroke: var(--white);
}

/* ++++++++++++++++ PagoS ++++++++++++++++ */
.paypalx {
  margin: 0 auto;
  padding: 1rem;
  align-items: center;
  align-content: center;
  background: var(--gray3);
}

#paypalmenu {
  width: 180px;
  margin: 0 auto;
}

.pagos {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* +++++++++++++++ // PagoS +++++++++++++++ */
footer>.cuatroCol {
  color: var(--white);
}

footer>hr {
  border-top: var(--white);
}

.footer-link {
  margin: 1rem 0;
}

.footer-link>li {
  margin-bottom: .5rem;
}

.footer-link a {
  color: var(--white);
}

.footer-link a:hover {
  color: var(--celeste);
}

.soporte {
  display: grid;
  padding: .3rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem;
}

.soporte img {
  width: 100%;
  aspect-ratio: 4 / 1;
}

.redes {
  display: grid;
  grid-template-columns: repeat(5, 36px);
  gap: 5px;
  margin: 10px auto;
}

.svg-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  fill: var(--texto);
  stroke: var(--texto);
  transition: fill 0.3s ease;
}

.svg-icon:hover {
  fill: var(--white);
  stroke: var(--white);
}

.facebook {
  background-image: url('../iconos/facebook.svg');
}

.twitter {
  background-image: url('../iconos/twitter.svg');
}

.instagram {
  background-image: url('../iconos/instagram.svg');
}

.linkedin {
  background-image: url('../iconos/linkedin.svg');
}

.youtube {
  background-image: url('../iconos/youtube.svg');
}

/* Media queries para dispositivos más grandes */
@media (min-width: 768px) {
  .tour-head {
    aspect-ratio: 15/6;
  }

  .tourHeadImg {
    aspect-ratio: 15/6;
  }

  .cuatroCol {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: var(--maxw);
  }
}

@media (min-width: 992px) {
  .logo-menu {
    grid-template-columns: 160px 1fr;
  }

  .top-line {
    height: 30px;
  }

  .top-info {
    grid-template-columns: 2fr 2fr 1fr 1fr;
  }

  .line-head {
    width: 95%;
    margin: 0 auto;
    gap: 15px;
    place-items: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    border-radius: 0% 0% 6px 6px;
  }

  .idiomas {
    position: relative;
  }

  .navBar {
    display: grid;
    position: relative;
    width: auto;
    height: 36px;
    margin: 0 auto;
    top: 0;
    box-shadow: none;
    overflow: visible;
  }

  /* ================== Menu Principal ================== */
  .menu {
    display: grid;
    grid-template-columns: repeat(8, auto);
    gap: 5px;
    width: auto;
    height: 38px;
    position: relative;
    margin: 0 auto;
  }

  .menu a:hover {
    border-bottom: solid 2px var(--naranja);
  }

  .menu-btn {
    display: none;
  }

  .has-submenu {
    position: relative;
  }

  .has-submenu>a:hover::after {
    color: var(--naranja);
  }

  .submenu {
    position: absolute;
    width: 280px;
    box-shadow: var(--box-shadow3);
    background: var(--white);
  }

  .has-submenu:hover>.submenu,
  .submenu:hover {
    display: grid;
  }

  .submenu .has-submenu:hover>.submenu {
    top: 0px;
    left: 240px;
  }

  /* ================== // Menu Principal ================== */
  .tourHeadTit h1 {
    font-size: 4rem;
  }
}

@media (min-width: 1200px) {
  .line-head {
    max-width: var(--maxw);
  }

  /* ================== Menu Principal ================== */
  .menu {
    gap: 15px;
  }

  /* ================== // Menu Principal ================== */
}