:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #5f6877;
  --line: #e8ebf0;
  --primary: #ff5a1f;
  --primary-dark: #e1440e;
  --secondary: #121c35;
  --green: #1f9d65;
  --shadow: 0 20px 60px rgba(19, 31, 59, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 20px;
  background: var(--secondary);
  color: #fff;
  font-size: 13px;
}
.announcement a { color: #ffcfbf; font-weight: 700; text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,235,240,.9);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 13px; background: linear-gradient(135deg, var(--primary), #ff8a4c);
  color: #fff; font-family: Inter, Arial, Helvetica, sans-serif; font-size: 24px; font-weight: 800;
  box-shadow: 0 10px 24px rgba(255,90,31,.25);
}
.brand-text { line-height: 1.05; font-size: 14px; color: #31394a; }
.brand-text strong { font-size: 18px; color: var(--secondary); }
.nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; color: #424c60; }
.nav a:hover { color: var(--primary); }
.menu-btn { display: none; border: 0; background: transparent; font-size: 26px; cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border-radius: 14px; font-weight: 800;
  border: 1px solid transparent; transition: .2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 18px; background: var(--secondary); color: #fff !important; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #ff7b39); color: #fff; box-shadow: 0 14px 30px rgba(255,90,31,.26); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--secondary); }
.btn-light { background: #fff; color: var(--secondary); }
.btn-full { width: 100%; }

.hero {
  position: relative; overflow: hidden; padding: 90px 0 82px;
  background:
    radial-gradient(circle at 5% 10%, rgba(255,90,31,.12), transparent 31%),
    radial-gradient(circle at 90% 5%, rgba(37,99,235,.10), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.hero-copy h1 {
  margin: 18px 0 22px; font-family: Inter, Arial, Helvetica, sans-serif; font-size: clamp(44px, 5vw, 70px);
  line-height: 1.02; letter-spacing: -2.5px;
}
.hero-copy h1 span { color: var(--primary); }
.hero-copy h1 strong { color: var(--secondary); }
.eyebrow { display: inline-flex; color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: 1.8px; }
.eyebrow.light { color: #ffc3ad; }
.hero-subtitle { max-width: 680px; margin: 0 0 26px; color: var(--muted); font-size: 19px; }
.hero-points { display: grid; gap: 10px; margin-bottom: 28px; color: #31394a; font-weight: 600; font-size: 15px; }
.hero-points span { display: inline-grid; place-items: center; width: 23px; height: 23px; margin-right: 8px; border-radius: 7px; color: #fff; background: var(--green); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.avatars { display: flex; }
.avatars span { width: 36px; height: 36px; margin-left: -7px; border: 3px solid #fff; border-radius: 50%; background: #dee5f2; display: grid; place-items: center; font-size: 10px; font-weight: 800; color: var(--secondary); }
.avatars span:first-child { margin-left: 0; background: #ffe0d3; }
.trust-row strong, .trust-row small { display: block; }
.trust-row small { color: var(--muted); font-size: 12px; }

.hero-panel {
  position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.9); border-radius: 28px;
  background: rgba(255,255,255,.9); box-shadow: var(--shadow); transform: rotate(1deg);
}
.hero-panel::before { content: ""; position: absolute; inset: 16px -14px -14px 16px; z-index: -1; border-radius: 28px; background: rgba(18,28,53,.07); }
.panel-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.panel-top small { color: var(--muted); }
.panel-top h2 { margin: 3px 0 0; font-family: Inter, Arial, Helvetica, sans-serif; font-size: 25px; }
.live-dot { position: relative; padding: 6px 10px 6px 25px; border-radius: 999px; background: #eefcf5; color: #14784c; font-size: 11px; font-weight: 800; }
.live-dot::before { content: ""; position: absolute; left: 10px; top: 50%; width: 8px; height: 8px; border-radius: 50%; transform: translateY(-50%); background: #25b873; box-shadow: 0 0 0 4px rgba(37,184,115,.15); }
.mini-card { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff; }
.property-image { position: relative; min-height: 190px; background-size: cover; background-position: center; overflow: hidden; }
.featured-card .property-image { min-height: 240px; }

.property-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.discount-badge {
  max-width: calc(100% - 112px);
  white-space: nowrap;
  letter-spacing: .15px;
  box-shadow: 0 8px 20px rgba(255,90,31,.24);
}
.featured-card .discount-badge {
  font-size: 13px;
  padding: 8px 12px;
}

.property-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.22)); }
.property-apt { background-image: linear-gradient(140deg, rgba(18,28,53,.08), rgba(255,90,31,.16)), url('assets/apartamento.jpg'); }
.property-land { background-image: url('assets/terreno.jpg'); }
.property-house { background-image: url('assets/casa.jpg'); }
.property-building { background-image: url('assets/interior.jpg'); }
.property-rural { background-image: url('assets/sitio.jpg'); }
.property-coast { background-image: url('assets/litoral.jpg'); }
.property-urban { background-image: url('assets/urbano.jpg'); }
.discount-badge, .type-badge { position: absolute; z-index: 2; top: 14px; padding: 7px 10px; border-radius: 10px; font-size: 12px; font-weight: 800; }
.discount-badge { left: 14px; background: var(--primary); color: #fff; }
.type-badge { right: 14px; background: rgba(255,255,255,.92); color: var(--secondary); }
.mini-card-body { padding: 18px; }
.place { color: var(--muted); font-size: 12px; }
.mini-card h3 { margin: 3px 0 16px; font-size: 20px; }
.price-row { display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.price-row small, .price-row strong { display: block; }
.price-row strong { color: var(--secondary); font-size: 27px; letter-spacing: -1px; }
.old-price { color: var(--muted); font-size: 12px; text-align: right; }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 14px 0; }
.mini-stats div { padding: 13px 8px; border-radius: 14px; background: #f7f8fb; text-align: center; }
.mini-stats strong, .mini-stats span { display: block; }
.mini-stats strong { color: var(--secondary); font-size: 18px; }
.mini-stats span { color: var(--muted); font-size: 10px; }
.alert-card { display: flex; align-items: center; gap: 11px; padding: 13px; border-radius: 15px; background: #fff7f3; border: 1px solid #ffe0d4; }
.alert-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #fff; }
.alert-card div { flex: 1; }
.alert-card strong, .alert-card small { display: block; }
.alert-card strong { font-size: 12px; }
.alert-card small { color: var(--muted); font-size: 10px; }
.pill { font-size: 9px; font-weight: 800; color: var(--primary); }

.logos-strip { padding: 28px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos-strip p { margin: 0 0 16px; color: var(--muted); text-align: center; font-size: 12px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px; color: #8c94a1; font-weight: 800; font-size: 13px; letter-spacing: .3px; }

.section { padding: 94px 0; }
.soft-bg { background: #f0f3f8; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { margin: 10px 0 14px; font-family: Inter, Arial, Helvetica, sans-serif; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -1.8px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: end; }
.split-heading p { padding-bottom: 8px; }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step-card { position: relative; padding: 30px; min-height: 280px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(19,31,59,.06); }
.step-number { position: absolute; right: 22px; top: 18px; color: #e4e8ef; font-family: Inter, Arial, Helvetica, sans-serif; font-size: 44px; font-weight: 800; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: #fff1eb; font-size: 27px; }
.step-card h3 { margin: 24px 0 10px; font-size: 20px; }
.step-card p { margin: 0; color: var(--muted); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter { padding: 10px 16px; border-radius: 999px; border: 1px solid #dfe4ec; background: #fff; color: #4e586a; font-weight: 700; cursor: pointer; }
.filter.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.property-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.property-card { overflow: hidden; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(19,31,59,.07); transition: .2s ease; }
.property-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(19,31,59,.11); }
.property-card.hidden { display: none; }
.property-body { padding: 20px; }
.property-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 11px; }
.property-body h3 { margin: 8px 0 4px; font-size: 20px; }
.property-body p { min-height: 52px; margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.property-price { display: flex; justify-content: space-between; align-items: end; gap: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.property-price small, .property-price strong { display: block; }
.property-price small { color: var(--muted); font-size: 11px; }
.property-price strong { color: var(--secondary); font-size: 24px; letter-spacing: -.8px; }
.economy { padding: 6px 9px; border-radius: 9px; background: #eefcf5; color: #14784c; font-size: 10px; font-weight: 800; }
.disclaimer { margin: 24px auto 0; max-width: 900px; color: #7c8492; text-align: center; font-size: 11px; }

.dark-section { background: var(--secondary); color: #fff; }
.benefits-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.benefits-copy h2 { margin: 12px 0 18px; font-family: Inter, Arial, Helvetica, sans-serif; font-size: clamp(35px,4vw,52px); line-height: 1.07; letter-spacing: -1.8px; }
.benefits-copy p { margin: 0 0 28px; color: #bbc4d6; font-size: 17px; }
.benefits-list { display: grid; gap: 12px; }
.benefits-list article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.04); }
.benefits-list article > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,90,31,.16); color: #ffb79c; font-weight: 800; }
.benefits-list h3 { margin: 0 0 4px; font-size: 18px; }
.benefits-list p { margin: 0; color: #aeb8ca; font-size: 14px; }

.audience-section { background: #fff; }
.audience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.audience-grid article { padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: #fbfcfe; }
.audience-grid span { font-size: 28px; }
.audience-grid h3 { margin: 14px 0 6px; font-size: 18px; }
.audience-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.offer-section { background: linear-gradient(135deg, #fff1eb, #f3f6ff); }
.offer-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; padding: 48px; border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.offer-copy h2 { margin: 12px 0 15px; font-family: Inter, Arial, Helvetica, sans-serif; font-size: clamp(34px,4vw,48px); line-height: 1.08; letter-spacing: -1.5px; }
.offer-copy p { color: var(--muted); font-size: 17px; }
.offer-copy ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; font-weight: 600; color: #31394a; }
.checkout-card { padding: 28px; border-radius: 22px; background: var(--secondary); color: #fff; box-shadow: 0 20px 45px rgba(18,28,53,.2); }
.checkout-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.1); font-size: 11px; font-weight: 800; }
.checkout-price { margin: 26px 0; }
.checkout-price small, .checkout-price strong, .checkout-price span { display: block; }
.checkout-price small { color: #bdc7d8; }
.checkout-price strong { margin: 3px 0; font-family: Inter, Arial, Helvetica, sans-serif; font-size: 52px; line-height: 1; }
.checkout-price span { color: #bdc7d8; font-size: 13px; }
.secure-note { margin-top: 16px; text-align: center; color: #cdd5e2; font-size: 12px; }
.microcopy { display: block; margin-top: 8px; text-align: center; color: #8e99ac; font-size: 10px; }

.faq-wrap { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq-list summary { list-style: none; position: relative; padding: 20px 56px 20px 20px; font-weight: 800; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 18px; top: 15px; font-size: 26px; color: var(--primary); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.final-cta { padding: 68px 0; background: linear-gradient(135deg, var(--primary), #ff7e42); color: #fff; }
.final-cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { margin: 8px 0 4px; font-family: Inter, Arial, Helvetica, sans-serif; font-size: clamp(34px,4vw,48px); }
.final-cta p { margin: 0; color: #fff1eb; }

.footer { padding: 58px 0 24px; background: #0e1629; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 50px; }
.footer-brand .brand-text { color: #c7cfdd; }
.footer-brand .brand-text strong { color: #fff; }
.footer p { max-width: 430px; color: #8f9bad; font-size: 13px; }
.footer h4 { margin: 0 0 14px; }
.footer a:not(.brand) { display: block; margin: 8px 0; color: #aeb8c8; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #788396; font-size: 11px; }

.floating-cta { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 999px; background: var(--secondary); color: #fff; box-shadow: 0 14px 35px rgba(18,28,53,.25); font-size: 13px; font-weight: 800; }

@media (max-width: 980px) {
  .nav { position: fixed; inset: 117px 20px auto; display: none; padding: 20px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; text-align: center; }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
  .hero-grid, .benefits-grid, .offer-card, .faq-wrap, .split-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-points { display: inline-grid; text-align: left; }
  .hero-actions, .trust-row { justify-content: center; }
  .steps, .property-grid { grid-template-columns: repeat(2,1fr); }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { gap: 40px; }
  .faq-wrap { gap: 20px; }
  .offer-card { padding: 34px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1160px); }
  .announcement { font-size: 11px; gap: 10px; text-align: center; }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 39px; height: 39px; border-radius: 11px; }
  .brand-text strong { font-size: 16px; }
  .hero { padding: 62px 0 58px; }
  .hero-copy h1 { font-size: 42px; letter-spacing: -1.8px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-panel { padding: 15px; border-radius: 22px; transform: none; }
  .featured-card .property-image { min-height: 205px; }
  .mini-stats { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .section-heading h2 { font-size: 36px; }
  .steps, .property-grid, .audience-grid { grid-template-columns: 1fr; }
  .split-heading { gap: 12px; }
  .offer-card { padding: 24px; gap: 30px; border-radius: 22px; }
  .checkout-price strong { font-size: 44px; }
  .final-cta-wrap { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .floating-cta span { display: none; }
  .floating-cta { width: 50px; height: 50px; justify-content: center; padding: 0; font-size: 18px; }
}
