/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
/* ── Nav flotante pill ── */
#nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 900;
  background: rgba(10,10,10,.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50px;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
#nav.scrolled {
  background: rgba(10,10,10,.80);
  border-color: rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 8px 0 20px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-wordmark .stay {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  letter-spacing: .04em;
}
.nav-wordmark .baires {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--sky4);
  letter-spacing: .04em;
}
.nav-wordmark .tagline {
  font-size: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 7px 13px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  margin-right: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile {
  display: none;
  position: fixed;
  top: 90px; left: 24px; right: 24px;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 16px 24px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  z-index: 899;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
}
.nav-mobile a:last-child { border: none; }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 16px; }

@media (max-width: 900px) {
  #nav { top: 12px; width: calc(100% - 32px); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1600&q=80&fit=crop') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.87) 50%, rgba(0,0,0,.52) 100%);
}

/* Layout: dos columnas */
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(60px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 56px;
  align-items: center;
  width: 100%;
}

/* Columna izquierda */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 640px;
}

/* Pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.35);
  color: var(--sky4);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
}
.hero-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sky4);
  flex-shrink: 0;
}

/* H1 */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
}
.hero-h1 em { font-style: normal; color: var(--sky4); }

/* Subtítulo */
.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,.72);
  font-weight: 500;
  line-height: 1.6;
  max-width: 500px;
}

/* Banner Superhost */
.hero-banner {
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.28);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: rgba(255,255,255,.88);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 460px;
}
.hero-banner strong { color: var(--sky4); font-weight: 800; }
.hero-banner svg { width: 18px; height: 18px; color: var(--sky4); flex-shrink: 0; }

/* CTAs */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Ghost hero button */
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background .2s;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,.2); }
.btn-ghost-hero svg { width: 16px; height: 16px; }

/* Columna derecha: stats verticales */
.hero-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 48px;
  gap: 0;
  min-width: 170px;
}
.hero-vstat {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-vstat:last-child { border-bottom: none; }
.hero-vstat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--sky4);
  line-height: 1;
}
.hero-vstat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-top: 5px;
  letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-family: var(--font-heading);
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '↓';
  font-size: 18px;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════
   DOLOR / SOLUCIÓN
════════════════════════════════════════ */
#dolor {
  padding-block: var(--section-py);
  background: #161616;
}
#dolor .section-label { color: var(--sky4); }
#dolor .section-title { color: var(--white); }

/* ── Grid ── */
.dolor-grid {
  display: grid;
  grid-template-columns: 1fr 52px 1fr;
  gap: 0;
  margin-top: 52px;
  align-items: stretch;
}

/* ── VS divider ── */
.dolor-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0;
}
.dolor-vs::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.dolor-vs span {
  position: relative;
  z-index: 1;
  background: #161616;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  font-family: var(--font-heading);
}

/* ── Columns ── */
.dolor-col {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.dolor-col h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dolor-col h3 svg { width: 16px; height: 16px; }
.dolor-list { display: flex; flex-direction: column; gap: 0; }
.dolor-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dolor-item:last-child { border-bottom: none; }
.dolor-icon { flex-shrink: 0; margin-top: 3px; }
.dolor-icon svg { width: 16px; height: 16px; }

/* ── Bad column (izquierda) ── */
.dolor-col--bad {
  background: rgba(0,0,0,.25);
  border-radius: 20px 0 0 20px;
  border: 1px solid rgba(255,80,80,.12);
  border-right: none;
}
.dolor-col--bad h3 { color: rgba(255,100,100,.75); }
.dolor-col--bad .dolor-item { color: rgba(255,255,255,.38); }
.dolor-col--bad .dolor-icon svg { color: rgba(220,60,60,.6); }

/* ── Good column (derecha) ── */
.dolor-col--good {
  background: rgba(45,45,45,.55);
  border-radius: 0 20px 20px 0;
  border: 1px solid rgba(255,255,255,.10);
  border-left: none;
  position: relative;
}
.dolor-col--good::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky4), var(--sky));
  border-radius: 0 20px 0 0;
}
.dolor-col--good h3 { color: var(--sky4); }
.dolor-good-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: inherit;
  line-height: 1;
}
.dolor-logo-icon { width: 28px; height: auto; flex-shrink: 0; filter: brightness(0) invert(1); }
.dolor-good-logo .stay  { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--white); display: inline; }
.dolor-good-logo .baires { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--sky4); display: inline; }
.dolor-col--good .dolor-item { color: rgba(255,255,255,.82); }
.dolor-col--good .dolor-icon svg { color: #F5A623 !important; }

/* ── Quote ── */
.dolor-quote {
  margin-top: 56px;
  padding: 0 48px;
  text-align: center;
  color: var(--white);
}
.dolor-quote em {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
  display: block;
  margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .dolor-grid { grid-template-columns: 1fr; }
  .dolor-vs { display: none; }
  .dolor-col--bad { border-radius: 20px 20px 0 0; border-right: 1px solid rgba(255,80,80,.12); border-bottom: none; }
  .dolor-col--good { border-radius: 0 0 20px 20px; border-left: 1px solid rgba(255,255,255,.1); border-top: none; }
  .dolor-col--good::before { border-radius: 0; }
  .dolor-quote { padding: 28px 24px; }
}

/* ════════════════════════════════════════
   CALCULADORA
════════════════════════════════════════ */
#calculadora {
  padding-block: var(--section-py);
  background: var(--bg2);
}
.calc-wrapper {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 1px 0 var(--border), 0 12px 48px rgba(0,0,0,.08);
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--border);
}

/* ── Stepper ── */
.calc-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 80px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.calc-step-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text3);
  transition: color var(--dur) var(--ease);
  cursor: default;
  border-bottom: none;
}
.calc-step-tab .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border);
  color: var(--text3);
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
}
.calc-step-tab .step-lbl {
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: inherit;
}
.step-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 60px; max-width: 140px;
  margin-top: 20px;
  transition: background var(--dur) var(--ease);
}
.calc-step-tab.active { color: var(--navy); }
.calc-step-tab.active .step-num {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  box-shadow: 0 0 0 5px rgba(31,64,96,.10);
}
.calc-step-tab.done { color: var(--text2); }
.calc-step-tab.done .step-num {
  background: var(--sky4); border-color: var(--sky4); color: var(--white);
}
.calc-step-tab.done .step-num span { display: none; }
.calc-step-tab.done .step-num::after { content: '✓'; font-size: 16px; font-weight: 700; }
.calc-step-tab.done + .step-connector { background: var(--sky4); }

/* ── Body ── */
.calc-body { padding: clamp(28px, 4vw, 52px); }
.calc-panel { display: none; }
.calc-panel.active { display: block; }
.calc-panel h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

/* ── Barrio grid (Step 1) ── */
.barrio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.barrio-grid .chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 12px 16px;
  border-radius: 16px;
  border: 2px solid var(--border);
  background: var(--bg);
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-align: center;
}
.barrio-grid .chip svg {
  width: 18px; height: 18px;
  color: var(--text3);
  transition: color var(--dur) var(--ease);
  flex-shrink: 0;
}
.barrio-name {
  font-size: 14px; font-weight: 700;
  color: var(--text);
  transition: color var(--dur) var(--ease);
  line-height: 1.2;
}
.barrio-grid .chip-price {
  font-size: 11px; font-weight: 500;
  color: var(--text3);
  transition: color var(--dur) var(--ease);
}
.barrio-grid .chip:hover {
  border-color: var(--navy);
  background: rgba(31,64,96,.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.barrio-grid .chip:hover svg { color: var(--navy); }
.barrio-grid .chip:hover .barrio-name { color: var(--navy); }
.barrio-grid .chip.selected {
  border-color: var(--navy); background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(31,64,96,.28);
}
.barrio-grid .chip.selected svg { color: var(--sky4); }
.barrio-grid .chip.selected .barrio-name { color: var(--white); }
.barrio-grid .chip.selected .chip-price { color: rgba(255,255,255,.6); }

/* ── Ambientes (Step 2) ── */
.amb-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 28px; }
.amb-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px 12px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: var(--bg);
  position: relative;
}
.amb-card .amb-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(31,64,96,.06);
  margin: 0 auto 10px;
  color: var(--navy);
  transition: all var(--dur) var(--ease);
}
.amb-card .amb-icon svg { width: 22px; height: 22px; }
.amb-card .amb-label { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--text); transition: color var(--dur) var(--ease); }
.amb-card .amb-mult { display: none; }
.amb-card:hover { border-color: var(--navy); background: rgba(31,64,96,.04); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.amb-card.selected { border-color: var(--navy); background: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(31,64,96,.28); }
.amb-card.selected .amb-icon { background: rgba(255,255,255,.12); color: var(--sky4); }
.amb-card.selected .amb-label { color: var(--white); }
.amb-card.selected::after { content: '✓'; position: absolute; top: 10px; right: 12px; font-size: 12px; font-weight: 700; color: var(--sky4); }

/* ── Extras toggle ── */
.extras-label { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 12px; margin-top: 4px; }
.extras-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 10px; margin-bottom: 32px; }
.extra-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border: 2px solid var(--border); border-radius: 12px;
  cursor: pointer; background: var(--bg);
  transition: all var(--dur) var(--ease);
  font-size: 13px; font-family: var(--font-heading); font-weight: 600; color: var(--text2);
}
.extra-toggle input { display: none; }
.extra-toggle svg { width: 16px; height: 16px; flex-shrink: 0; }
.extra-toggle:has(input:checked) { border-color: var(--sky4); background: rgba(239,184,16,.08); color: var(--navy); }

/* ── Estado (Step 3) ── */
.estado-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 28px; }
.estado-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px 12px 20px;
  text-align: center;
  cursor: pointer;
  background: var(--bg);
  transition: all var(--dur) var(--ease);
  position: relative;
}
.estado-card .est-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(31,64,96,.06);
  margin: 0 auto 10px;
  color: var(--navy);
  transition: all var(--dur) var(--ease);
}
.estado-card .est-icon svg { width: 22px; height: 22px; }
.estado-card .est-label { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--text); transition: color var(--dur) var(--ease); }
.estado-card .est-mult { display: none; }
.estado-card:hover { border-color: var(--navy); background: rgba(31,64,96,.04); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.estado-card.selected { border-color: var(--navy); background: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(31,64,96,.28); }
.estado-card.selected .est-icon { background: rgba(255,255,255,.12); color: var(--sky4); }
.estado-card.selected .est-label { color: var(--white); }
.estado-card.selected::after { content: '✓'; position: absolute; top: 10px; right: 12px; font-size: 12px; font-weight: 700; color: var(--sky4); }

/* ── Slider ── */
.slider-wrap { margin-bottom: 28px; }
.slider-header {
  display: flex; justify-content: space-between;
  font-family: var(--font-heading); font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 14px;
}
.slider-val { color: var(--navy); font-size: 15px; font-weight: 700; }
input[type=range] {
  -webkit-appearance: none;
  width: 100%; height: 6px;
  border-radius: 3px; background: var(--border);
  outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }

/* ── Nav buttons ── */
.calc-nav {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Resultado */
#calc-result {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,48px);
  color: var(--white);
  margin-top: 32px;
  display: none;
}
#calc-result.visible { display: block; }
.result-main {
  text-align: center;
  margin-bottom: 32px;
}
.result-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.result-amount {
  font-family: var(--font-display);
  font-size: clamp(40px,7vw,72px);
  font-weight: 700;
  color: var(--sky4);
  line-height: 1;
}
.result-period {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-family: var(--font-heading);
  margin-top: 4px;
}
.result-bars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.rbar-row { display: flex; align-items: center; gap: 12px; }
.rbar-label { font-size: 13px; font-family: var(--font-heading); color: rgba(255,255,255,.75); width: 160px; flex-shrink: 0; }
.rbar-track { flex: 1; height: 10px; background: rgba(255,255,255,.12); border-radius: 5px; overflow: hidden; }
.rbar-fill { height: 100%; border-radius: 5px; transition: width 1s var(--ease); }
.rbar-fill.grey  { background: rgba(255,255,255,.3); }
.rbar-fill.yellow{ background: #F5A623; }
.rbar-fill.sky   { background: var(--sky4); }
.rbar-amount { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--white); width: 90px; text-align: right; flex-shrink: 0; }
.result-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  text-align: center;
  font-style: italic;
}

@media (max-width: 768px) {
  .barrio-grid { grid-template-columns: repeat(2, 1fr); }
  .amb-grid { grid-template-columns: repeat(2, 1fr); }
  .estado-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-progress { padding: 24px 24px 20px; }
  .step-connector { min-width: 32px; }
}

/* ════════════════════════════════════════
   TESTIMONIOS
════════════════════════════════════════ */
#testimonios {
  padding-block: var(--section-py);
  background-image: url('https://thumbs.dreamstime.com/b/alegre-joven-mujer-sosteniendo-llaves-de-apartamento-comprando-o-alquilando-casa-enfoque-selectivo-432427214.jpg');
  background-size: cover;
  background-position: 68% center;
  position: relative;
}
/* Overlay: muy oscuro a la izquierda (texto), transparente a la derecha (cara) */
#testimonios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.93) 0%,
    rgba(0,0,0,.93) 33%,
    rgba(0,0,0,.65) 54%,
    rgba(0,0,0,.18) 80%,
    rgba(0,0,0,.04) 100%
  );
  z-index: 0;
}
#testimonios .container { position: relative; z-index: 1; }
#testimonios .section-label { color: var(--sky4); }
#testimonios .section-label::before { background: var(--sky4); }
#testimonios .section-title { color: var(--white); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 40px;
}
.test-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.test-stars { color: #F5A623; font-size: 16px; margin-bottom: 12px; }
.test-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sky4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}
.test-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.test-name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.test-meta { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }

@media (max-width: 768px) {
  .test-grid { grid-template-columns: 1fr; }
  #testimonios { background-position: center top; }
  #testimonios::before {
    background: rgba(0,0,0,.78);
  }
}

/* ════════════════════════════════════════
   RESEÑAS HUÉSPEDES
════════════════════════════════════════ */
#resenas {
  padding-block: var(--section-py);
  overflow: hidden;
}
.resenas-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  margin-top: 32px;
  cursor: grab;
}
.resenas-strip:active { cursor: grabbing; }
.resena-card {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.resena-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.resena-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}
.resena-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.resena-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--text); }
.resena-loc  { font-size: 11px; color: var(--text3); margin-top: 1px; }
.resena-stars { color: #F5A623; font-size: 13px; margin-bottom: 8px; }
.resena-text { font-size: var(--fs-sm); color: var(--text2); line-height: 1.6; }
.resena-date { font-size: 11px; color: var(--text3); margin-top: 10px; }

.resenas-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.resenas-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
}
.airbnb-star { font-size: 20px; color: #FF5A5F; }

/* ════════════════════════════════════════
   SERVICIOS
════════════════════════════════════════ */
#servicios {
  padding-block: var(--section-py);
  background: var(--bg2);
}
/* ── Pricing grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

/* Base card */
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}

/* Free card */
.pricing-free {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Featured card */
.pricing-featured {
  background: var(--navy);
  border: 1px solid var(--navy);
  box-shadow: var(--shadow-lg);
}

/* Plan label */
.pricing-plan-label {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--sky4);
}

/* Amount block */
.pricing-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
}
.pricing-free .pricing-price     { color: var(--navy); }
.pricing-featured .pricing-price { color: var(--white); }

.pricing-period {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
}
.pricing-free .pricing-period     { color: var(--text3); }
.pricing-featured .pricing-period { color: rgba(255,255,255,.55); }

/* Description */
.pricing-desc {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid;
}
.pricing-free .pricing-desc     { color: var(--text2); border-color: var(--border); }
.pricing-featured .pricing-desc { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.12); }

/* List */
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-body);
  line-height: 1.5;
}
.pricing-free .pricing-list li     { color: var(--text2); }
.pricing-featured .pricing-list li { color: rgba(255,255,255,.85); }

.pricing-list svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sky4);
}

/* Footer note (free card) */
.pricing-footer-note {
  font-size: var(--fs-sm);
  color: var(--text3);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Featured CTA */
.pricing-featured .btn { align-self: flex-start; margin-top: auto; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .pricing-card { padding: 28px 22px; }
}

/* ════════════════════════════════════════
   DIFERENCIAL BOUTIQUE
════════════════════════════════════════ */
#diferencial {
  padding-block: var(--section-py);
  background: var(--navy);
}
#diferencial .section-label { color: var(--sky4); }
#diferencial .section-label::before { background: var(--sky4); }
#diferencial .section-title { color: var(--white); }
#diferencial .section-subtitle { color: rgba(255,255,255,.7); max-width: 560px; margin-top: 12px; }

.dif-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.dif-stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.dif-stat .num {
  font-family: var(--font-display);
  font-size: clamp(32px,4vw,48px);
  font-weight: 700;
  color: var(--sky4);
  line-height: 1;
}
.dif-stat .lbl {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  letter-spacing: .04em;
}

.dif-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.dif-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  gap: 16px;
}
.dif-card-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky4);
}
.dif-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
  color: var(--white);
  margin-bottom: 6px;
}
.dif-card p { font-size: var(--fs-sm); color: rgba(255,255,255,.65); line-height: 1.55; }

@media (max-width: 600px) {
  .dif-cards { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   PROCESO
════════════════════════════════════════ */
#proceso {
  padding-block: var(--section-py);
}
.proceso-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.proceso-visual {
  background: var(--navy3);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 320px;
}
.proceso-big-num {
  font-family: var(--font-display);
  font-size: clamp(72px,10vw,120px);
  font-weight: 700;
  color: var(--sky4);
  line-height: 1;
}
.proceso-visual p { font-family: var(--font-heading); font-size: 14px; color: rgba(255,255,255,.7); letter-spacing: .05em; text-transform: uppercase; }

.proceso-steps { display: flex; flex-direction: column; gap: 28px; }
.proceso-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.paso-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.20);
}
.paso-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
  color: var(--navy);
  margin-bottom: 6px;
}
.paso-content p { font-size: var(--fs-body); color: var(--text2); line-height: 1.6; }
.paso-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: var(--sky3);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 900px) {
  .proceso-inner { grid-template-columns: 1fr; }
  .proceso-visual { min-height: 200px; }
}

/* ════════════════════════════════════════
   PROPIEDADES
════════════════════════════════════════ */
#propiedades {
  padding-block: var(--section-py);
  background: var(--bg2);
}
.prop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.prop-filter {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.prop-filter:hover  { border-color: var(--sky4); color: var(--navy); }
.prop-filter.active { border-color: var(--navy); background: var(--navy); color: var(--white); }

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.prop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prop-card.hidden { display: none; }
.prop-img { width: 100%; height: 200px; position: relative; overflow: hidden; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.prop-card:hover .prop-img img { transform: scale(1.06); }
.prop-rating {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 4px 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-barrio {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--navy);
  border-radius: 50px;
  padding: 4px 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
}
.prop-body { padding: 18px 18px 20px; }
.prop-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--navy);
  margin-bottom: 6px;
}
.prop-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.prop-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.prop-price span { font-size: 12px; font-weight: 400; color: var(--text3); }
.prop-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.prop-btn {
  flex: 1;
  padding: 9px 12px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: all var(--dur) var(--ease);
  border: 1.5px solid var(--border);
  color: var(--text2);
  background: var(--bg);
}
.prop-btn:hover { border-color: var(--navy); color: var(--navy); }
.prop-btn.primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.prop-btn.primary:hover { background: var(--navy2); }

.prop-more-wrap { text-align: center; margin-top: 32px; }

@media (max-width: 1024px) { .prop-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .prop-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   SERVICIOS ADICIONALES
════════════════════════════════════════ */
#adicionales {
  padding-block: var(--section-py);
}
.adicionales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.adic-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.adic-card-img {
  position: absolute;
  inset: 0;
}
.adic-card-img img { width: 100%; height: 100%; object-fit: cover; }
.adic-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, transparent 50%);
}
/* Panel glassmorphism */
.adic-glass {
  position: relative;
  z-index: 2;
  margin: 0 14px 14px;
  border-radius: 14px;
  padding: 20px 22px 24px;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}
.adic-card.navy .adic-glass {
  background: rgba(8,18,36,.72);
  border: 1px solid rgba(255,255,255,.14);
}
.adic-card.light .adic-glass {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.6);
}
.adic-card.navy .adic-glass h3 { color: var(--white); }
.adic-card.navy .adic-glass p  { color: rgba(255,255,255,.75); }
.adic-card.light .adic-glass h3 { color: var(--navy); }
.adic-card.light .adic-glass p  { color: var(--text2); }
.adic-glass h3 { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-h3); margin-bottom: 10px; }
.adic-glass p  { font-size: var(--fs-body); line-height: 1.65; margin-bottom: 16px; }

/* Case study */
.case-study {
  background: var(--navy3);
  border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,48px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
}
.cs-col {
  padding: 28px 24px;
  background: var(--navy3);
}
.cs-col + .cs-col { border-left: 1px solid rgba(255,255,255,.12); }
.cs-icon {
  font-size: 28px;
  margin-bottom: 16px;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky4);
}
.cs-title {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky4);
  margin-bottom: 10px;
}
.cs-col h4 { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-h4); color: var(--white); margin-bottom: 8px; }
.cs-col p  { font-size: var(--fs-sm); color: rgba(255,255,255,.65); line-height: 1.6; }
.cs-result { color: #4ade80; font-weight: 700; font-size: var(--fs-h3); font-family: var(--font-heading); }

@media (max-width: 768px) {
  .adicionales-grid { grid-template-columns: 1fr; }
  .case-study { grid-template-columns: 1fr; }
  .cs-col + .cs-col { border-left: none; border-top: 1px solid rgba(255,255,255,.12); }
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
#faq {
  padding-block: var(--section-py);
  background: var(--bg2);
}
.faq-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-top: 40px;
}
.faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 88px;
  align-self: start;
}
.faq-tab {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  text-align: left;
}
.faq-tab:hover  { background: var(--white); color: var(--navy); }
.faq-tab.active { background: var(--navy); color: var(--white); }

.faq-panels {}
.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  transition: color var(--dur) var(--ease);
}
.faq-q:hover { color: var(--navy); }
.faq-q.open  { color: var(--navy); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
  font-size: 12px;
  color: var(--text3);
}
.faq-q.open .faq-chevron { transform: rotate(180deg); background: var(--navy); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  font-size: var(--fs-body);
  color: var(--text2);
  line-height: 1.7;
}
.faq-a.open {
  max-height: 400px;
  padding: 0 20px 18px;
}

@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-tabs { position: static; flex-direction: row; flex-wrap: wrap; }
}

/* ════════════════════════════════════════
   EQUIPO
════════════════════════════════════════ */
#equipo {
  padding-block: var(--section-py);
}
.equipo-esteban {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,48px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.est-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--sky4);
  flex-shrink: 0;
  border: 4px solid rgba(255,255,255,.25);
  overflow: hidden;
}
.est-avatar-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.est-info h3 { font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-h3); color: var(--white); margin-bottom: 4px; }
.est-info .est-role { font-size: 14px; color: rgba(255,255,255,.65); font-family: var(--font-heading); margin-bottom: 14px; }
.est-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.est-badge {
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
}
.est-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  border-left: 3px solid var(--sky4);
  padding-left: 16px;
  margin-top: 16px;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.team-name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--text3); }

@media (max-width: 900px) {
  .equipo-esteban { grid-template-columns: 1fr; text-align: center; }
  .est-badges { justify-content: center; }
  .est-quote { text-align: left; }
  .equipo-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
  .equipo-grid { grid-template-columns: repeat(2,1fr); }
}

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
#blog {
  padding-block: var(--section-py);
  background: var(--bg2);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img { width: 100%; height: 160px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 18px 16px 20px; }
.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--sky3);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-body p { font-size: var(--fs-sm); color: var(--text2); line-height: 1.6; margin-bottom: 14px; }
.blog-cta {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--sky4);
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-cta::after { content: '→'; transition: transform var(--dur) var(--ease); }
.blog-card:hover .blog-cta::after { transform: translateX(4px); }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════ */
#cta-final {
  padding-block: var(--section-py);
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 50%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(239,184,16,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(239,184,16,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 680px;
  margin: 0 auto 16px;
}
.cta-content p {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-micro {
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255,255,255,.5);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-micro span::before { content: '✓ '; color: #4ade80; }
.cta-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px,2.5vw,22px);
  color: rgba(255,255,255,.4);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#footer {
  background: var(--footer-bg);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img { height: 38px; filter: brightness(0) invert(1); }
.footer-logo-txt .stay  { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--white); display: block; line-height: 1; }
.footer-logo-txt .baires { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--sky4); display: block; line-height: 1; }
.footer-logo-txt .tag { font-size: 9px; font-family: var(--font-heading); color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; display: block; }
.footer-brand p { font-size: var(--fs-sm); color: rgba(255,255,255,.5); line-height: 1.65; max-width: 260px; }

/* ── Platform logos ── */
.footer-platforms {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-plat-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.footer-plat-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-plat-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.footer-plat-link {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease);
  text-decoration: none;
}
.footer-plat-link:hover { opacity: 1; }
.footer-plat-icon {
  width: auto;
  height: 16px;
  flex-shrink: 0;
}
.footer-plat-icon--booking { height: 18px; }
.footer-plat-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1;
}
.footer-plat-vrbo {
  font-size: 15px;
  letter-spacing: -0.5px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); font-family: var(--font-heading); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.3); font-family: var(--font-heading); transition: color var(--dur) var(--ease); }
.footer-links a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════
   LUCIDE ICON SIZING
════════════════════════════════════════ */

/* Star filled */
.icon-star-fill { fill: #F5A623; stroke: #F5A623; width: 14px; height: 14px; vertical-align: middle; }
.dif-stat .num .icon-star-fill { width: 20px; height: 20px; }

/* Btn icons */
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Nav */
.nav-cta svg { width: 15px; height: 15px; }

/* Hero */
.hero-banner svg { width: 18px; height: 18px; vertical-align: middle; }
.hero-metric svg { width: 14px; height: 14px; vertical-align: middle; }

/* Dolor section */
.dolor-col h3 svg { width: 20px; height: 20px; vertical-align: middle; }
.dolor-icon svg   { width: 18px; height: 18px; }

/* Servicios icon badge — tamaño definido en el bloque servicios */

/* No incluye */
.no-incluye h3 svg           { width: 18px; height: 18px; vertical-align: middle; }
.no-incluye-item svg         { width: 16px; height: 16px; flex-shrink: 0; vertical-align: middle; }

/* Diferencial cards */
.dif-card-icon svg { width: 26px; height: 26px; }

/* Calculadora: unit & estado cards */
.amb-icon svg { width: 36px; height: 36px; }
.est-icon svg { width: 36px; height: 36px; }

/* Calculadora extras */
.extra-toggle svg { width: 14px; height: 14px; vertical-align: middle; }

/* Proceso badges */
.paso-badge svg { width: 13px; height: 13px; vertical-align: middle; }

/* Propiedades cards */
.prop-rating svg { width: 13px; height: 13px; vertical-align: middle; }
.prop-meta svg   { width: 13px; height: 13px; vertical-align: middle; }

/* Case study */
.cs-icon svg { width: 38px; height: 38px; }

/* FAQ tabs */
.faq-tab svg { width: 15px; height: 15px; vertical-align: middle; }

/* Equipo badges */
.est-badge svg { width: 13px; height: 13px; vertical-align: middle; }

/* Footer contact links */
.footer-col a svg { width: 14px; height: 14px; vertical-align: middle; }

/* Reseñas badge */
.airbnb-star { width: 16px; height: 16px; vertical-align: middle; }
