:root {
  --primary: #0a2f8f;
  --primary-deep: #071b52;
  --accent: #ff8a00;
  --accent-soft: #ffd29a;
  --text: #111827;
  --muted: #64748b;
  --border: rgba(10, 47, 143, 0.12);
  --surface: #ffffff;
  --surface-soft: #f6f8fc;
  --surface-dark: #081631;
  --shadow: 0 18px 40px rgba(8, 22, 49, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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


.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, #0a2f8f 0%, #071b52 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 112px;
  padding: 12px 0;
}

.brand {
  flex: 0 0 270px;
  width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.brand__logo {
  width: auto;
  height: 104px;
  max-width: 260px;
  display: block;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav a {
  position: relative;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: color 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffb257);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.65rem;
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #ff6a00);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 122, 0, 0.28);
}

.button--secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(10, 47, 143, 0.14);
  box-shadow: none;
}

.button--ghost {
  flex: 0 0 auto;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(7, 27, 82, 0.18);
}

.button--sm {
  min-height: 54px;
  padding: 0 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 0, 0.16), transparent 32%),
    radial-gradient(circle at right center, rgba(10, 47, 143, 0.14), transparent 36%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  padding: 72px 0 56px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.12);
  color: #b35c00;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffd7aa;
}

.hero h1,
.section h2,
.spotlight h2,
.contact-card h2 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(1.95rem, 3.5vw, 3.55rem);
  max-width: 11ch;
}

.hero__copy p {
  max-width: 58ch;
  color: #475569;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero__highlights {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__highlights li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(10, 47, 143, 0.08);
  color: #243b65;
  box-shadow: 0 8px 24px rgba(10, 47, 143, 0.06);
  font-weight: 600;
}

.hero__card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(9, 33, 98, 0.98), rgba(5, 18, 52, 1));
  color: #fff;
  box-shadow: var(--shadow);
}

.hero__card--media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero__slider {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.hero__slides {
  position: relative;
  min-height: inherit;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 13, 40, 0.06) 0%, rgba(3, 13, 40, 0.3) 100%);
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slider-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero__slider-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(7, 27, 82, 0.78);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(3, 13, 40, 0.22);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__slider-btn:hover {
  transform: translateY(-2px);
  background: rgba(10, 47, 143, 0.96);
}

.hero__slider-dots {
  position: absolute;
  left: 16px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero__slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero__slider-dots button.is-active {
  width: 28px;
  background: #fff;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero__metrics article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.hero__metrics strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero__metrics span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trustbar {
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trustbar__grid div {
  padding: 14px 18px;
  border-radius: 20px;
  background: var(--surface-soft);
}

.trustbar__grid strong,
.mini-stat strong,
.contact-points strong {
  display: block;
  margin-bottom: 6px;
}

.trustbar__grid span,
.mini-stat span,
.contact-points span {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  background: linear-gradient(180deg, #0a204f 0%, #071632 100%);
  color: #fff;
}

.section__header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section__header h2,
.spotlight h2,
.contact-card h2 {
  margin: 16px 0 0;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
}

.section__header p {
  max-width: 38ch;
  color: var(--muted);
}

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

.property-card {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 47, 143, 0.08);
}

.property-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(10, 47, 143, 0.96), rgba(255, 138, 0, 0.92));
  display: flex;
  align-items: end;
  padding: 22px;
  overflow: hidden;
}

.property-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(5, 18, 52, 0.28) 100%);
}

.property-card__placeholder {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: rgba(255, 255, 255, 0.94);
  max-width: 10ch;
}

.property-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 700;
}

.property-card__content {
  padding: 26px;
}

.property-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.property-card__title-row h3 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
}

.property-card__location {
  margin: 10px 0 18px;
  color: var(--muted);
}

.property-card__price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.property-card__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.property-card__meta li {
  list-style: none;
  padding: 14px 12px;
  border-radius: 18px;
  background: var(--surface-soft);
  text-align: center;
}

.property-card__meta strong {
  display: block;
  font-size: 1.02rem;
}

.property-card__meta span {
  font-size: 0.84rem;
  color: var(--muted);
}

.property-card__description {
  color: #475569;
  margin: 0 0 20px;
}

.property-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.property-highlights span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10, 47, 143, 0.07);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.property-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.property-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(10, 47, 143, 0.12);
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}

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

.benefit-card,
.step-card,
.contact-card,
.spotlight__panel,
.mini-stat {
  border-radius: var(--radius-lg);
}

.benefit-card {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(10, 47, 143, 0.08);
  box-shadow: 0 12px 32px rgba(8, 22, 49, 0.06);
}

.benefit-card__icon,
.step-card span {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(255, 138, 0, 0.34));
  color: #a95500;
  font-weight: 800;
  margin-bottom: 18px;
}

.benefit-card h3,
.step-card h3 {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
}

.benefit-card p,
.step-card p,
.spotlight__content p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.steps-layout p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
}

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

.step-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd49f;
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.spotlight__content {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(10, 47, 143, 0.08);
  box-shadow: var(--shadow);
}

.spotlight__content p {
  margin: 18px 0 28px;
}

.spotlight__panel {
  padding: 28px;
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(10, 47, 143, 0.98), rgba(5, 18, 52, 1));
  color: #fff;
}

.mini-stat {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-stat span {
  color: rgba(255, 255, 255, 0.7);
}

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

.faq details {
  padding: 20px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(10, 47, 143, 0.08);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-card {
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 47, 143, 0.08);
}

.contact-card--intro {
  background: linear-gradient(180deg, rgba(10, 47, 143, 0.98), rgba(5, 18, 52, 1));
  color: #fff;
}

.contact-card--intro p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 16px;
}

.contact-points {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.form-card {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(10, 47, 143, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 138, 0, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  padding: 26px 0 34px;
  background: #071632;
  color: rgba(255, 255, 255, 0.82);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

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

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 29;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #ff6a00);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(255, 122, 0, 0.24);
}

.property-modal {
  width: min(860px, calc(100% - 24px));
  border: none;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
}

.property-modal::backdrop {
  background: rgba(3, 10, 24, 0.7);
  backdrop-filter: blur(6px);
}

.property-modal__content {
  position: relative;
  background: #fff;
  padding: 32px;
}

.property-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 47, 143, 0.08);
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

.modal-header h3 {
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}

.modal-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.6rem;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.modal-gallery div {
  min-height: 154px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(10, 47, 143, 0.96), rgba(255, 138, 0, 0.92));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 12px;
}

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

.modal-meta div {
  padding: 14px;
  border-radius: 18px;
  background: var(--surface-soft);
  text-align: center;
}

.modal-meta strong {
  display: block;
  margin-bottom: 6px;
}

.modal-description {
  color: #475569;
  margin-bottom: 18px;
}

.modal-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: #334155;
}

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

@media (max-width: 1080px) {
  .hero__grid,
  .steps-layout,
  .spotlight,
  .contact-layout,
  .section__header {
    grid-template-columns: 1fr;
  }

  .section__header {
    align-items: start;
  }

  .header__content {
    gap: 22px;
    min-height: 98px;
  }

  .brand {
    flex-basis: 230px;
    width: 230px;
  }

  .brand__logo {
    height: 88px;
    max-width: 220px;
  }

  .nav {
    gap: 22px;
  }

  .nav a {
    font-size: 0.92rem;
  }

  .button--sm {
    min-height: 52px;
    padding: 0 26px;
    font-size: 0.95rem;
  }

  .benefits,
  .steps,
  .properties,
  .trustbar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 84px;
    padding: 8px 0;
  }

  .brand {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-start;
    margin: 0;
  }

  .brand__logo {
    height: 72px;
    max-width: 170px;
  }

  .nav,
  .header .button--ghost {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header.is-open .nav {
    display: flex;
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0a2f8f 0%, #071b52 100%);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: start;
    z-index: 32;
  }

  .header.is-open .nav a {
    color: #fff;
  }

  .hero {
    padding-top: 54px;
  }

  .hero__metrics,
  .property-card__meta,
  .modal-meta,
  .form-row,
  .modal-gallery,
  .footer__content,
  .benefits,
  .steps,
  .properties,
  .trustbar__grid {
    grid-template-columns: 1fr;
  }

  .property-card__title-row {
    flex-direction: column;
    align-items: start;
  }

  .hero__card,
  .spotlight__content,
  .spotlight__panel,
  .contact-card,
  .property-modal__content {
    padding: 24px;
  }

  .modal-header,
  .property-card__actions,
  .modal-actions {
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    bottom: 12px;
  }
}


@media (max-width: 900px) {
  .hero__slider {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .hero__slider {
    min-height: 280px;
  }

  .hero__slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }
}
