:root {
  --sea: #031a2e;
  --deep: #052f45;
  --wave: #00c2d4;
  --foam: #7ef0ff;
  --sun: #ffb703;
  --coral: #ff6b4a;
  --sand: #f4fbff;
  --muted: #8fb3c7;
  --white: #ffffff;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bricolage Grotesque", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--sea);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

/* Animated ocean background */
.ocean-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(0,194,212,.25), transparent 45%),
    radial-gradient(ellipse at 80% 0%, rgba(255,183,3,.12), transparent 40%),
    linear-gradient(180deg, #021526 0%, #04304a 45%, #021526 100%);
}
.bubbles { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bubbles span {
  position: absolute; bottom: -40px; border-radius: 50%;
  background: rgba(126,240,255,.25); animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: .5; }
  100% { transform: translateY(-110vh) scale(1.4); opacity: 0; }
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, backdrop-filter .3s, padding .3s;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(3,26,46,.85); backdrop-filter: blur(12px);
  padding: 10px 0; border-bottom: 1px solid rgba(126,240,255,.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--wave), #0088aa);
  color: #031a2e; font-size: .75rem; font-weight: 900;
  box-shadow: 0 0 24px rgba(0,194,212,.45);
  animation: pulse-glow 2.8s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 18px rgba(0,194,212,.35); transform: scale(1); }
  50% { box-shadow: 0 0 32px rgba(126,240,255,.65); transform: scale(1.04); }
}
.menu { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.menu a {
  padding: 8px 12px; font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.85);
  border-radius: 999px; transition: .2s;
}
.menu a:hover, .menu a.active { background: rgba(0,194,212,.18); color: var(--foam); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; font: inherit; font-weight: 700; cursor: pointer;
  border-radius: 999px; padding: 12px 22px; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-sun {
  background: linear-gradient(135deg, var(--sun), var(--coral));
  color: #1a1208; box-shadow: 0 10px 30px rgba(255,183,3,.35);
}
.btn-wave {
  background: linear-gradient(135deg, var(--wave), #0090a8);
  color: #031a2e; box-shadow: 0 10px 30px rgba(0,194,212,.35);
}
.btn-ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35);
}
.menu-toggle {
  display: none; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 10px 12px; border-radius: 10px; font: inherit; font-weight: 700;
}

/* HERO */
.hero {
  min-height: 100vh; position: relative; display: grid; place-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0,0); }
  to { transform: scale(1.15) translate(-2%, -1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,26,46,.35) 0%, rgba(3,26,46,.55) 40%, rgba(3,26,46,.95) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(0,194,212,.25), transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%; padding: 0 0 72px;
}
.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: .92; letter-spacing: -.04em; font-weight: 800;
  margin: 0 0 16px;
  background: linear-gradient(100deg, #fff 20%, var(--foam) 55%, var(--sun) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 {
  margin: 0 0 12px; max-width: 16ch;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem); letter-spacing: -.02em;
}
.hero p { margin: 0 0 28px; max-width: 40ch; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.wave-svg {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; line-height: 0;
}
.wave-svg svg { width: 100%; height: 70px; display: block; }
.float-chip {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 16px;
  padding: 12px 14px; font-size: .85rem; font-weight: 600;
  animation: floaty 4s ease-in-out infinite;
}
.float-chip.a { top: 28%; right: 8%; animation-delay: .2s; }
.float-chip.b { top: 48%; right: 18%; animation-delay: 1.1s; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.section { padding: 90px 0; position: relative; }
.section-head { margin-bottom: 36px; max-width: 640px; }
.section-head h2 {
  margin: 0 0 10px; font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.03em; line-height: 1.1;
}
.section-head p { margin: 0; color: var(--muted); }

.packages {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.package {
  position: relative; overflow: hidden; border-radius: 22px;
  min-height: 280px; border: 1px solid rgba(126,240,255,.15);
  background: #06253a;
  transform: translateY(40px); opacity: 0;
}
.package.is-visible { animation: cardIn .7s ease forwards; }
@keyframes cardIn {
  to { transform: none; opacity: 1; }
}
.package img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: transform .6s; }
.package:hover img { transform: scale(1.08); }
.package-body {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 20%, rgba(3,26,46,.92));
}
.package .price {
  display: inline-flex; align-self: flex-start;
  background: rgba(255,183,3,.95); color: #1a1208;
  padding: 6px 12px; border-radius: 999px; font-weight: 800; font-size: .9rem;
  margin-bottom: 10px;
}
.package h3 { margin: 0 0 6px; font-family: var(--display); font-size: 1.45rem; }
.package .meta { color: var(--foam); font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.package p { margin: 0; color: rgba(255,255,255,.8); font-size: .95rem; }

.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px;
}
.g-item {
  border-radius: 18px; overflow: hidden; position: relative;
  min-height: 180px; grid-column: span 4;
  border: 1px solid rgba(126,240,255,.12);
}
.g-item:nth-child(1) { grid-column: span 6; min-height: 280px; }
.g-item:nth-child(2) { grid-column: span 6; min-height: 280px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-item:hover img { transform: scale(1.06); }

.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video {
  border-radius: 18px; overflow: hidden; border: 1px solid rgba(126,240,255,.15);
  background: #041f33; aspect-ratio: 16/9;
}
.video iframe { width: 100%; height: 100%; border: 0; }

.marquee {
  overflow: hidden; white-space: nowrap; border-block: 1px solid rgba(126,240,255,.15);
  padding: 14px 0; background: rgba(0,194,212,.08);
}
.marquee-track {
  display: inline-block; animation: marquee 28s linear infinite;
  font-family: var(--display); font-weight: 800; font-size: 1.2rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--foam);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page-hero {
  padding: 140px 0 60px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(0,194,212,.22), transparent 50%),
    linear-gradient(180deg, #031a2e, #04253a);
}
.page-hero h1 {
  margin: 8px 0 0; font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -.03em;
}
.crumb { color: var(--muted); font-size: .92rem; }
.content-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(126,240,255,.12);
  border-radius: 20px; padding: 28px; color: rgba(255,255,255,.88);
}
.content-box p { color: rgba(255,255,255,.8); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border-radius: 12px; border: 1px solid rgba(126,240,255,.2);
  background: rgba(255,255,255,.06); color: #fff; padding: 12px; font: inherit;
}
.field textarea { min-height: 110px; }
.ok { background: rgba(0,194,212,.15); border: 1px solid rgba(0,194,212,.35); padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; }

.footer {
  padding: 48px 0 28px; border-top: 1px solid rgba(126,240,255,.12);
  background: #02101c;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.footer strong { display: block; font-family: var(--display); margin-bottom: 10px; font-size: 1.1rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--foam); }
.copy { color: rgba(255,255,255,.45); font-size: .88rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 120;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff; font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    display: none; position: absolute; top: 70px; left: 16px; right: 16px;
    background: rgba(3,26,46,.96); border: 1px solid rgba(126,240,255,.2);
    border-radius: 16px; flex-direction: column; padding: 10px;
  }
  .menu.open { display: flex; }
  .packages, .videos, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .g-item, .g-item:nth-child(1), .g-item:nth-child(2) { grid-column: span 12; min-height: 200px; }
  .float-chip { display: none; }
}
