:root {
  --ocean-950: #001f3f;
  --ocean-900: #003b78;
  --ocean-800: #00346b;
  --ocean-700: #003b78;
  --ocean-100: #edf3fa;
  --sand-50: #faf7ef;
  --sand-100: #eaddc5;
  --sand-200: #d8c6a8;
  --gold-500: #f2b91b;
  --gold-600: #c79211;
  --ink: #1e293b;
  --muted: #64748b;
  --paper: #ffffff;
  --line: rgba(0, 31, 63, 0.14);
  --shadow: 0 26px 70px rgba(0, 31, 63, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--sand-50);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(242, 185, 27, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--sand-50) 0%, #fffaf2 42%, #f6eddc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(0, 31, 63, 0.1);
  background: rgba(251, 247, 239, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ocean-900);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0, 31, 63, 0.12);
  border-radius: var(--radius);
  background: #f4f4f2;
  box-shadow: 0 12px 24px rgba(0, 31, 63, 0.12);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: -1px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 560;
}

.nav-links a:hover {
  color: var(--ocean-900);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ffd457, var(--gold-500));
  color: var(--ocean-950);
  box-shadow: 0 16px 34px rgba(242, 185, 27, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ocean-900);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--ocean-950);
  box-shadow: 0 16px 34px rgba(242, 185, 27, 0.26);
}

.btn-outline {
  border: 1px solid rgba(0, 31, 63, 0.24);
  background: transparent;
  color: var(--ocean-900);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 26% 22%, rgba(242, 185, 27, 0.2), transparent 26rem),
    linear-gradient(90deg, rgba(0, 31, 63, 0.97), rgba(0, 31, 63, 0.88) 46%, rgba(0, 59, 120, 0.52)),
    url("./assets/hero-fachada-resort.webp") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, rgba(251, 247, 239, 0), rgba(251, 247, 239, 0.92));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: 34px;
  padding: 98px 0 54px;
}

.hero-copy {
  max-width: 820px;
}

.hero-logo-lockup {
  width: clamp(150px, 18vw, 220px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  margin-bottom: 22px;
  background: #f4f4f2;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.hero-logo-lockup img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  border: 1px solid rgba(242, 185, 27, 0.34);
  border-radius: var(--radius);
  padding: 9px 14px;
  background: rgba(0, 31, 63, 0.58);
  color: #fff7da;
  font-size: 0.88rem;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.hero-subtitle {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 720;
  line-height: 1.04;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.projection-line {
  width: fit-content;
  margin: 24px 0 0;
  border: 1px solid rgba(242, 185, 27, 0.42);
  border-radius: var(--radius);
  padding: 12px 15px;
  background: rgba(242, 185, 27, 0.16);
  color: #fff4ca;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 780;
  backdrop-filter: blur(12px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff7df;
  font-size: 0.9rem;
  font-weight: 640;
}

.micro-proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(0, 31, 63, 0.48);
  backdrop-filter: blur(12px);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.hero-panel-header strong {
  color: var(--ocean-900);
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero-panel-header span {
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(242, 185, 27, 0.16);
  color: var(--gold-600);
  font-size: 0.76rem;
  font-weight: 760;
  white-space: nowrap;
}

.hero-panel p {
  color: var(--muted);
}

.calculator-card {
  scroll-margin-top: 96px;
}

.calculator-label {
  margin-top: 18px;
  color: var(--ocean-900);
}

.calculator-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 31, 63, 0.16);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: var(--sand-50);
}

.calculator-input span {
  color: var(--ocean-900);
  font-weight: 800;
}

.calculator-input input {
  min-height: 42px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ocean-950);
  font-size: 1.2rem;
  font-weight: 760;
  box-shadow: none;
}

.calculator-input input:focus {
  border-color: transparent;
  box-shadow: none;
}

.calculator-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.calculator-results div {
  border: 1px solid rgba(0, 31, 63, 0.12);
  border-radius: var(--radius);
  padding: 15px;
  background: #ffffff;
}

.calculator-results span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.calculator-results strong {
  display: block;
  color: var(--ocean-900);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1;
}

.calculator-disclaimer {
  margin: 14px 0 16px;
  color: #6b7a82 !important;
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-metrics div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--sand-50);
}

.hero-metrics strong,
.metric strong {
  display: block;
  color: var(--ocean-800);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-metrics span,
.metric small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--ocean-700);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--sand-200);
}

h2 {
  color: var(--ocean-950);
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.section-head p,
.card p,
.panel p,
.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.cards-2,
.cards-3,
.number-band {
  display: grid;
  gap: 18px;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.panel,
.metric,
details,
.form-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(0, 31, 63, 0.08);
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.card.featured {
  border-color: rgba(242, 185, 27, 0.36);
  background:
    radial-gradient(circle at top right, rgba(242, 185, 27, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.94);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--ocean-950);
  font-size: 1.55rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(0, 59, 120, 0.08);
  color: var(--ocean-900);
  font-size: 1.3rem;
  font-weight: 760;
}

.gold-icon {
  background: rgba(242, 185, 27, 0.18);
  color: var(--ocean-950);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 23px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid rgba(0, 31, 63, 0.1);
  border-radius: var(--radius);
  padding: 8px 11px;
  background: rgba(244, 234, 219, 0.86);
  color: #4a5d65;
  font-size: 0.86rem;
  font-weight: 650;
}

.masterplan {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(0, 31, 63, 0.98), rgba(0, 59, 120, 0.94)),
    radial-gradient(circle at top right, rgba(242, 185, 27, 0.34), transparent 28rem);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.masterplan::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.masterplan::after {
  content: "";
  position: absolute;
  inset: auto -20% -35%;
  height: 48%;
  background: radial-gradient(closest-side, rgba(242, 185, 27, 0.16), transparent);
  pointer-events: none;
}

.masterplan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 34px;
  align-items: center;
}

.masterplan-copy {
  position: relative;
  z-index: 1;
}

.masterplan h2 {
  color: #ffffff;
}

.masterplan p {
  color: rgba(255, 255, 255, 0.74);
}

.masterplan-value-grid {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.masterplan-value-grid div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.masterplan-value-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 0.98rem;
}

.masterplan-value-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.masterplan-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.masterplan-zones span {
  border: 1px solid rgba(242, 185, 27, 0.28);
  border-radius: var(--radius);
  padding: 9px 12px;
  background: rgba(0, 31, 63, 0.38);
  color: #fff6d5;
  font-size: 0.86rem;
  font-weight: 700;
}

.map-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(242, 185, 27, 0.34);
  background: var(--ocean-950);
  color: var(--ink);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 47%, rgba(242, 185, 27, 0.14), transparent 16rem),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.09), transparent 18rem);
  pointer-events: none;
  mix-blend-mode: screen;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 54%;
  background: linear-gradient(180deg, rgba(0, 31, 63, 0), rgba(0, 31, 63, 0.96));
}

.map-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 0.5s ease;
}

.map-card:hover img {
  transform: scale(1.035);
}

.map-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border: 1px solid rgba(242, 185, 27, 0.42);
  border-radius: var(--radius);
  padding: 10px 13px;
  background: rgba(0, 31, 63, 0.78);
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.map-legend {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(210px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(0, 31, 63, 0.72);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.legend-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  box-shadow: 0 0 14px currentColor;
}

.legend-dot.resort {
  background: #8aa6cc;
  color: #8aa6cc;
}

.legend-dot.aquapark {
  background: #d8e4f3;
  color: #d8e4f3;
}

.legend-dot.shopping,
.legend-dot.plaza {
  background: var(--gold-500);
  color: var(--gold-500);
}

.legend-dot.plaza {
  background: #f7d56f;
  color: #f7d56f;
}

.map-copy {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 31, 63, 0.68);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.map-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-copy h3 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  line-height: 1.04;
}

.map-copy p {
  margin-top: 10px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.tour-section {
  padding-top: 24px;
}

.tour-frame {
  overflow: hidden;
  border: 1px solid rgba(242, 185, 27, 0.34);
  border-radius: var(--radius);
  background: var(--ocean-950);
  box-shadow: var(--shadow);
}

.tour-placeholder,
.tour-noscript {
  width: 100%;
  min-height: 480px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.88), rgba(0, 59, 120, 0.72)),
    url("./assets/master-plan-comercial.webp") center / cover;
  color: #ffffff;
  cursor: pointer;
  text-align: center;
}

.tour-placeholder span {
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tour-placeholder strong,
.tour-noscript {
  max-width: 680px;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 760;
  line-height: 1.02;
}

.tour-placeholder small {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.tour-frame iframe,
.tour-frame embed,
.tour-frame object {
  width: 100% !important;
  max-width: 100%;
  display: block;
  border: 0;
}

.location-video {
  padding-top: 24px;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(242, 185, 27, 0.34);
  border-radius: var(--radius);
  background: var(--ocean-950);
  box-shadow: var(--shadow);
}

.video-placeholder {
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 31, 63, 0.28), rgba(0, 31, 63, 0.1)),
    url("./assets/video/ubicacion-barra-do-chui-poster.webp") center / cover;
  color: #ffffff;
  cursor: pointer;
}

.video-placeholder span {
  border: 1px solid rgba(242, 185, 27, 0.42);
  border-radius: var(--radius);
  padding: 13px 17px;
  background: rgba(0, 31, 63, 0.74);
  color: var(--gold-500);
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.video-frame video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 185, 27, 0.16), transparent 20rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 31, 63, 0.08);
}

.video-copy h3 {
  margin-bottom: 14px;
  color: var(--ocean-950);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.04;
}

.video-copy p {
  margin: 0 0 22px;
  color: var(--muted);
}

.video-copy p + p {
  margin-top: -8px;
}

.multiproperty-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(242, 185, 27, 0.34);
  border-radius: var(--radius);
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 185, 27, 0.16), transparent 24rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 31, 63, 0.08);
}

.multiproperty-panel h3 {
  margin-bottom: 14px;
  color: var(--ocean-950);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.multiproperty-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.multiproperty-steps {
  display: grid;
  gap: 10px;
}

.multiproperty-steps div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(0, 31, 63, 0.12);
  border-radius: var(--radius);
  padding: 13px;
  background: var(--sand-50);
}

.multiproperty-steps strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ocean-950);
  color: var(--gold-500);
}

.multiproperty-steps span {
  color: var(--ink);
  font-weight: 760;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: start;
}

.panel {
  padding: 30px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  font-weight: 720;
}

.tab.active {
  border-color: var(--ocean-700);
  background: var(--ocean-700);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(0, 31, 63, 0.18);
}

.audience {
  display: none;
}

.audience.active {
  display: block;
}

.audience-lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--sand-50);
}

.mini strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ocean-900);
}

.mini small {
  display: block;
  color: var(--muted);
}

.audience-cta {
  margin-top: 18px;
}

.type-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.type-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.type-consult {
  display: inline-flex;
  justify-content: center;
  color: var(--ocean-900);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(0, 59, 120, 0.24);
  text-underline-offset: 4px;
}

.type-consult:hover {
  color: var(--gold-600);
}

.type-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.type-label {
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(242, 185, 27, 0.18);
  color: var(--ocean-950);
  font-size: 0.78rem;
  font-weight: 760;
}

.type-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.type-specs div {
  border: 1px solid rgba(0, 31, 63, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--sand-50);
}

.type-specs strong {
  display: block;
  color: var(--ocean-900);
  font-size: 1.35rem;
  line-height: 1;
}

.type-specs span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.equipment {
  margin-bottom: 22px !important;
  font-size: 0.95rem !important;
}

.number-band {
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  padding: 22px;
}

.metric strong {
  font-size: 2rem;
}

.metric h3 {
  margin: 12px 0 9px;
  color: var(--ocean-950);
  font-size: 1.18rem;
  line-height: 1.08;
}

.metric small {
  font-size: 0.9rem;
  line-height: 1.45;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.process-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-wrap {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background:
    radial-gradient(circle at top left, rgba(223, 247, 251, 0.74), transparent 28rem),
    rgba(255, 255, 255, 0.94);
}

.form-copy {
  padding: 36px;
  background: linear-gradient(145deg, var(--ocean-950), var(--ocean-800));
  color: #ffffff;
}

.form-copy h2 {
  margin-bottom: 16px;
  color: #ffffff;
}

.form-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-point {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-point a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(242, 185, 27, 0.5);
  text-underline-offset: 4px;
}

.form-area {
  padding: 34px;
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #33444b;
  font-size: 0.82rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 31, 63, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 105px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ocean-700);
  box-shadow: 0 0 0 4px rgba(242, 185, 27, 0.18);
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-card {
  display: block;
  margin: 0;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-body {
  display: block;
  border: 1px solid rgba(0, 31, 63, 0.16);
  border-radius: var(--radius);
  padding: 15px;
  background: #ffffff;
  color: var(--ocean-900);
  font-weight: 700;
  transition: all 0.2s ease;
}

.radio-body small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.radio-card input:checked + .radio-body {
  border-color: var(--gold-500);
  background: rgba(250, 247, 239, 0.95);
  box-shadow: 0 0 0 4px rgba(242, 185, 27, 0.16);
}

.legal {
  margin: 10px 0 0;
  color: #6b7a82;
  font-size: 0.82rem;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
}

summary {
  color: var(--ocean-900);
  cursor: pointer;
  font-weight: 720;
}

details p {
  margin: 12px 0 0;
  line-height: 1.58;
}

details p + p {
  margin-top: 10px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 72px auto 0;
  border-radius: var(--radius);
  padding: 46px;
  background:
    radial-gradient(circle at right, rgba(242, 185, 27, 0.34), transparent 28rem),
    linear-gradient(135deg, var(--ocean-950), var(--ocean-800));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-bottom: 12px;
  color: #ffffff;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta-kicker {
  margin-bottom: 10px;
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer {
  padding: 42px 0 64px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.footer-grid strong {
  color: var(--ocean-900);
}

.footer-company {
  display: inline-block;
  margin-top: 5px;
}

.footer-link {
  display: inline-block;
  margin-top: 5px;
  color: var(--ocean-900);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 59, 120, 0.24);
  text-underline-offset: 4px;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  display: none;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(0, 31, 63, 0.18);
  backdrop-filter: blur(14px);
}

.mobile-cta .btn {
  flex: 1;
  padding-inline: 12px;
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  width: min(460px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: all 0.25s ease;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ocean-900);
  font-size: 1.1rem;
}

.toast p {
  margin: 0 0 14px;
  color: var(--muted);
}

.toast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .masterplan-grid,
  .video-showcase,
  .multiproperty-panel,
  .split,
  .form-wrap,
  .final-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 64px;
  }

  .hero-panel {
    max-width: 640px;
  }

  .cards-3,
  .number-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .final-cta {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar .btn {
    display: none;
  }

  .brand {
    gap: 9px;
    font-size: 1rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand small {
    display: none;
  }

  .hero-bg {
    background:
      radial-gradient(circle at 30% 18%, rgba(242, 185, 27, 0.18), transparent 20rem),
      linear-gradient(180deg, rgba(0, 31, 63, 0.96), rgba(0, 59, 120, 0.78), rgba(0, 31, 63, 0.72)),
      url("./assets/hero-fachada-resort.webp") center / cover;
  }

  .hero-grid {
    padding: 48px 0 36px;
  }

  .hero-actions,
  .hero-actions .btn,
  .form-row,
  .cards-2,
  .cards-3,
  .number-band,
  .mini-grid,
  .radio-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-subtitle {
    font-size: clamp(1.35rem, 8vw, 2.2rem);
  }

  .section {
    padding: 56px 0;
  }

  .masterplan,
  .multiproperty-panel,
  .form-copy,
  .form-area,
  .final-cta {
    padding: 26px;
  }

  .map-card {
    min-height: 470px;
  }

  .map-card img {
    min-height: 470px;
  }

  .map-legend {
    position: absolute;
    top: 14px;
    right: 14px;
    left: 14px;
    width: auto;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-badge {
    display: none;
  }

  .map-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .map-copy h3 {
    font-size: 1.25rem;
  }

  .map-copy p {
    font-size: 0.9rem;
  }

  .video-frame video {
    min-height: 260px;
  }

  .video-placeholder {
    min-height: 260px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: flex;
  }

  footer {
    padding-bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
