:root {
  --bg: #f7fbff;
  --bg-soft: #eef6ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-2: rgba(255, 255, 255, 0.92);
  --white: #ffffff;
  --text: #1f2a44;
  --muted: #64748b;
  --line: rgba(108, 132, 170, 0.14);
  --primary: #7c3aed;
  --primary-2: #3b82f6;
  --accent: #22c55e;
  --accent-2: #06b6d4;
  --shadow: 0 24px 60px rgba(76, 99, 138, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.10), transparent 18%),
    linear-gradient(180deg, #f9fcff 0%, #f2f8ff 48%, #fdfefe 100%);
  color: var(--text);
}

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

.site-shell {
  min-height: 100vh;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(119, 140, 176, 0.08);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.24);
}

.brand-text strong {
  display: block;
  font-size: 0.98rem;
  color: #182338;
}

.brand-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topnav a {
  color: #52637e;
  font-weight: 600;
  transition: 0.25s ease;
}

.topnav a:hover {
  color: #182338;
}

.topbar-actions {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(124, 58, 237, 0.08);
  color: #25344d;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  border-bottom: 1px solid rgba(108, 132, 170, 0.10);
}

.mobile-menu.is-open {
  display: block;
}

.btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

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

.btn-lg {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(91, 124, 255, 0.22);
}

.btn-ghost {
  background: rgba(255,255,255,0.82);
  color: #22314b;
  border-color: rgba(108, 132, 170, 0.12);
}

.btn-outline {
  background: rgba(255,255,255,0.66);
  color: #23324b;
  border-color: rgba(108, 132, 170, 0.16);
}

.w-full {
  width: 100%;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 900;
  color: #13213a;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(135deg, #7c3aed, #2563eb 48%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: #6d28d9;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(124, 58, 237, 0.10);
}

.hero-copy p {
  max-width: 660px;
  font-size: 1.02rem;
  color: #5f718d;
  line-height: 1.8;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(108, 132, 170, 0.12);
  color: #44556f;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(121, 142, 176, 0.08);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.hero-card-top {
  margin-bottom: 16px;
}

.hero-card-pill {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.16);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-card h3 {
  margin: 0 0 10px;
  color: #15243d;
  font-size: 1.5rem;
}

.hero-card p {
  margin: 0 0 18px;
  color: #61748f;
  line-height: 1.7;
}

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

.mini-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(108, 132, 170, 0.10);
}

.mini-stat strong {
  display: block;
  color: #18263f;
  font-size: 1rem;
}

.mini-stat span {
  color: #667892;
  font-size: 0.82rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}

.hero-orb-left {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 40px;
  background: rgba(124, 58, 237, 0.14);
}

.hero-orb-right {
  width: 320px;
  height: 320px;
  right: -110px;
  top: 20px;
  background: rgba(34, 197, 94, 0.12);
}

.section {
  padding: 34px 0 72px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.10));
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #6d28d9;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: #16253e;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: #60728c;
  line-height: 1.8;
}

.about-card {
  border-radius: 28px;
  padding: 28px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.about-icon {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.16), rgba(59,130,246,0.16));
  color: #5b21b6;
  font-size: 2rem;
}

.about-card h3 {
  margin: 0 0 8px;
  color: #15243d;
}

.about-card p {
  margin: 0;
  color: #61748f;
  line-height: 1.8;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.polo-card,
.contact-card,
.central-action-card {
  border-radius: 28px;
  padding: 28px;
}

.polo-badge,
.price-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(59, 130, 246, 0.10);
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.polo-card h3,
.contact-card h3,
.lotes-column h3,
.central-action-card h2 {
  margin: 16px 0 12px;
  color: #15243d;
}

.polo-card p,
.contact-card li,
.central-action-card p {
  color: #61748f;
  line-height: 1.75;
}

.lotes-groups {
  align-items: start;
}

.lotes-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.column-title span {
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

.price-card {
  border-radius: 26px;
  padding: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(108, 132, 170, 0.12);
  box-shadow: var(--shadow);
}

.price-card.featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.10), rgba(59, 130, 246, 0.10), rgba(6, 182, 212, 0.10));
}

.price-card h4 {
  margin: 16px 0 8px;
  color: #18263f;
  font-size: 2rem;
}

.price-card p {
  margin: 0;
  color: #61748f;
}

.contact-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  background: rgba(255,255,255,0.28);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner strong {
  color: #18263f;
}

.footer-inner p {
  margin: 6px 0 0;
  color: #667892;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #4f6380;
  font-weight: 600;
}

.central-page {
  padding: 82px 0 100px;
}

.central-title {
  margin: 0 0 14px;
  color: #14233d;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.central-text {
  max-width: 760px;
  margin: 0 auto;
  color: #61748f;
  line-height: 1.8;
}

.central-actions-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.central-action-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(59,130,246,0.14));
  color: #4c1d95;
  font-size: 1.8rem;
}

@media (max-width: 991.98px) {
  .topnav,
  .topbar-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .grid-2,
  .central-actions-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-inner {
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding-top: 64px;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-card,
  .about-card,
  .polo-card,
  .price-card,
  .contact-card,
  .central-action-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }
}