:root {
  --black: #080808;
  --soft-black: #111111;
  --card: #151515;
  --yellow: #ffd400;
  --yellow-soft: #ffe66d;
  --white: #f7f7f2;
  --muted: #a6a6a0;
  --line: rgba(255, 255, 255, .1);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 5%, rgba(255, 212, 0, .09), transparent 24%),
    var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.header {
  height: 76px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .08em; }
.brand-mark {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: var(--yellow); color: var(--black); border-radius: 10px;
  font-weight: 900;
}
.nav { display: flex; gap: 30px; color: #d7d7d2; font-size: .94rem; }
.nav a { transition: .2s; }
.nav a:hover { color: var(--yellow); }
.menu-toggle { display: none; background: none; border: 0; }

.hero {
  max-width: 1240px;
  min-height: 720px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 70px;
}

.hero-glow {
  position: absolute;
  width: 520px; height: 520px;
  right: -170px; top: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,0,.2), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.eyebrow { color: var(--yellow); font-size: .78rem; font-weight: 800; letter-spacing: .2em; margin-bottom: 18px; }
.hero h1 { font-size: clamp(3.3rem, 7vw, 6.8rem); line-height: .98; letter-spacing: -.065em; max-width: 900px; }
.hero h1 span { color: var(--yellow); }
.hero-text { margin: 28px 0 34px; max-width: 650px; font-size: 1.08rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--black); box-shadow: 0 12px 34px rgba(255,212,0,.16); }
.btn-primary:hover { box-shadow: 0 16px 42px rgba(255,212,0,.25); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.03); }
.btn-full { width: 100%; border: 0; }

.hero-card {
  min-height: 350px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: 34px;
  border: 1px solid rgba(255,212,0,.24);
  background:
    linear-gradient(145deg, rgba(255,212,0,.12), transparent 55%),
    linear-gradient(145deg, #1d1d1d, #0d0d0d);
  box-shadow: 0 34px 80px rgba(0,0,0,.45);
}
.hero-card::before {
  content: "G";
  position: absolute;
  top: -85px; right: -10px;
  font-size: 18rem; line-height: 1;
  font-weight: 900; color: rgba(255,212,0,.06);
}
.hero-card p { color: var(--yellow); letter-spacing: .18em; font-size: .72rem; font-weight: 800; }
.hero-card strong { font-size: 5.3rem; letter-spacing: -.07em; line-height: 1.05; }
.hero-card span { color: var(--muted); }

.section { max-width: 1240px; margin: 0 auto; padding: 110px 28px; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .booking-copy h2 { font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.08; letter-spacing: -.05em; }
.section-heading > p:last-child, .booking-copy > p { margin-top: 16px; color: var(--muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card {
  position: relative;
  padding: 28px;
  min-height: 510px;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
}
.price-card.featured { border-color: rgba(255,212,0,.55); transform: translateY(-10px); }
.popular {
  position: absolute; top: 18px; right: 18px;
  padding: 7px 9px; background: var(--yellow); color: #000;
  border-radius: 8px; font-size: .61rem; font-weight: 900; letter-spacing: .08em;
}
.icon { font-size: 2rem; margin-bottom: 34px; }
.category { color: var(--yellow); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.price-card h3 { margin-top: 8px; font-size: 1.25rem; min-height: 58px; }
.price { margin: 24px 0; font-size: 2.65rem; font-weight: 900; letter-spacing: -.05em; }
.price-card ul { list-style: none; color: var(--muted); font-size: .92rem; }
.price-card li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.price-card li::before { content: "✓"; color: var(--yellow); margin-right: 9px; font-weight: 900; }
.card-link { margin-top: auto; padding-top: 26px; font-weight: 800; }
.card-link span { color: var(--yellow); margin-left: 8px; }

.benefits { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.benefit span { display: block; color: var(--yellow); font-size: .78rem; font-weight: 800; margin-bottom: 26px; }
.benefit h3 { font-size: 1.25rem; margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: .94rem; }

.booking { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.booking-copy { position: sticky; top: 40px; }
.contact-note {
  margin-top: 40px; padding: 22px;
  border-left: 3px solid var(--yellow);
  background: rgba(255,255,255,.025);
}
.contact-note span { display: block; color: var(--muted); font-size: .83rem; }
.contact-note strong { font-size: 1.45rem; }

.booking-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--soft-black);
  box-shadow: 0 30px 60px rgba(0,0,0,.24);
}
.booking-form label { display: block; margin-bottom: 18px; color: #d7d7d2; font-size: .86rem; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
  width: 100%; margin-top: 8px;
  color: var(--white); background: #0c0c0c;
  border: 1px solid var(--line); border-radius: 12px;
  padding: 15px 16px; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--yellow); }
select option { color: #fff; background: #111; }
textarea { resize: vertical; }
.form-privacy { text-align: center; color: #777; font-size: .76rem; margin-top: 12px; }

.contact { padding-top: 70px; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-card {
  min-height: 190px; padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px; background: rgba(255,255,255,.025);
  transition: .2s;
}
a.contact-card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.contact-card span { color: var(--yellow); font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.contact-card strong { font-size: 1.25rem; }
.contact-card small { color: var(--muted); }

footer {
  max-width: 1240px; margin: 0 auto; padding: 45px 28px 60px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 25px;
  border-top: 1px solid var(--line); color: var(--muted); font-size: .83rem;
}
footer p:last-child { text-align: right; }

.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 30;
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--yellow); color: #000; border-radius: 50%;
  font-weight: 900; box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 90px; }
  .hero-card { min-height: 260px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .benefits-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .booking { grid-template-columns: 1fr; gap: 42px; }
  .booking-copy { position: static; }
}

@media (max-width: 720px) {
  .header { height: 68px; padding: 0 18px; }
  .menu-toggle { display: flex; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 6px; }
  .menu-toggle span { width: 22px; height: 2px; background: #fff; margin: 0 auto; transition: .2s; }
  .nav {
    position: absolute; top: 68px; left: 18px; right: 18px;
    display: none; flex-direction: column; gap: 0;
    padding: 10px; background: #111; border: 1px solid var(--line); border-radius: 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px; }
  .hero { padding: 75px 18px 60px; gap: 45px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-card strong { font-size: 4rem; }
  .section { padding: 78px 18px; }
  .pricing-grid, .benefits-grid, .contact-grid, .field-row { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .booking-form { padding: 22px; }
  footer { padding: 38px 18px 90px; grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
}
