:root{
  --navy:#041b4f;
  --navy2:#0a2f7a;
  --yellow:#f4b400;
  --cyan:#38bdf8;
  --white:#ffffff;
  --text:#0b1f4d;
  --light:#f5f7fb;
}

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  background:var(--light);
  color:var(--text);
}


.container{
  width: 90%;
  margin:auto;
}

/* TOPBAR */
.topbar{
  background:var(--navy);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 6px 20px rgba(0,0,0,.25);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.logo img{
  height: 60px;
}

.menu{
  display:flex;
  gap:34px;
}

.menu a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  letter-spacing:.5px;
}

.hamburger{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

/* HERO */
.hero{
  background:
    radial-gradient(circle at 80% 20%, rgba(56,189,248,.15), transparent 30%),
    linear-gradient(135deg,var(--navy),var(--navy2));
  color:#fff;
  padding:48px 0 36px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .55fr;
  gap:32px;
}

.hero-title h1{
  font-size:54px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-1px;
}

.hero-title span{
  color:var(--yellow);
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:26px 0 22px;
}

.chips span{
  background:var(--yellow);
  color:var(--navy);
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
}

.hero-quote{
  color:#d7e3ff;
  max-width:620px;
  line-height:1.6;
  margin-bottom:24px;
  font-size:26px;
}

.team{
  width:100%;
  max-width:780px;
  display:block;
}




                /* =========================================================
           ESTILOS CORREGIDOS PARA EL SLIDER DE AIROTUR (CONTRA FONDO OSCURO)
           ========================================================= */
        
        /* 1. El contenedor principal: Oculta lo que se desborda y define el área visible */
        .at-slider-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden; /* ¡CRUCIAL! Esto oculta las imágenes no activas */
            display: block;
        }
        
        /* 2. El carrete de imágenes: Fuerza la alineación horizontal y la transición suave */
        .at-slides-wrapper {
            display: flex; /* ¡CRUCIAL! Pone las imágenes en fila */
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Movimiento suave */
            width: 100%;
            height: auto;
        }
        
        /* 3. Cada diapositiva: Debe ocupar exactamente el 100% del contenedor */
        .at-slide {
            min-width: 100%;
            width: 100%;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* Las imágenes dentro de cada diapositiva */
        .at-slide img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* 4. Estilos para los botones (Visibles sobre fondo oscuro) */
        .at-slider-btn {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: auto;
            padding: 20px 15px;
            margin-top: -25px; /* Ajuste fino de centrado */
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 0 5px 5px 0;
            user-select: none;
            z-index: 10;
            border: none;
            background-color: rgba(0, 0, 0, 0.4); /* Fondo negro semitransparente para que resalte */
        }
        
        .at-slider-btn:hover {
            background-color: rgba(0, 0, 0, 0.8); /* Más oscuro al pasar el mouse */
        }
        
        .at-next {
            right: 0;
            border-radius: 5px 0 0 5px;
        }
        
        .at-prev {
            left: 0;
        }
        
        /* 5. Estilos para los puntos (Visibles sobre fondo oscuro) */
        .at-slider-dots {
            position: absolute;
            bottom: 25px; /* Separación del borde inferior */
            width: 100%;
            text-align: center;
            z-index: 10;
            display: flex;
            justify-content: center;
            gap: 10px; /* Espacio entre puntos */
        }
        
        .at-dot {
            cursor: pointer;
            height: 15px;
            width: 15px;
            border-radius: 50%;
            display: inline-block;
            transition: all 0.4s ease;
            box-sizing: border-box;
            
            /* Estilo para que se vea sobre el fondo oscuro */
            background-color: rgba(255, 255, 255, 0.4); /* Blanco semitransparente */
            border: 2px solid #ffffff; /* Borde blanco sólido */
        }
        
        /* Estilo para el punto activo y al pasar el mouse */
        .at-dot:hover, .at-dot.at-active {
            background-color: #ffffff; /* Blanco sólido para resaltar */
        }











.features{
  margin-top:20px;
  background:#07245f;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  padding:18px 20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.features div{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:700;
}

.features span{
  font-size:18px;
}

/* RIGHT */
.hero-right h2{
  font-size:26px;
  font-weight:900;
  margin-bottom:18px;
}

.destino-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 14px 36px rgba(0,0,0,.22);
  margin-bottom:18px;
  width: 80%;
}

.destino-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.destino-info{
  padding:16px 18px 18px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--yellow);
  color:var(--navy);
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  margin-top:-36px;
  position:relative;
}

.price-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-top:14px;
}

.desde{
  font-size:12px;
  font-weight:800;
  color:#4b5b86;
}

.price{
  font-size:30px;
  font-weight:900;
  color:var(--navy);
}

.date{
  margin-top:8px;
  font-weight:800;
  color:#233a72;
}

.btn-more{
  display:block;
  text-align:center;
  background:#0b2c73;
  color:#fff;
  text-decoration:none;
  padding:14px 18px;
  border-radius:16px;
  font-weight:800;
}

/* WHY */
.why{
  background:#fff;
  padding:64px 0;
  border-top-left-radius:48px;
  border-top-right-radius:48px;
  margin-top:-12px;
}

.why h2,
.services h2{
  text-align:center;
  font-size:40px;
  color:var(--navy);
  margin-bottom:36px;
  font-weight:900;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

.why-item{
  text-align:center;
  padding:12px 18px;
  border-right:1px solid #d9e3f6;
}

.why-item:last-child{
  border-right:none;
}

.icon{
  width:96px;
  height:96px;
  border:3px solid #1d4ed81c;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  margin:0 auto 18px;
}

.why-item h3{
  font-size:18px;
  font-weight:900;
  margin-bottom:10px;
}

.why-item p{
  color:#51658f;
  line-height:1.6;
}

/* SERVICES */
.services{
  background:#fff;
  padding:0 0 70px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.service{
  text-align:center;
  padding:18px;
}

.icon-circle{
  width:96px;
  height:96px;
  border-radius:50%;
  background:#0b2c73;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  margin:0 auto 18px;
}

.service h3{
  font-size:18px;
  font-weight:900;
  margin-bottom:10px;
}

.service p{
  color:#51658f;
  line-height:1.6;
}

/* CTA */
.cta{
  padding:10px 0 56px;
}

.cta-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
}

.cta-left{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  min-height:340px;
}

.cta-left img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,27,79,.86),rgba(4,27,79,.2));
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.cta-overlay h2{
  font-size:36px;
  font-weight:900;
  margin-bottom:12px;
}

.cta-overlay p{
  max-width:520px;
  line-height:1.6;
  margin-bottom:18px;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--yellow);
  color:var(--navy);
  text-decoration:none;
  padding:14px 22px;
  border-radius:14px;
  font-weight:900;
}

.testimonial{
  background:#0b2c73;
  color:#fff;
  border-radius:28px;
  padding:34px;
  position:relative;
}

.testimonial h3{
  font-size:26px;
  font-weight:900;
  margin-bottom:12px;
}

.quote-mark{
  font-size:64px;
  color:#39c0ff;
  line-height:1;
}

.testimonial p{
  line-height:1.7;
  margin-bottom:14px;
}

.testimonial strong{
  display:block;
  margin-top:8px;
}

.testimonial span{
  color:#c7d6ff;
}




.logos-azul{
    width: 25px;
    margin-left: 10px;
}

.logos-gol{
    width: 80px;
}


.logos-latam{
    width: 105px;
    margin-top: -14px;
}




.stars{
  color:var(--yellow);
  font-size:24px;
  letter-spacing:3px;
  margin:14px 0 22px;
}

.aerolineas{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  align-items:center;
}

.aerolineas span{
  color:#fff;
  font-weight:800;
  font-size:28px;
}

/* CONTACT */
.contact{
  padding:0 0 36px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr .8fr 1fr;
  gap:20px;
}

.contact-card,
.brand-card,
.qr-card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.contact-card h3,
.qr-card h3{
  color:var(--navy);
  font-size:24px;
  font-weight:900;
  margin-bottom:14px;
}

.contact-card p{
  margin:10px 0;
  color:#30456f;
  line-height:1.6;
}

.brand-card{
  background:#0b2c73;
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.brand-card img{
  width:190px;
  margin:0 auto 16px;
}

.brand-card p{
  font-weight:800;
  line-height:1.7;
}

.qr-card{
  text-align:center;
}

.qr-card p{
  color:#51658f;
  margin-bottom:14px;
}

.qr-card img{
  width:220px;
  background:#fff;
  border-radius:18px;
  border:8px solid #f1f5ff;
}

/* FOOTER */
.footer{
  background:var(--navy);
  color:#fff;
  padding:18px 0;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.socials{
  display:flex;
  gap:12px;
}

.socials a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#0f3a92;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:18px;
}

.footer p{
  font-size:14px;
  font-weight:700;
}



/* Estilos para los botones de las tarjetas de destino */
.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  align-items: center;
}

.btn-reservar {
  flex: 1; /* Ocupa el espacio restante */
  background-color: #25D366; /* Color oficial de WhatsApp */
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Espacio entre el icono y el texto */
}

.btn-reservar:hover {
  background-color: #1ebe57;
  color: #ffffff;
}

.btn-compartir {
  background-color: #f0f0f0;
  color: #333333;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-compartir:hover {
  background-color: #e0e0e0;
  color: #000000;
}





/* RESPONSIVE */
@media (max-width: 1100px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-grid{
    grid-template-columns:1fr;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .menu{
    position:absolute;
    top:88px;
    right:4%;
    background:#06235f;
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:18px;
    flex-direction:column;
    gap:16px;
    min-width:240px;
    display:none;
  }

  .menu.active{
    display:flex;
  }

  .hamburger{
    display:block;
  }

  .hero-title h1{
    font-size:28px;
  }
  
  
  .hero-quote{
      font-size: 15px;
  }



    .chips span {
        
        padding: 6px 7px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 12px;
    }


    .hero-right h2{
        font-size: 24px;
    }


  .features{
    grid-template-columns:1fr;
  }

  .why-grid,
  .services-grid{
    grid-template-columns:1fr;
  }
  
  
  .destino-card{
      width: 100%;
  }


    .cta-overlay h2{
        font-size: 30px;
    }
    
  .why-item{
    border-right:none;
    border-bottom:1px solid #d9e3f6;
    padding-bottom:24px;
  }

  .footer-row{
    flex-direction:column;
    text-align:center;
  }

  .aerolineas span{
    font-size:22px;
  }
}