* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Fira Sans', system-ui, sans-serif;
  background:#000;
}

/* Navbar (tu código previo) */
.navbar {
  width:100%;
  height:70px;
  background:#0d1e34;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 1.25rem;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

/* Logo navbar */
.logo img { height:130px; display:block; }

/* Links desktop */
.nav-links { display:flex; gap:1.6rem; align-items:center; }
.nav-links a { color:#fff; text-decoration:none; font-weight:900; font-size:1.7rem; transition:color .18s; }
.nav-links a:hover { color:#7fb1ff; }

/* Checkbox y hamburguesa (responsive navbar) */
#menu-toggle { display:none; }
.menu-icon { display:none; width:36px; height:28px; cursor:pointer; flex-direction:column; justify-content:space-between; align-items:center; z-index:1100; }
.menu-icon .bar { display:block; width:100%; height:3px; background:#fff; border-radius:3px; transition:all .3s ease; }
.menu-icon .bar + .bar { margin-top:6px; }

/* --- Responsive navbar --- */
@media(max-width:900px){
  .menu-icon { display:flex; }
  .nav-links { position:absolute; top:70px; left:0; width:100%; background:#0d1e34; flex-direction:column; align-items:center; gap:1rem; padding:1rem 0; transform:translateY(-150%); transition: transform .32s ease; overflow:hidden; }
  #menu-toggle:checked ~ .nav-links { transform:translateY(0); }
  #menu-toggle:checked + label .bar1 { transform:rotate(45deg) translate(6px,6px); }
  #menu-toggle:checked + label .bar2 { opacity:0; }
  #menu-toggle:checked + label .bar3 { transform:rotate(-45deg) translate(6px,-6px); }
  .nav-links a { font-size:1.1rem; padding:.5rem 0; width:100%; text-align:center; }
}

/* --- Hero Section --- */
.hero {
  position:relative;
  width:100%;
  min-height: 100svh;
  height: auto;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-video {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events: none;
  z-index:1;
}

/* Overlay con contenido centrado */
.hero-overlay {
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:1rem;
  padding:0 1rem;
}

.hero-logo {
  height: min(25vw, 200px) ; /* forzamos la altura deseada */
  width: auto;   /* mantiene proporción */
  margin-bottom: 0.5rem; /* espacio entre logo y título */
  image-rendering: -webkit-optimize-contrast;
}

/* Título */
.hero-title {
  font-family:'Fira Sans', sans-serif;
  font-size:72px;
  line-height:1.1;
}

.hero-title .bold { font-weight:900; }

/* Subtítulo */
.hero-subtitle {
  font-family:'Gotham', sans-serif;
  font-size:28px;
  font-weight:700;
}

/* Ajuste responsive */
@media(max-width:600px){
  .hero-title { font-size:42px; }
  .hero-subtitle { font-size:20px; }
  .hero-logo { max-width:50vw; }
}

/* --- DESTINOS QUE NO TE PODES PERDER --- */

.section-title-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.section-title {
  font-family: 'Fira Sans', sans-serif;
  font-size: 45px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-align: center;
  line-height: 1.1;
  color: #0d1e34;
} 
.section-icon {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.section-icon-left {
  margin-bottom: 3.5rem;
  height: 28px;
  width: auto;
}

.section-icon-right {
  margin-bottom: 3.5rem;
  height: 43px;
  width: auto;
}


/* --- ABOUT SECTION --- */
.about {
  background:#fff;
  padding:6rem 2rem;
  display:flex;
  justify-content:center;
}

.about-container {
  max-width:1200px;
  width:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap:3rem;
}

/* --- TÍTULOS ABOUT --- */
.about-title {
  display:flex;
  align-items:flex-start;
  gap:1rem;
  margin-bottom:1.5rem;
}

.about-icon {
  width:80px;
  height:auto;
  margin-top:0.3rem;
}

.about-title-text {
  display:flex;
  flex-direction:column;
  gap:0.1rem;
}

.title-main {
  font-family:'Fira Sans', sans-serif;
  font-size:55px;
  font-weight:900;
  color:#0d1e34;
  line-height:1.1;
}

.title-sub {
  font-family:'Fira Sans', sans-serif;
  font-size:45px;
  font-weight:400;
  color:#0d1e34;
  line-height:1.1;
}

/* --- TEXTO ABOUT --- */
.about-text p {
  font-family:'Gotham', sans-serif;
  font-size:22px;
  color:#222;
  line-height:1.7;
  margin-bottom:1rem;
  text-align:justify;
}

/* --- IMAGEN ABOUT --- */
.about-image img {
  width:100%;
  height: auto;
  max-width: 520px;
  border-radius:4px;
  border:2px solid #c5c5ff;
  object-fit:contain;
  display: block;
  margin: 0 auto;
}


/* --- BOTONES GENERALES --- */
.about-buttons {
  display:flex;
  gap:1.5rem;
  margin-top:2rem;
}

.btn {
  display:inline-block;
  padding:0.9rem 2.2rem;
  border-radius:999px;
  text-decoration:none;
  text-align:center;
  font-family:'Gotham', sans-serif;
  font-size:20px;
  font-weight:700;
  color:#fff;
  transition:all .25s ease;
}

.btn-primary,
.btn-secondary {
  background:#ff9600;
}

.btn:hover {
  background:#e57f00;
}

/* --- RESPONSIVE ABOUT --- */
@media(max-width:900px){
  .about-container {
    grid-template-columns:1fr;
    text-align:center;
  }
  .about-image {
    order:-1;
  }
  .about-title {
    justify-content:center;
    margin-right: 300px;
  }
  .about-buttons {
    justify-content:center;
    flex-wrap:wrap;
  }
  .about-image img {
    margin-left:0;
  }
}

/* ================================================= */
/* --- SECCIONES AGREGADAS --- */
/* ================================================= */

/* --- TÍTULOS DE SECCIÓN REUTILIZABLES --- */
.section-title {
  font-family: 'Fira Sans', sans-serif;
  font-size: 45px;
  font-weight: 900;
  color: #0d1e34;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: 'Fira Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #7fb1ff;
  margin-bottom: 3rem;
}

/* --- SERVICES SECTION --- */
.services {
  background: #f4f7fa;
  padding: 6rem 2rem;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Estilo de la tarjeta individual (Servicios) */
.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(13, 30, 52, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(13, 30, 52, 0.15);
}

.service-icon {
  width: 90px;
  height: auto;
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: 'Fira Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0d1e34;
  margin-bottom: 1rem;
}

.card-description {
  font-family: 'Gotham', sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Botón dentro de la tarjeta de servicios */
.btn-card {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Gotham', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0d1e34;
  background: transparent;
  border: 2px solid #0d1e34;
  transition: all 0.25s ease;
}

.btn-card:hover {
  color: #fff;
  background: #0d1e34;
  border-color: #0d1e34;
}

/* Responsive para la sección de servicios */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-header {
    padding-left: 16px; /* mismo que el wrapper */
  }
  #destinations-carousel {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 38px;
  }
  .section-subtitle {
    font-size: 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 769px) {
  .card-package {
    flex: 0 0 300px;
    margin: 0 12px;
  }
}

/* --- DESTINATIONS/CAROUSEL SECTION --- */
.destinations {
  background: #0d1e34; /* Color de fondo oscuro */
  padding: 6rem 0;
  text-align: center;
}

.destinations .section-title {
  color: #fff; /* Título en blanco */
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.destinations-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* CAROUSEL BASE */
.carousel-wrapper {
  position: relative; 
  width: 100%;
}

.carousel-viewport {
  width: 100%
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: stretch;
}

.carousel-track,
.card-package {
  pointer-events: auto;
}

/* CAROUSEL BUTTONS VIEJO */
/*.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999; 
  pointer-events: auto;
  background-color: #ff9600; }
  
  .carousel-btn svg,
.carousel-btn i {
  font-size: 22px;
  color: #fff;
}


.carousel-btn.prev {
  left: -28px;
}

.carousel-btn.next {
  right: -28px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  background-color: #e68600;
}
  */


/* --- CARD STYLE (Destinos) --- */
.card-package {
  flex: 0 0 auto;
  width: 280px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.card-image-container {
  position: relative;
  height: 250px;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Encabezado sobre la imagen */
.card-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 1.5rem 1rem 0.75rem;
  text-align: left;
}

.package-name {
  font-family: 'Fira Sans', sans-serif;
  font-size: 21px;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

.package-price {
  font-family: 'Fira Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Cuerpo de la tarjeta */
.card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-details {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.package-details li {
  font-family: 'Gotham', sans-serif;
  font-size: 15px;
  color: #222;
  line-height: 1.8;
  padding-left: 1.2rem;
  position: relative;
}

.package-details li::before {
  content: '•';
  color: #ff9600; /* Punto de color naranja */
  font-weight: 900;
  position: absolute;
  left: 0;
}

/* Botón de WhatsApp (usa la clase .btn pero sobrescribimos el estilo) */
.btn-whatsapp {
  background: #ff9600;
  color: #fff;
  font-family: 'Gotham', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  width: 100%;
  margin-top: auto;
}

.btn-whatsapp:hover {
  background: #e57f00;
}






@media (max-width: 600px) {
  .card-package {
    flex: 0 0 calc(100% - 20px); /* 1 tarjeta por fila en móvil */
  }
  .carousel-btn {
    top: 30%;
    font-size: 1.5rem;
    padding: 8px 12px;
  }
  .destinations {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}

/*.destinations {
  background: #0d1e34;
  padding: 6rem 0;
  text-align: center;
}*/


.destinations .section-title {
  color: #fff;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

/*.destinations-container {
  max-width: 1400px;
  margin: 0 auto;
}*/

/* --- TRACK DEL CAROUSEL --- */
#destinations-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* --- BOTONES DEL CAROUSEL --- */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff9600;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 50;
  font-size: 2rem;
  border-radius: 50%;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* --- CARD STYLE (Destinos) --- */
.card-package {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.card-package:hover {
  transform: translateY(-5px);
}

.card-image-container {
  position: relative;
  height: 250px;
}

.card-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Encabezado sobre la imagen */
.card-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  color: #fff;
  padding: 1.5rem 1rem 0.75rem;
  text-align: left;
}

.package-name {
  font-family: 'Fira Sans', sans-serif;
  font-size: 21px;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

.package-price {
  font-family: 'Fira Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

/* Cuerpo de la tarjeta */
.card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-details {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.package-details li {
  font-family: 'Gotham', sans-serif;
  font-size: 15px;
  color: #222;
  line-height: 1.8;
  padding-left: 1.2rem;
  position: relative;
}

.package-details li::before {
  content: '•';
  color: #ff9600;
  font-weight: 900;
  position: absolute;
  left: 0;
}

/* Botón de WhatsApp */
.btn-whatsapp {
  background: #ff9600;
  color: #fff;
  font-family: 'Gotham', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  width: 100%;
  margin-top: auto;
  transition: background 0.25s ease;
}

.btn-whatsapp:hover {
  background: #e57f00;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .card-package {
    width: 280px;
  }
}

@media (min-width: 1024px) {
  .carousel-wrapper {
    padding-left: 16px;   /* antes 40px */
    padding-right: 40px;
  }
  
}

@media (max-width: 900px) {
  .card-package {
    width: 260px;
  }
}

@media (max-width: 600px) {
  .carousel-wrapper {
    padding: 0;
  }

  #destinations-carousel {
    gap: 0;
  }

  .card-package {
    width: 100%;
    margin: 0;
    flex: 0 0 100%;
  }

  .carousel-btn {
    top: 35%;
    font-size: 1.4rem;
  }
}

.services2 {
  padding: 4rem 0;
  background-color: #fff;
}

.services2-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services2 .section-title {
  font-family: 'Fira Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0c1e35;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.title-icon {
  width: 28px;
  height: auto;
}

.title-icon-left {
  width: auto;
  margin-bottom: 6px; /* ajuste visual fino */
}

.title-icon-right {
  width:100px;
  margin-bottom: 4px;
}

.services2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem 3rem;
}

.service2-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.service2-item img {
  width: 150px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.service2-text h3 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0c1e35;
  margin-bottom: 0.4rem;
}

.service2-text p {
  font-family: 'Gotham', sans-serif;
  font-size: 1rem;
  color: #333;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .service2-item {
    flex-direction: column;
    text-align: center;
  }

  .service2-item img {
    width: 100%;
    height: auto;
  }
}

/* ================================
   RESEÑAS CON IMAGEN DE FONDO
================================ */

.reviews-section {
  min-height: 100vh;
  background-image: url("https://res.cloudinary.com/dg0nnkm0z/image/upload/v1766359032/FondoRese%C3%B1as_fakoh4.png"); /* TU IMAGEN */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.reviews-overlay {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.reviews-title {
  text-align: center;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 3rem;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* CARD */
.review-card {
  background: rgba(13, 30, 52, 0.85);
  color: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.review-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-card span {
  color: #ff9f0a;
  font-weight: 700;
}

/* BOTÓN */
.reviews-btn-wrapper {
  margin-top: 3.5rem;
  text-align: center;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-title {
    font-size: 2.2rem;
  }

  .review-card {
    padding: 1.5rem;
  }
}

/* Imagen de contacto */
.about-image-section {
  text-align: center;
  background-color: #0b1422;
  padding: 0;
}

.about-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  animation: fadeIn 1.5s ease;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* SECCION CONTACTO*/

.contact-section {
  background-color: #0e1a2b;
  font-family: "Gotham", sans-serif;
  color: #ffffff;
  width: 100vw;
  max-width: none;
  overflow-x: hidden;
  padding: 4rem 2rem;
}


.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* LOGOS REDES SOCIALES */

.social-grid {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-item img {
  width: 28px;
  height: auto;
  margin-bottom: 0.4rem;
}

.social-item span {
  font-size: 14px;
  color: #d1e1ff;
}

/* Imagen grande .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}*/

.contact-image {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: auto;
  max-width: 1000px; /* ACA controlás el tamaño grande */
  height: auto;
  object-fit: contain;
  
}



/*RESPONSIVE*/
@media (max-width: 900px) {
  .social-grid {
    justify-content: center;
  }
}


/* Íconos */
.icon {
  width: 20px;
  height: auto;
}

/* Agencia  VIEJO
.agency-info {
  margin-top: 2rem;
}

.agency-info p {
  font-size: 15px;
  color: #b3c3e3;
}

*/


/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

}

@media (min-width: 1200px) {
  .contact-image img {
    max-height: 480px;
  }
  .contact-info h3 {
  font-family: "Fira Sans", sans-serif;
  font-size: 30px;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.contact-info p {
  display: flex;
  font-family: "Fira Sans", sans-serif;
  align-items: center;
  gap: 0.6rem;
  font-size: 20px;
  color: #d1e1ff;
  margin-bottom: 0.4rem;
}
}
/* AGENCIA */
.agency-info {
  margin-top: 2rem;
  font-size: 15px;
  color: #b9c9ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-item,
  .social-links a {
    justify-content: center;
  }
}
/* Franja institucional */
.logos-section {
  background-color: #ffffff;
  padding: 1rem 0;
  border-top: 2px solid #e0e0e0;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.logos-container img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logos-container {
    gap: 1.5rem;
  }

  .logos-container img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-icon {
    height: 22px;
  }

  .section-icon-right {
    height: 26px;
  }
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y; 
}

.carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}

.carousel-track:active {
  cursor: grabbing;
}

/* CARD */
.card-package {
  flex: 0 0 auto;
  width: 300px;
  margin: 0 10px;
}

/*HIGHLIGHTS */
.section-highlight {
  animation: sectionGlow 1.2s ease-out;
}

@keyframes sectionGlow {
  0% {
    box-shadow: 0 0 0 rgba(0, 140, 255, 0);
    transform: scale(0.985);
  }
  40% {
    box-shadow: 0 0 40px rgba(0, 140, 255, 0.35);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 140, 255, 0);
    transform: scale(1);
  }
}

/* BOTONES */
.carousel-btn {
  
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff9600;
  color: #fff;
  border: none;
  padding: 0px 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  font-size: 1.8rem;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: #e68600;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

/* Responsive Carousel */
@media (max-width: 768px) {

  .carousel-btn {
    top: 30%;
  }

  .carousel-btn.prev {
    left: 4px;
  }

  .carousel-btn.next {
    right: 4px;
  }
}

main, section {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .contact-image img {
    max-width: 90vw;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .contact-info {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-info p {
    justify-content: center;
    margin-bottom: 0.9rem;
  }

  .contact-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .contact-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 900px) {

  .about {
    padding: 4rem 1.5rem;
    overflow: visible;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  .about-title {
    justify-content: center;
    text-align: center;
  }

  .about-title-text {
    align-items: center;
  }

  .about-text p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }


}
@media (max-width: 900px) {

  .about {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    box-sizing: border-box;
  }

  .about-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}

@media (max-width: 900px) {

  .about-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .about-image img {
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
  }

}

@media (max-width: 900px) {

  .about-title,
  .about-title-text,
  .about-text {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .title-main {
    font-size: 36px;
    line-height: 1.2;
  }

  .title-sub {
    font-size: 28px;
    line-height: 1.2;
  }

}

@media (max-width: 900px) {

  .about,
  .about * {
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

}
#descubri,
#servicios,
#destinos,
#contactos {
  scroll-margin-top: 100px;
}

#quienes-somos-anchor {
  position: relative;
  top: -69px; /* altura del navbar */
  height: 0;
}
#destinos-anchor {
  position: relative;
  top: -69px; /* altura del navbar */
  height: 0;
}

#destinos-anchor {
  position: relative;
  top: -69px; /* altura del navbar */
  height: 0;
}

#servicios-anchor {
  position: relative;
  top: -69px; /* altura del navbar */
  height: 0;
}

.footer-legal {
  padding: 1.5rem 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  font-family: 'Fira Sans', sans-serif;
  font-size: 0.75rem;
  line-height: 1.4;

  color:#0c1e35;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto; /* solo centrado horizontal */
}

.footer-legal-wrapper {
  width: 100%;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .footer-legal {
    font-size: 0.7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
a {
    color: #d1e1ff; /* Color inicial del enlace (azul) */
    text-decoration: none; /* Opcional: quitar el subrayado */
}

/* Para evitar que cambie a morado/rosa al ser visitado */
a:visited {
    color: #d1e1ff; /* Mismo color que el enlace no visitado */
}

/* Opcional: Estilo al pasar el ratón */
a:hover {
    color:#d1e1ff; /* Un azul más oscuro */
    text-decoration:underline; /* Opcional: subrayado al pasar */
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.hero-video {
  pointer-events: none;
}