:root {
  --navy-950: #020810;
  --navy-900: #06111d;
  --navy-850: #0a1928;
  --navy-800: #10263b;
  --gold-300: #f8dc91;
  --gold-400: #eebf54;
  --gold-500: #d99a22;
  --text-main: #f9f7f1;
  --text-soft: #b9c3ce;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--text-main);
  font-family: "Montserrat", sans-serif;
  background: var(--navy-950);
}

.construction-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 8%, rgba(238, 191, 84, .11), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(30, 84, 125, .26), transparent 36%),
    linear-gradient(145deg, #02070d 0%, #071421 55%, #020810 100%);
}

.construction-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
}

.ambient-one { top: -170px; right: -100px; background: #d99a22; }
.ambient-two { bottom: -220px; left: -100px; background: #1f74aa; }

.hero-card {
  width: min(860px, 100%);
  padding: clamp(1.2rem, 3vw, 2.4rem);
}

.brand-mark-wrap {
  width: clamp(230px, 41vw, 390px);
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.38));
}

.brand-mark { display: block; width: 100%; }

.status-badge {
  padding: .62rem 1rem;
  border: 1px solid rgba(238,191,84,.3);
  border-radius: 999px;
  color: var(--gold-300);
  background: rgba(217,154,34,.08);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 5px rgba(238,191,84,.12), 0 0 18px rgba(238,191,84,.75);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(238,191,84,0), 0 0 24px rgba(238,191,84,.85); }
}

.display-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: .01em;
  text-wrap: balance;
}

.lead-copy {
  max-width: 670px;
  color: var(--text-soft);
  font-size: clamp(.98rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.lead-copy strong { color: #fff; font-weight: 600; }

.progress-shell {
  width: min(380px, 76%);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.progress-shell span {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 0 16px rgba(238,191,84,.5);
}

.visit-call {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-inline: auto;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(238,191,84,.42);
  border-radius: 18px;
  color: #f7f2e8;
  text-align: left;
  line-height: 1.45;
  background:
    linear-gradient(135deg, rgba(238,191,84,.1), rgba(255,255,255,.03)),
    rgba(5,16,27,.82);
  box-shadow: 0 18px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.visit-call:hover,
.visit-call:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(248,220,145,.8);
  box-shadow: 0 24px 55px rgba(0,0,0,.35), 0 0 30px rgba(217,154,34,.08);
  outline: none;
}

.visit-call strong { color: var(--gold-300); white-space: nowrap; }

.visit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #09121c;
  font-size: 1.25rem;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 25px rgba(217,154,34,.22);
}

.visit-arrow { color: var(--gold-300); font-size: 1.3rem; }

.footer-note { color: #718091; font-size: .78rem; }

.custom-modal {
  overflow: hidden;
  border: 1px solid rgba(238,191,84,.28);
  border-radius: 24px;
  color: var(--text-main);
  background:
    radial-gradient(circle at 80% -10%, rgba(238,191,84,.15), transparent 32%),
    linear-gradient(155deg, #0c1b2a 0%, #06111d 100%);
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
}

.custom-modal .modal-header { padding: 1.65rem 1.65rem .4rem; }
.custom-modal .modal-body { padding: 1rem 1.65rem 1.65rem; }

.modal-kicker {
  display: block;
  margin-bottom: .35rem;
  color: var(--gold-300);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.modal-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 600;
}

.modal-intro {
  max-width: 720px;
  margin-bottom: 1.2rem;
  color: #c5ced8;
  line-height: 1.7;
}

.steps-connector { align-items: center; gap: .75rem; color: var(--gold-400); }
.steps-connector span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(238,191,84,.35), transparent); }

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.3rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .2s ease, border-color .2s ease;
}

.step-card:hover { transform: translateY(-3px); border-color: rgba(238,191,84,.3); }

.step-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #10151c;
  font-weight: 800;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-500));
}

.step-label { color: #7f8c99; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.step-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 1.2rem 0 1rem;
  border-radius: 17px;
  font-size: 1.7rem;
}

.form-icon { color: var(--gold-300); background: rgba(238,191,84,.1); }
.whatsapp-icon { color: #4ade80; background: rgba(34,197,94,.11); }

.step-card h3 { font-family: "Cinzel", serif; font-size: 1.22rem; }
.step-card p { flex: 1; color: #9eabb8; font-size: .91rem; line-height: 1.65; }

.btn-step {
  padding: .78rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-step:hover { transform: translateY(-2px); }

.btn-form {
  border: 0;
  color: #15130d;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 10px 28px rgba(217,154,34,.2);
}

.btn-form:hover { color: #15130d; background: linear-gradient(135deg, #ffe8a8, #e6aa36); }

.btn-whatsapp {
  border: 1px solid rgba(74,222,128,.38);
  color: #d9ffe6;
  background: rgba(34,197,94,.13);
}

.btn-whatsapp:hover { color: #fff; border-color: rgba(74,222,128,.7); background: rgba(34,197,94,.22); }

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .8rem 1rem;
  border-radius: 12px;
  color: #8f9ca9;
  font-size: .78rem;
  background: rgba(255,255,255,.025);
}

.privacy-note i { color: var(--gold-400); }

@media (max-width: 575.98px) {
  .hero-card { padding-inline: .2rem; }
  .brand-mark-wrap { width: min(285px, 82vw); }
  .visit-call { grid-template-columns: auto 1fr; gap: .8rem; padding: .9rem; font-size: .88rem; }
  .visit-arrow { display: none; }
  .visit-icon { width: 42px; height: 42px; border-radius: 12px; }
  .custom-modal .modal-header { padding: 1.15rem 1.1rem .35rem; }
  .custom-modal .modal-body { padding: .85rem 1.1rem 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
