@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&family=Roboto:wght@300;500;700;900&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}
img {width: 100%;border-style: none;display: block;}
span{color: var(--primary);font-weight: 400;}
/* ::::::::::::::::::::: Fin Reset CSS ::::::::::::::::::::: */
html {
  font-family: "Roboto", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 15px;
  scroll-behavior: smooth;
}
:root {
  --primary: #00B3D0;
  --primaryx: rgba(0, 179, 208, .7);
  --secondary:#F9B516;
  --secondaryx:rgba(249, 181, 22, .7);
  --third:rgb(143, 152, 180);
  --gold:rgb(212, 160, 23);
  --gold-light: rgb(232, 184, 109);
  --blue:rgb(30, 115, 190);
  --sky-blue:rgb(17, 187, 238);
--teal: #1ABC9C;
--sand: #E8D5A3;
  --green:rgb(13, 192, 174);
  --stone: rgb(240, 234, 224);
  --gray:rgb(186, 190, 204);
  --gray2:rgb(207, 201, 201);
  --gray3:rgb(235, 235, 235);
  --black:rgb(0, 0, 0);
  --darken:rgb(42, 43, 46);
  --caqui:rgb(216, 216, 182) ;
  --white: rgb(255, 255, 255);
  --red:rgb(212, 45, 45);
  --whatsApp:rgb(0, 172, 151);
  --whatsApp1:rgba(0, 172, 152, 0.7);
  /* --------------------------------- */
  --max-w:1400px;
  --border-radius: 4px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
body {
  width: 100%;
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100dvh;
  font-size: 0.88rem;
  isolation: isolate;
}
.adventure{
  width: 100%;
  background-color: var(--darken);
  padding: 4rem 0;
  text-align: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green);
  outline: 1px solid var(--green);
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 11vw, 5rem);
  line-height: 0.92;
  letter-spacing: 6px;
  color: #fff;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(240,235,224,0.55);
  letter-spacing: 2px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #e8b820; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(240,235,224,0.3);
  color: rgba(240,235,224,0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 40px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: fadeUp 1s 0.8s ease both;
}
ul,
ol {
  margin: 0 0 0.94rem 0;
  padding-left: 1.5rem;
  list-style: none;
}
a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
a:hover {
  color: var(--white);
}
p a{color: var(--white);font-weight: 400;}
p, li{margin-bottom: .8rem;}
h1, h2, h3,h4,h5,h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: .5rem 0;
}
h1{font-size: 2rem;}
h2{font-size: 1.5rem;}
h3{font-size: 1.25rem;}
h4{font-size: 1.15rem;}
h5, p{font-size: 1rem;}
textarea{resize: none;}
hr {
  margin: 3rem auto;
  border-top: dashed 2px var(--gray3);
  width: 100%;
}
.hr2{
  opacity: .3;
  margin: 0;
  margin-top: .6rem;
  margin-bottom: 1rem;
  width: 100%;
  border-top:2px dashed var(--primary);
  height: 0;
}
.icon-text li, .icon-text-p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.44rem;
}
.icon-text a {
  display: flex;
  align-items: center;
  gap: 0.44rem;
  color: inherit;
  text-decoration: none;
}

.icon-text a:hover {
  opacity: 0.75;
}

.icon {
  width: 17px;
  height: 17px;
  color: var(--primary);
}
.icon20 {
  width: 20px;
  height: 20px;
}
.icon30 {
  width: 30px;
  height: 30px;
}
.icon-big {
  width: 4rem;
  height: 4rem;
  margin: 0% auto;
  color: var(--primary);
}
i{color: var(--primary);padding-right: .5rem;}
i.fa{font-size: 20px;}
.manto{display: none;}
.stone{background: var(--stone);padding: 5rem 0;}
.space{
  width: 100% !important;
  height: 2rem;
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x: hidden !important;
}
.space2{
  width: 100% !important;
  height: 4.5rem;
  background-color: transparent;
  margin: 0;
  padding: 0;
  border: 0;
  overflow-x: hidden !important;
}
.align-left{display: grid;text-align: left;justify-content: left;}
.align-right{display: grid;text-align: right;justify-items: right;}
.border{outline: solid 3px var(--darken);}
.center-vert{place-content: center;}
.icon-20{
  width: 2.5rem;
  aspect-ratio: 1 / 1;
}
.icon_big{
  width: 3.5rem;
  aspect-ratio: 1 / 1;
  color: var(--gold);
  justify-self: center;
}
.borderUi{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 5px;
  padding: 1.5rem;
  vertical-align: middle;
}
.logo{width: 120px;grid-row: 1/-1;aspect-ratio: 3/1;}
.idioma {
  width: 30px;
  height: 20px;
  display: inline-block;
  overflow: hidden;
  border-radius: 4px;
}

.idioma img {
  width: 90px;
  height: 20px;
  object-fit: cover;
}
.en img { left: 0; }
.es img { object-position: -30px 0; }
.pt img { object-position: -60px 0; }
.line-head {
  display: flex;
  flex-direction: row;
  width: 98%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2px 0;
  gap: .4rem;
  align-items: center;
  justify-content: space-between;
}
.oculto{width: 100%;}
.datos-head{
  display: grid;
  grid-template-columns: repeat(2, auto);
  text-align: right;
  padding: 0;
  gap: 5px 10px;
  align-items: center;
  justify-items: center;
}
.btn-big{
  display: flex;
  flex-direction: row;
  align-items: center;
  background: var(--white);
  color: var(--gold);
  font-weight: var(--gold);
  border-radius: 50px;
  padding: 1rem 4rem;
}
.btn-contact{
  display: inline-flex;
  width: fit-content;
  color: var(--white);
  padding: 0 7px;
  background: var(--primary);
  border-radius: 3px;
  text-align: center;
}
.btn-contact:hover{
  color: var(--primary);
  outline: dashed 2px var(--primary);
  background: transparent;
}
.redes{
  display: grid;
  grid-template-columns:repeat(3, 20px);
  gap: 10px;
  text-align: center;
  justify-content: center;
}
.email-head{grid-column: span 2;display: flex;align-items: center;gap: .40rem;}
.phone-head{display: flex;align-items: center;gap: .40rem;}
.email-head:hover, .phone-head:hover{color: var(--secondary);}

/* ::::::::::::::::: Banner ::::::::::::::::: */
.banner{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 10% repeat(3, 30%);
  text-align: center;
}
.banner h1, .banner p{color: var(--white);margin: 1rem 0;text-shadow: black 0px 3px 3px;}
.banner picture{
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.banner-tit{
  grid-column: 1/-1;
  grid-row: 3/4;
  font-size: 1.6rem;
}
/* ::::::::::::::::: // Banner ::::::::::::::::: */
/* Estilos del botón flotante WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 90px;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
/* ::::::::::::::::::: whats Boton ::::::::::::::::::: */
.whatsapp-box{text-align: center;justify-content: center;}
.whatsapp-book {
  font-weight: bold;
  color: #313133;
  background: #4FD1C5;
  background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(79,209,197,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 12px 15px;
  margin: 50px auto;
  align-self: center;
  }
.whatsapp-book::before {
  content: '';
  border-radius: 1000px;
  min-width: calc(144px + 12px);
  min-height: calc(36px + 12px);
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}
.whatsapp-book:hover::before, .whatsapp-book:focus::before {
  opacity: 1;
}
.whatsapp-book::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 1000px;
  border: 4px solid #00FFCB;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}
.whatsapp-book:hover::after, .whatsapp-book:focus::after {
  animation: none;
  display: none;
}
@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 144px;
    height: 144px;
    opacity: 0;
  }
}
/* ::::::::::::::::::: whats Boton ::::::::::::::::::: */
/* :::::::::::::::::::: Form Contacto :::::::::::::::::::: */
.contact{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
  box-sizing: border-box;
  outline: solid 1px var(--blue);
  margin: 1rem auto;
  padding:2rem;
  border-radius: 8px;
}
/* .contact fieldset, .contact input[type=submit], .contact label {grid-column: 2 / 3 !important;} */
.contact fieldset{padding: 0%;margin: 0%;}
input,textarea{
    color:var(--darken);
    width:100%;
    margin:.3em auto;
    padding: .5em;
    display:block;
    font-size:1em;
    font-weight:400;
    letter-spacing:1px;
    outline: solid 1px var(--darken);
    border-radius:4px;
    border:none
}
.textarea, textarea{
  resize: none;
  grid-column: 1/-1;
}
input[type=submit]{
    width:160px;
    outline:3px solid var(--blue);
    color:var(--blue);
    font-size:18px;
    margin:1rem auto 0;
    padding:.5rem 0;
    transition:.5s all;
    -webkit-transition:.5s all;
    -moz-transition:.5s all;
    -o-transition:.5s all;
    -ms-transition:.5s all;
    font-weight:600;
    border-radius: 7px;
    background: var(--white);
    grid-column: 1/-1;
}
input[type=submit]:hover{
    background:var(--blue);
    outline:3px solid var(--white);
    color:var(--white);
    transition:.5s all;
    -webkit-transition:.5s all;
    -moz-transition:.5s all;
    -o-transition:.5s all;
    -ms-transition:.5s all
}
input:focus, textarea:focus {
  outline: solid 2px var(--color-primary);
}
.contact button{grid-column: 1/-1;}
/* :::::::::::::::::::: //Form Contacto :::::::::::::::::::: */
.title{text-align: center;margin: 30px 0;}
.title p{max-width: 1200px;text-align: center;margin: 0 auto;}
.subtitle{max-width: var(--max-w);margin: 30px auto;}
.tour-desc{max-width: 920px;margin: 30px auto;padding: 0 .5rem;}
.columnas{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  margin: 1rem 0;
}
.two-cols{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.tree-cols{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin: 0 auto;
  max-width: var(--max-w);
  gap: 2rem;
}
.four-cols{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.card{
  outline: solid 1px var(--gray3);
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.card i{
  font-size: 60px;
  aspect-ratio: 1/1;
  -webkit-text-stroke: 2px var(--secondary);
}
.tour-card{
  display: grid;
  padding: 0;
  padding-bottom: 1rem;
  margin: 0;
  overflow: hidden;
  box-shadow: #4b595a 0px 0px 17px -3px;
}
.tour-card figure{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 20px 20px auto;
}
.tour-card img{
  width: 100%;
  aspect-ratio: 4/3;
  grid-column: 1/-1;
  grid-row: 1/3;
}
.tour-card figure span{
  grid-column: 1/-1;
  grid-row: 2/4;
  width: 150px;
  padding: 9px 0;
}
.best-sellers, .special{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  color: var(--primary);
  border-radius: 0 50px 50px 0;
  outline: solid 1px var(--white)
}
.best-sellers{
  background: var(--secondaryx);}
.special{
  color: var(--secondary);
  background: var(--primaryx);
}
.tour-card figcaption{
  font-weight: 500;
  padding: 20px 10px;
  text-align: center;
  grid-column: 1/-1;
  grid-row: 4/5;
}
.btn__mas{
  width: fit-content;
  margin: 1rem auto;
	padding: 8px 15px;
	outline: solid 3px var(--primary);
  font-weight: bold;
	color: var(--white);
	border-radius: 5px;
	box-sizing: border-box;
  background: var(--third);
}
.price{
  text-align: right;
  font-size: 20px;
}
.price span{font-weight: bold;color: var(--darken);}
  .pestana-book{
    width: 90%;
    background: var(--blue);
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    border-radius: 8px 8px 0 0;
    padding: .2rem;
  }
  /* :::::::::::: Tour-Form :::::::::::: */
  .tour-form{
    align-self: self-start;
    display: grid;
    grid-template-columns: .5rem 1fr .5rem;
    gap: .7rem;
    border-radius: 15px;
    background: var(--white);
    padding: 1rem 0;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: sticky;
    top: 0px;
  }
  .tour-form label, .tour-form button, .tour-form input{
    grid-column: 2 / 3;
    outline: 0;
  }
  .tour-form button, .tour-form input, .tour-form textarea, .contact button{
    border: 0;
    outline: 0;
    font-size: 16px;
    border-radius: 320px;
    padding: 8px 16px;
    color: #515669;
    background-color: var(--white);
    text-shadow: 1px 1px 0 var(--white);
  }
  .tour-form input, .tour-form textarea {
    box-shadow: inset -2px -2px 5px var(--gray), inset 5px 5px 5px var(--white);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
  }
  .tour-form input:focus {
    box-shadow: inset 1px 1px 2px var(--gray), inset -1px -1px 2px var(--white);
  }
  .tour-form textarea{
    border-radius: 10px;
  }
  .tour-form button, .contact button {
    min-width: 160px;
    margin: .5rem auto;
    color: #61677c;
    font-weight: bold;
    box-shadow: -5px -5px 20px var(--white), 5px 5px 20px var(--gray);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    font-weight: 600;
  }
  .tour-form button:hover, .contact button:hover {
    box-shadow: -2px -2px 5px var(--white), 2px 2px 5px var(--gray);
  }
  .tour-form button:active {
    box-shadow: inset 1px 1px 2px var(--gray), inset -1px -1px 2px var(--white);
  }
  /* :::::::::::: // Tour-Form :::::::::::: */
.content{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 .5rem;
}
.tour-content{
  display: grid;
  grid-template-columns:1fr;
  max-width: var(--max-w);
  gap: 2rem;
  margin: 0 auto;
  padding: 0 .5rem;
  box-sizing: border-box;
}
.includes{color: var(--whatsApp);}
.noincludes{color: var(--red);}
.includ{
  margin-left: 1rem;
  list-style-image: url(../figure/check.webp);
}
.noinclud{
  margin-left: 1rem;
  list-style-image: url(../figure/equis.webp);
}
.pestanas{
  display: grid;
  max-width: var(--max-w);
  gap: 2rem;
  margin: 0 auto;
}
.welcome{
  margin: 30px 0;
}
/* :::::::::::::::::::::::::::::::: Tour Pestañas :::::::::::::::::::::::::::::::: */
.tab-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 7px;
  background: var(--price);
  /* margin: 0 auto; */
  padding: 7px 7px;
  border-radius: 15px;
  border: solid 1px var(--gray3);
  position: sticky;
  top: 0px;
  z-index: 10;
  align-items: center;
}
.tab {
  background: var(--price);
  box-shadow: -2px -2px 5px var(--white), 2px 2px 5px var(--gray);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border-radius: 8px;
  margin: 0;
  padding: 7px 10px;
  cursor: pointer;
  text-align: center;
  align-items: center;
}
.tab:hover{
  box-shadow: -5px -5px 20px var(--white), 5px 5px 20px var(--gray);
}
.tab-content {
  display: none;
  padding: 10px;
  /* min-height: 540px; */
}
.tab-content.show {
  display: block;
}
.btn-active {
  color: var(--color-primary);
  border: solid 1px var(--white);
  box-shadow: inset 2px 2px 5px var(--gray), inset -5px -5px 10px var(--white);
}
/* :::::::::::::::::::::::::::::::: // Tour Pestañas :::::::::::::::::::::::::::::::: */
/* :::::::::::::::::: Accordion :::::::::::::::::: */
.accordion {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  width: 98%;
}
.accordion-tab {
  border: 1px solid var(--primary);
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 28px;
  padding: 6px 20px;
  box-sizing: border-box;
}
.accordion-btn {
  background: transparent;
  padding: 10px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue);
  border-radius: 25px;
}
.accordion-tab .accordion-btn::after {
  content: "🞥";
  position: absolute;
  right: 10px;
}
.accordion-tab.active .accordion-btn::after {
  content: "🗙";
  color: red;
}
.accordion-content {
  padding: 10px;
  display: none;
}
/* :::::::::::::::::: // Accordion :::::::::::::::::: */
.cinta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1rem;
  padding: 1rem;
}
.cinta img{
  width: 100%;
  aspect-ratio: 4/1;
}
footer{
  background: var(--black);
  color: var(--white);
  padding: 30px 1rem;
  overflow: hidden;
}
footer .columnas{
  max-width: var(--max-w);
  margin: 0 auto;
}
.img-foot{
  width: 100%;
  aspect-ratio: 20/7;
}
footer a{color: var(--white);}
footer img{width: 200px;margin:1rem auto;}
/* --------------- Transport Style --------------- */
.characteristics{
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items:center;
  text-align: center;
  padding: 0 2rem;
}
.gold-area{background: var(--gold);}
.gold-area__content{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 2rem auto;
  padding: 4rem 1rem;
  color: var(--white);
}
.gold-area__content h2{font-size: 4rem;font-weight: bold;}
.gold-area__content p, .gold-area__content a{font-size: 2rem;}

.section-tag {
    display: inline-block;
    color: var(--gold); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 14px;
  }
  /* SERVICES */
  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900; line-height: 1.1;
    color: var(--ink); margin-bottom: 20px;
  }
  .lead {
    font-size: 1.05rem; color: #5a4a35;
    line-height: 1.75; max-width: 600px;
    font-weight: 300;
  }
.service-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
  .service-item  article{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 2px dashed var(--gray2);
    cursor: pointer; transition: all 0.2s;
  }
  .service-item:hover .service-num { color: var(--gold); }
  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 900;
    color: var(--gray2); line-height: 1;
    min-width: 48px; transition: color 0.2s;
  }
  .service-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
  .service-info p { font-size: 0.88rem; color: #6b5a45; line-height: 1.6; font-weight: 300; }
.destinos{position: fixed;top: 0;}
  .destinations-panel {
    background: var(--white);
    border: 1px solid var(--stone-mid);
    border-radius: 12px; overflow: hidden;
  }
  .panel-header {
    background: var(--darken);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .panel-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light); font-size: 1.4rem; margin: 0;
  }
  .dest-grid { display: grid; grid-template-columns: 1fr 1fr;padding: 0%;margin: 0%;}
  .dest-item {
    padding: 24px 28px;
    border-right: 1px solid var(--gray2);
    border-bottom: 1px solid var(--gray2);
    transition: background 0.2s;
    margin: 0;
  }
  .dest-item:nth-child(even) { border-right: none; }
  .dest-item:hover { background: var(--stone); }
  .dest-item:nth-last-child(-n+2) { border-bottom: none; }
  .dest-emoji { font-size: 1.4rem; margin-bottom: 8px; display: block; }
  .dest-name { font-weight: 700; font-size: 0.95rem; color: var(--ink); margin-bottom: 4px; }
  .dest-distance { font-size: 0.75rem; color: var(--sky-light); font-weight: 500; }
  /* //SERVICES */
/* ====== VEHICLE ====== */
.vehicles-grid {
    display: grid;
    /* Crea columnas automáticas que se ajustan al tamaño de pantalla */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.vehicle-card {
    position: relative;
    min-height: 450px;
    border-radius: 15px;
    overflow: hidden;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* El texto se queda abajo */
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Efecto Hover */
.vehicle-card:hover {
    transform: translateY(-10px);
}

/* Oscurecemos el fondo para que el texto sea blanco y legible */
.card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 25px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.vehicle-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0 5px;
    color: var(--gold);
}

.vehicle-capacity {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.vehicle-desc {
    font-size: 0.95rem;
    margin: 15px 0;
    line-height: 1.4;
}

.vehicle-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vehicle-features li {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px); /* Efecto de vidrio moderno */
}

/* Estilo especial para la última tarjeta si lo deseas */
.last-card .vehicle-name {
    color: #ffffff;
}
/* ====== //VEHICLE ====== */
/* --------------- // Transport Style --------------- */
/* ---------------------------- Responsive ---------------------------- */
@media all and (min-width:768px){
  .logo{width: 110px;}
  .oculto{display: block;}
  .banner-tit{font-size: 2rem;}
  .banner img{
    aspect-ratio: 18/7;
  }
  .ver{position: relative;}
  .ver:hover .sub-menu{height: auto;}
  .sub-menu{
    width: 100%;
    min-width: 300px;
    position: absolute;
    top: 41px;
    left: 0;
    transition: none;
  }
}
@media only screen and (min-width: 992px) {
  .logo{width: 180px;}
  .banner-tit{font-size: 3rem;}
  .tour-content{
    grid-template-columns: 3fr 1fr;
  }
}