:root{
  --bg: #060b14;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.06);
  --text: #eef4ff;
  --muted: rgba(238,244,255,.75);
  --line: rgba(255,255,255,.14);
  --brand: #40c1ff;
  --brand2: #2de2a6;
  --warn: #ffcc66;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 900px at 15% 10%, rgba(64,193,255,.16), transparent 60%),
    radial-gradient(1000px 700px at 85% 25%, rgba(45,226,166,.14), transparent 55%),
    radial-gradient(900px 600px at 65% 90%, rgba(255,204,102,.10), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{width:min(1120px, 92vw); margin:0 auto}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(6,11,20,.55);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:44px;
  height:44px;
  border-radius:50%;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.brand__text{line-height:1.05}
.brand__text strong{font-weight:800;letter-spacing:.2px}
.brand__text span{display:block;font-size:.85rem;color:var(--muted)}

.nav{display:flex;align-items:center;gap:16px}
.nav a{font-size:.95rem;color:var(--muted);padding:8px 10px;border-radius:12px;transition:.2s}
.nav a:hover{background: rgba(255,255,255,.07);color:var(--text)}

.hamburger{display:none; background:transparent; border:1px solid var(--line); color:var(--text);
  border-radius:14px; padding:10px 12px; }

/* Hero */
.hero{
  position:relative;
  padding:58px 0 34px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.hero__card{
  position:relative;
  border-radius: calc(var(--radius) + 10px);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.14);
  min-height: 440px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(6,11,20,.88), rgba(6,11,20,.48) 55%, rgba(6,11,20,.18)),
    url('../assets/images/portada.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero__content{
  position:relative;
  padding:34px 30px;
  display:flex;
  flex-direction:column;
  height:100%;
  justify-content:space-between;
}
.hero__content h1{
  margin:0;
  font-size: clamp(2.1rem, 3.2vw, 3.1rem);
  line-height:1.05;
  letter-spacing:-.6px;
}
.hero__content p{
  margin:14px 0 0;
  color:var(--muted);
  font-size: 1.05rem;
}

.hero__badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  font-size:.9rem;
  color: var(--text);
}
.badge i{opacity:.9}

.cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  transition: .2s;
  cursor:pointer;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09)}
.btn--primary{
  background: linear-gradient(135deg, rgba(64,193,255,.95), rgba(45,226,166,.92));
  color: #061118;
  border: 0;
}
.btn--primary:hover{filter:saturate(1.05) brightness(1.02)}
.btn--ghost{background: rgba(255,255,255,.03)}

.hero__side{
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__sideHeader{
  padding:18px 18px 10px;
  border-bottom:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.hero__sideHeader h3{margin:0;font-size:1rem}
.pill{
  font-size:.85rem;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,204,102,.13);
  border:1px solid rgba(255,204,102,.28);
  color: #ffe1a3;
}
.hero__miniGrid{
  padding:16px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
.miniCard{
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.miniCard img{aspect-ratio: 4/3; object-fit: cover}
.miniCard .miniCard__cap{padding:10px 10px 12px; font-size:.9rem; color:var(--muted)}

/* Sections */
.section{padding:48px 0}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px}
.section__head h2{margin:0;font-size:1.55rem;letter-spacing:-.2px}
.section__head p{margin:0;color:var(--muted)}

.grid3{display:grid;grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(650px 220px at 20% 0%, rgba(64,193,255,.16), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.card > *{position:relative}
.card h3{margin:0 0 8px;font-size:1.1rem}
.card p{margin:0;color:var(--muted);line-height:1.55}
.iconDot{width:10px;height:10px;border-radius:50%;background: linear-gradient(135deg, var(--brand), var(--brand2));display:inline-block;margin-right:8px;box-shadow:0 0 0 5px rgba(64,193,255,.10)}

/* Trips */
.trips{display:grid;grid-template-columns: repeat(12, 1fr); gap:14px}
.trip{
  grid-column: span 4;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 44px rgba(0,0,0,.38);
}
.trip img{width:100%; height: 250px; object-fit: cover}
.trip__body{padding:14px 14px 16px}
.trip__body strong{display:block;font-size:1.02rem;margin-bottom:6px}
.trip__body span{color:var(--muted);font-size:.92rem}

/* Video */
.videoWrap{border-radius: calc(var(--radius) + 10px); overflow:hidden; border:1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); background: rgba(255,255,255,.04)}
.videoWrap iframe{width:100%; aspect-ratio: 16/9; border:0; display:block}

/* Gallery */
.gallery{display:grid;grid-template-columns: repeat(12, 1fr); gap:12px}
.gItem{grid-column: span 4; border-radius: 18px; overflow:hidden; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); cursor:pointer; position:relative}
.gItem img{width:100%; height: 240px; object-fit: cover; transition: transform .25s}
.gItem:hover img{transform: scale(1.03)}
.gItem .gCap{position:absolute;left:10px;bottom:10px;right:10px;padding:10px 12px;border-radius:14px;background: rgba(6,11,20,.62);border:1px solid rgba(255,255,255,.12); color: var(--text); font-size:.92rem}

/* Lightbox */
.lightbox{position:fixed;inset:0;background: rgba(0,0,0,.75);display:none;align-items:center;justify-content:center;padding:24px;z-index:100}
.lightbox.is-open{display:flex}
.lightbox__inner{width:min(1100px, 94vw);border-radius:22px;overflow:hidden;border:1px solid rgba(255,255,255,.18);background: rgba(15,20,32,.85);box-shadow: var(--shadow)}
.lightbox__top{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:12px 12px 10px;border-bottom:1px solid rgba(255,255,255,.12)}
.lightbox__title{color: var(--muted); font-size:.95rem}
.lbBtn{background: rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.16);color: var(--text);padding:10px 12px;border-radius:14px;cursor:pointer}
.lbBtn:hover{background: rgba(255,255,255,.09)}
.lightbox__img{width:100%;max-height: 72vh;object-fit: contain;background: rgba(0,0,0,.25)}

/* Contact */
.contactGrid{display:grid;grid-template-columns: 1fr 1fr;gap:14px}
.contactCard{border-radius: var(--radius);border:1px solid rgba(255,255,255,.12);background: rgba(255,255,255,.04);box-shadow: 0 16px 44px rgba(0,0,0,.35);overflow:hidden}
.contactCard__top{padding:16px 16px 10px;border-bottom:1px solid rgba(255,255,255,.12)}
.contactCard__top h3{margin:0;font-size:1.05rem}
.contactCard__top p{margin:8px 0 0;color:var(--muted)}
.contactCard__body{padding:16px}
.kv{display:flex;gap:10px;align-items:flex-start;margin:10px 0;color:var(--muted)}
.kv strong{color:var(--text);font-weight:700}
.formRow{display:grid;grid-template-columns: 1fr 1fr; gap:10px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
input:focus, textarea:focus{border-color: rgba(64,193,255,.55);box-shadow: 0 0 0 4px rgba(64,193,255,.10)}
.formActions{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap}
.small{font-size:.9rem;color:var(--muted)}

/* Social */
.socialWrap{border-radius: var(--radius);border:1px solid rgba(255,255,255,.12);background: rgba(255,255,255,.04);overflow:hidden}
.socialWrap__top{padding:14px 14px 10px;border-bottom:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:space-between;gap:12px}
.socialWrap__top h3{margin:0;font-size:1.05rem}
.socialWrap__body{padding:14px}
.socialLinks{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}

/* Map */
.map{border-radius: calc(var(--radius) + 10px); overflow:hidden; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); box-shadow: var(--shadow)}
.map iframe{width:100%;height:360px;border:0;display:block}

/* Footer */
.footer{padding:26px 0 18px;border-top:1px solid rgba(255,255,255,.12);background: rgba(6,11,20,.55)}
.footer__grid{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer__brand{margin:0;font-weight:800}
.footer__muted{margin:6px 0 0;color:var(--muted)}
.footer__links{display:flex;gap:14px;flex-wrap:wrap;color:var(--muted)}
.footer__links a:hover{color:var(--text)}
.footer__bottom{padding-top:14px;margin-top:14px;border-top:1px solid rgba(255,255,255,.10);color:var(--muted)}
.footer__bottom a{color: var(--text)}

/* WhatsApp float */
.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(45,226,166,.95), rgba(64,193,255,.88));
  box-shadow: 0 18px 46px rgba(0,0,0,.45);
  z-index:90;
  border:0;
}
.whatsapp svg{width:28px;height:28px;fill:#051016}
.whatsapp:hover{transform: translateY(-2px)}

/* Reveal */
.reveal{opacity:0; transform: translateY(14px); transition: .6s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr;}
  .hero__card{min-height: 420px}
  .trips .trip{grid-column: span 6}
  .gItem{grid-column: span 6}
  .contactGrid{grid-template-columns: 1fr}
}

@media (max-width: 720px){
  .nav{display:none}
  .hamburger{display:inline-flex}
  .nav.is-open{display:flex;flex-direction:column;align-items:flex-start;position:absolute;left:0;right:0;top:72px;padding:14px 4vw 16px;background: rgba(6,11,20,.92);border-bottom:1px solid var(--line)}
  .hero{padding-top:34px}
  .hero__content{padding:26px 18px}
  .grid3{grid-template-columns: 1fr}
  .trips .trip{grid-column: span 12}
  .gItem{grid-column: span 12}
  .formRow{grid-template-columns: 1fr}
  .map iframe{height:320px}
}
