
:root{
  --navy:#062d58;
  --navy-2:#031d3a;
  --blue:#0d6fa4;
  --turquoise:#10a9b5;
  --aqua:#52d3d8;
  --pink:#e51f5b;
  --yellow:#ffc718;
  --green:#0d6b39;
  --sand:#f4e5c0;
  --white:#ffffff;
  --ink:#11243a;
  --muted:#607186;
  --surface:#f6fbff;
  --shadow:0 20px 55px rgba(4,39,72,.18);
  --radius:26px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(82,211,216,.10), transparent 20%),
    linear-gradient(#fff,#f4fbff);
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit}
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:50;
  padding:14px 24px;
  transition:.3s ease;
}
.site-header.scrolled{
  padding-top:8px;
  padding-bottom:8px;
  background:rgba(3,29,58,.94);
  backdrop-filter:blur(16px);
  box-shadow:0 12px 35px rgba(0,0,0,.16);
}
.header-inner{
  max-width:1220px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:white;
}
.brand-mark{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--yellow),#ff9b13);
  color:var(--navy);
  box-shadow:0 8px 20px rgba(255,199,24,.25);
  font-size:22px;
}
.brand strong{display:block;letter-spacing:.04em;font-size:1rem}
.brand small{display:block;opacity:.76;margin-top:2px}
.main-nav{display:flex;align-items:center;gap:26px;color:white;font-weight:700;font-size:.94rem}
.main-nav a{position:relative}
.main-nav a:not(.nav-cta)::after{
  content:"";position:absolute;left:0;bottom:-6px;width:0;height:2px;
  background:var(--yellow);transition:.25s ease
}
.main-nav a:hover::after,.main-nav a.active::after{width:100%}
.nav-cta{
  padding:11px 17px;border-radius:999px;
  background:var(--yellow);color:var(--navy);
  box-shadow:0 10px 30px rgba(255,199,24,.24)
}
.menu-toggle{display:none;border:0;background:transparent;padding:8px;cursor:pointer}
.menu-toggle span{display:block;width:26px;height:2px;background:white;margin:5px;border-radius:2px}

.hero{
  min-height:920px;
  position:relative;
  overflow:hidden;
  padding:150px 24px 150px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(520px,1.15fr);
  align-items:center;
  gap:42px;
  background:
    radial-gradient(circle at 85% 28%,rgba(16,169,181,.42),transparent 29%),
    radial-gradient(circle at 15% 75%,rgba(229,31,91,.14),transparent 26%),
    linear-gradient(135deg,#031d3a 0%,#064b7a 47%,#078fa5 100%);
}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,black,transparent 75%);
}
.hero-content{
  max-width:640px;
  justify-self:end;
  position:relative;z-index:3;
  color:white;
}
.eyebrow,.kicker{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.77rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase;
}
.eyebrow{
  padding:9px 13px;border:1px solid rgba(255,255,255,.22);
  border-radius:999px;background:rgba(255,255,255,.08);backdrop-filter:blur(10px)
}
.hero h1{
  margin:24px 0 18px;
  font-size:clamp(3rem,5.7vw,6.2rem);
  line-height:.91;
  letter-spacing:-.055em;
  max-width:760px;
}
.hero p{font-size:1.18rem;line-height:1.7;max-width:600px;color:rgba(255,255,255,.85)}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 22px;border-radius:999px;
  font-weight:900;border:1px solid transparent;transition:.25s ease
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{background:var(--yellow);color:var(--navy);box-shadow:0 14px 32px rgba(255,199,24,.26)}
.btn-secondary{border-color:rgba(255,255,255,.35);color:white;background:rgba(255,255,255,.08);backdrop-filter:blur(8px)}
.contact-pill{
  display:inline-flex;align-items:center;gap:14px;
  margin-top:26px;padding:12px 16px;border-radius:16px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14)
}
.contact-pill span{opacity:.72}.contact-pill strong{font-size:1.12rem}

.hero-collage{
  position:relative;
  width:min(670px,100%);
  height:680px;
  justify-self:start;
  z-index:2;
}
.poster{
  position:absolute;
  margin:0;
  width:320px;
  overflow:hidden;
  border:8px solid rgba(255,255,255,.92);
  border-radius:18px;
  box-shadow:0 30px 70px rgba(0,0,0,.34);
  background:white;
  transition:.35s ease
}
.poster:hover{transform:translateY(-10px) rotate(0deg)!important;z-index:5}
.poster img{width:100%;height:auto}
.poster-left{left:0;top:130px;transform:rotate(-8deg)}
.poster-main{left:170px;top:0;width:350px;z-index:3;transform:rotate(2deg)}
.poster-right{right:0;top:165px;transform:rotate(8deg)}
.hero-orb{position:absolute;border-radius:50%;filter:blur(2px);pointer-events:none}
.orb-one{width:180px;height:180px;background:rgba(255,199,24,.13);right:9%;top:15%}
.orb-two{width:280px;height:280px;background:rgba(229,31,91,.12);left:-80px;bottom:18%}
.wave{position:absolute;left:0;right:0;bottom:-1px;height:160px}
.wave svg{width:100%;height:100%}.wave path{fill:#fff}

.quick-info{
  width:min(1180px,calc(100% - 40px));
  margin:-58px auto 0;
  position:relative;z-index:6;
  padding:18px;
  background:white;
  border-radius:24px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.quick-info article{display:flex;align-items:center;gap:13px;padding:14px 12px;border-radius:17px}
.quick-info article:hover{background:#f1fbfd}
.info-icon{width:42px;height:42px;border-radius:14px;display:grid;place-items:center;background:linear-gradient(135deg,var(--turquoise),var(--blue));color:white;font-size:18px}
.quick-info small{display:block;color:var(--muted);font-weight:700;margin-bottom:3px}
.quick-info strong{font-size:.98rem}

.section{padding:110px 24px}
.section-head{max-width:760px;margin:0 auto 48px;text-align:center}
.kicker{color:var(--pink)}
.kicker.light{color:var(--yellow)}
.section h2{
  margin:10px 0 16px;
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1;
  letter-spacing:-.04em;
}
.section-head p{margin:0 auto;color:var(--muted);font-size:1.04rem;line-height:1.7}

.promotions{max-width:1320px;margin:auto}
.travel-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
.travel-card{
  background:white;border:1px solid #dfebf4;border-radius:var(--radius);overflow:hidden;
  box-shadow:0 15px 45px rgba(8,54,90,.09);transition:.3s ease
}
.travel-card:hover{transform:translateY(-8px);box-shadow:0 28px 70px rgba(8,54,90,.16)}
.travel-card.featured{transform:translateY(-14px)}
.travel-card.featured:hover{transform:translateY(-22px)}
.card-poster{position:relative;background:#e8f5fa;overflow:hidden;max-height:590px}
.card-poster img{width:100%;height:100%;object-fit:cover;object-position:top}
.zoom-btn{
  position:absolute;right:14px;bottom:14px;border:0;border-radius:999px;
  background:rgba(3,29,58,.9);color:white;padding:9px 13px;font-weight:800;cursor:pointer
}
.card-body{padding:26px}
.tag{display:inline-block;padding:7px 10px;border-radius:999px;background:#eef8fb;color:var(--blue);font-weight:900;font-size:.75rem;text-transform:uppercase;letter-spacing:.08em}
.card-body h3{font-size:1.8rem;line-height:1.05;margin:12px 0 22px}
.data-row{display:grid;grid-template-columns:90px 1fr;gap:12px;padding:10px 0;border-bottom:1px solid #edf2f6}
.data-row span{color:var(--muted);font-size:.86rem}.data-row strong{font-size:.92rem;line-height:1.4}
.prices{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:20px 0}
.prices.two{grid-template-columns:1fr 1fr}
.prices div{padding:13px 9px;border-radius:16px;background:#f5f9fc;text-align:center;border:1px solid #e7eef4}
.prices small{display:block;color:var(--muted);font-size:.71rem}.prices strong{display:block;font-size:1.28rem;margin-top:4px;color:var(--navy)}
.note{color:var(--muted);font-size:.88rem;line-height:1.5}
.mini-list{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:18px 0}
.mini-list span{padding:10px;border-radius:12px;background:#f6fafc;font-size:.82rem;font-weight:700}
.highlight{background:#fff7d2;border:1px solid #ffe36d;padding:13px;border-radius:14px;font-weight:800;margin:16px 0;color:#6f5900}
.btn-card{width:100%;background:var(--navy);color:white;border-radius:14px}
.theme-pink .tag{background:#fff0f4;color:var(--pink)}.theme-pink .btn-card{background:var(--pink)}
.theme-yellow .tag{background:#fff8d9;color:#856500}.theme-yellow .btn-card{background:#0d6fa4}
.theme-green .tag{background:#e8f7ef;color:var(--green)}.theme-green .btn-card{background:var(--green)}

.itinerary{
  position:relative;
  background:
    radial-gradient(circle at 10% 20%,rgba(82,211,216,.13),transparent 26%),
    linear-gradient(180deg,#f8fcfe,#eff8fb);
}
.timeline{max-width:1220px;margin:auto;display:grid;grid-template-columns:repeat(5,1fr);gap:14px;position:relative}
.timeline::before{content:"";position:absolute;top:38px;left:5%;right:5%;height:3px;background:linear-gradient(90deg,var(--turquoise),var(--yellow),var(--pink));z-index:0}
.day{
  position:relative;z-index:1;background:white;border:1px solid #dfebf4;border-radius:22px;padding:18px;box-shadow:0 10px 30px rgba(8,54,90,.08)
}
.day-num{
  width:46px;height:46px;border-radius:50%;display:grid;place-items:center;
  background:var(--navy);color:white;font-weight:900;border:5px solid #eff8fb;margin-bottom:16px
}
.day h3{margin:0 0 12px}.day ul,.included-card ul{margin:0;padding-left:18px;color:var(--muted);line-height:1.65}
.included-grid{max-width:1000px;margin:42px auto 0;display:grid;grid-template-columns:1fr 1fr;gap:18px}
.included-card{background:white;border-radius:22px;padding:28px;border-left:6px solid var(--green);box-shadow:0 12px 34px rgba(8,54,90,.08)}
.included-card.no{border-left-color:var(--pink)}.included-card h3{margin-top:0;font-size:1.45rem}

.agency{
  max-width:1240px;margin:auto;
  display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:70px
}
.agency-copy p{font-size:1.12rem;color:var(--muted);line-height:1.7}
.location-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:28px}
.location-cards div{padding:18px;border-radius:18px;background:#f4fbfd;border:1px solid #dceef2}
.location-cards span{display:block;font-size:1.4rem;color:var(--turquoise);margin-bottom:10px}
.location-cards strong{font-size:.9rem}
.photo-stack{position:relative;min-height:580px}
.photo-stack img{
  position:absolute;width:360px;border:8px solid white;border-radius:20px;box-shadow:var(--shadow)
}
.photo-stack img:first-child{right:0;top:0;transform:rotate(5deg)}
.photo-stack img:last-child{left:0;bottom:0;transform:rotate(-7deg)}

.gallery{background:#fff}
.gallery-grid{max-width:1100px;margin:auto;display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:center}
.gallery-item{
  border:0;padding:8px;background:white;border-radius:20px;cursor:pointer;
  box-shadow:0 18px 55px rgba(6,45,88,.14);transition:.3s ease
}
.gallery-item:hover{transform:translateY(-8px) rotate(0deg)!important}
.gallery-item:first-child{transform:rotate(-3deg)}
.gallery-item:last-child{transform:rotate(3deg)}
.gallery-item.raised{transform:translateY(-24px)}
.gallery-item img{width:100%;border-radius:14px}

.contact-section{
  margin:0 24px 24px;
  border-radius:34px;
  background:
    radial-gradient(circle at 80% 20%,rgba(82,211,216,.32),transparent 28%),
    linear-gradient(135deg,var(--navy-2),var(--navy),var(--turquoise));
  color:white;
  overflow:hidden;
}
.contact-inner{
  max-width:1180px;margin:auto;padding:70px 40px;
  display:grid;grid-template-columns:1.3fr .8fr;gap:50px;align-items:center
}
.contact-inner h2{font-size:clamp(2.2rem,4vw,4.2rem);line-height:1;margin:12px 0}
.contact-inner p{color:rgba(255,255,255,.75)}
.contact-actions{display:flex;flex-direction:column;gap:16px;align-items:flex-start}
.phone{font-size:clamp(2rem,4vw,3.4rem);font-weight:950;letter-spacing:-.04em}
.btn-whatsapp{background:var(--yellow);color:var(--navy);min-width:280px}

.footer{
  background:#02182f;color:white;padding:34px max(24px,calc((100% - 1180px)/2));
  display:grid;grid-template-columns:1fr auto auto;gap:40px;align-items:center
}
.footer strong{font-size:1.1rem}.footer p{margin:5px 0 0;color:rgba(255,255,255,.65);font-size:.88rem}
.footer>div:nth-child(2){display:flex;gap:18px;color:rgba(255,255,255,.78);font-size:.9rem}
.footer-phone{font-weight:900;color:var(--yellow)}

.floating-wa{
  position:fixed;right:22px;bottom:22px;z-index:40;
  display:flex;align-items:center;gap:10px;padding:13px 16px;
  border-radius:999px;background:#20b85a;color:white;font-weight:900;
  box-shadow:0 14px 34px rgba(10,124,56,.3);transition:.25s ease
}
.floating-wa:hover{transform:translateY(-4px)}
.floating-wa span{font-size:1.2rem}.floating-wa em{font-style:normal}

.lightbox{
  width:min(94vw,900px);max-height:92vh;border:0;border-radius:24px;padding:14px;
  background:#fff;box-shadow:0 30px 100px rgba(0,0,0,.45)
}
.lightbox::backdrop{background:rgba(0,15,30,.82);backdrop-filter:blur(8px)}
.lightbox img{max-height:84vh;margin:auto;border-radius:14px}
.lightbox-close{
  position:absolute;right:18px;top:18px;width:42px;height:42px;border:0;border-radius:50%;
  background:rgba(3,29,58,.92);color:white;font-size:28px;cursor:pointer;z-index:2
}

.reveal{opacity:1;transform:none}
.js-ready .reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease, transform .7s ease}
.js-ready .reveal.visible{opacity:1;transform:none}

@media (max-width:1100px){
  .hero{grid-template-columns:1fr;padding-top:140px;min-height:auto}
  .hero-content{justify-self:center;text-align:center}
  .hero p{margin-inline:auto}.hero-actions{justify-content:center}.contact-pill{margin-inline:auto}
  .hero-collage{justify-self:center;height:650px}
  .travel-grid{grid-template-columns:1fr 1fr}.travel-card.featured{transform:none;grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr}
  .travel-card.featured:hover{transform:translateY(-8px)}
  .timeline{grid-template-columns:repeat(3,1fr)}.timeline::before{display:none}
  .agency{grid-template-columns:1fr}.agency-art{max-width:680px;width:100%;margin:auto}
}
@media (max-width:820px){
  .site-header{background:rgba(3,29,58,.84);backdrop-filter:blur(12px)}
  .menu-toggle{display:block}
  .main-nav{
    position:absolute;top:70px;left:16px;right:16px;display:none;flex-direction:column;align-items:stretch;
    background:rgba(3,29,58,.98);padding:18px;border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,.25)
  }
  .main-nav.open{display:flex}.main-nav a{padding:10px 8px}.nav-cta{text-align:center}
  .hero{padding-inline:18px;padding-bottom:120px}
  .hero h1{font-size:clamp(3rem,12vw,5rem)}
  .hero-collage{height:auto;display:flex;gap:14px;overflow-x:auto;width:100%;scroll-snap-type:x mandatory;padding:20px 8px 35px}
  .poster,.poster-left,.poster-main,.poster-right{
    position:relative;inset:auto;transform:none;width:78vw;min-width:78vw;border-width:6px;scroll-snap-align:center
  }
  .quick-info{grid-template-columns:1fr 1fr}
  .travel-grid{grid-template-columns:1fr}
  .travel-card.featured{grid-column:auto;display:block}
  .timeline{grid-template-columns:1fr 1fr}
  .included-grid{grid-template-columns:1fr}
  .agency{gap:20px}.photo-stack{min-height:500px}.photo-stack img{width:320px}
  .gallery-grid{grid-template-columns:1fr 1fr}.gallery-item.raised{transform:none}.gallery-item:last-child{grid-column:1/-1;max-width:50%;justify-self:center}
  .contact-inner{grid-template-columns:1fr;padding:54px 26px}.footer{grid-template-columns:1fr;text-align:center}.footer>div:nth-child(2){justify-content:center}
}
@media (max-width:560px){
  .site-header{padding-inline:14px}.brand small{display:none}
  .hero{padding-top:120px}.eyebrow{font-size:.66rem}.hero p{font-size:1rem}.hero-actions{flex-direction:column}.btn{width:100%}
  .poster,.poster-left,.poster-main,.poster-right{width:86vw;min-width:86vw}
  .quick-info{grid-template-columns:1fr;margin-top:-38px}
  .section{padding:82px 16px}.section-head{margin-bottom:34px}
  .card-poster{max-height:none}.card-poster img{object-fit:contain}
  .prices,.prices.two{grid-template-columns:1fr 1fr}.prices div:last-child:nth-child(odd){grid-column:1/-1}
  .mini-list{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .location-cards{grid-template-columns:1fr}
  .photo-stack{min-height:620px}.photo-stack img{width:80%}.photo-stack img:first-child{right:0}.photo-stack img:last-child{left:0}
  .gallery-grid{grid-template-columns:1fr}.gallery-item,.gallery-item:first-child,.gallery-item:last-child,.gallery-item.raised{transform:none;max-width:none;grid-column:auto}
  .contact-section{margin:0 10px 10px;border-radius:24px}.contact-inner{padding:45px 20px}.btn-whatsapp{min-width:0;width:100%}
  .floating-wa{right:14px;bottom:14px}.floating-wa em{display:none}
}
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important;animation:none!important;transition:none!important}
  .reveal,.js-ready .reveal{opacity:1;transform:none}
}
