
:root {
  --bg: #fff; --fg: #000; --accent: #25D366;
  --border: #e0e0e0;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --section-pad: clamp(80px, 10vw, 140px);
  --container-side: 6vw;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:var(--font-main); background:var(--bg); color:var(--fg); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
.container { padding: 0 var(--container-side); }
section { padding:var(--section-pad) 0; }

/* TYPE SCALE
   h1  Hero headline         — biggest, most emotional
   h2  Section headline      — large, structural
   h3  Service / item title  — medium, actionable
   h4  Card / value title    — small caps label
   h5  Metadata / eyebrow    — smallest, descriptive
*/
h1,h2,h3,h4,h5 { font-family:var(--font-display); font-weight:400; letter-spacing:-0.04em; line-height:1; }

/* H1 — Hero: "Detras de cada propiedad hay una persona" */
h1 { font-size:clamp(2.6rem,5.5vw,6.5rem); line-height:0.95; /*margin-bottom:50px;*/ }

/* H2 — Section headline: "Todo lo que necesitas", "Hacemos lo que decimos" */
h2 { font-size:clamp(2.2rem,4.5vw,5.5rem); line-height:0.95; margin-bottom:50px; }

/* H3 — Service titles / property titles: "Vender", "Comprar"... */
h3.service-title { font-size:clamp(1.6rem,3.5vw,3.8rem); }
h3 { font-size:clamp(1rem,1.8vw,1.4rem); font-weight:400; }

/* Section intro subtitle under h2 */
.section-intro-sub { font-size:clamp(1.8rem,3vw,3.2rem); line-height:1; letter-spacing:-0.03em; font-family:var(--font-display); font-weight:300; color:#333; margin-bottom:50px; }

.section-label { font-size:11px; text-transform:uppercase; letter-spacing:0.15em; font-weight:600; color:#888; margin-top:80px; margin-bottom:30px; display:block; }
.lead { font-size:clamp(1.1rem,2vw,1.5rem); line-height:1.4; letter-spacing:-0.02em; font-weight:300; max-width:45ch; }

/* HEADER */
header {
  position:fixed; top:0; width:100%; height:90px;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
  background:rgba(255,255,255,0.93); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border); z-index:1000;
  padding:0 var(--container-side);
  transition:height .45s cubic-bezier(.16,1,.3,1), box-shadow .45s, border-color .45s;
}
header.scrolled { height:60px; border-bottom-color:rgba(224,224,224,.4); box-shadow:0 8px 40px rgba(0,0,0,.05); }
header.scrolled .logo img { height:20px; }
header.scrolled .header-phone-num { font-size:11px; }

.header-left { display:flex; align-items:center; }
.header-phone-link { display:flex; align-items:center; gap:9px; text-decoration:none; color:inherit; transition:opacity .3s; }
.header-phone-link:hover { opacity:.55; }
.header-phone-num { font-size:13px; font-weight:600; letter-spacing:.03em; color:#111; transition:font-size .45s cubic-bezier(.16,1,.3,1); }
.logo { display:flex; justify-content:center; }
.logo img { height:35px; transition:height .45s cubic-bezier(.16,1,.3,1); }
.header-right { display:flex; justify-content:flex-end; }
.nav-trigger { background:none; border:none; cursor:pointer; font-family:var(--font-display); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.15em; display:flex; align-items:center; gap:12px; color:#fff; cursor:pointer; transition:opacity .3s; }
.nav-trigger:hover { opacity:.5; }
.nav-trigger-label { display:inline; }
.hamburger { display:flex; flex-direction:column; gap:5px; }
.hamburger span { width:18px; height:1px; background:#000; display:block; }
.hamburger span:last-child { width:12px; }







/* ════════════════════════════════════════
   HERO HOME — estilos especificos
   Contenedor raiz: .hero-home
   No afecta ninguna clase existente.
════════════════════════════════════════ */

.hero-home {
  min-height: 100svh;
  padding-top: 90px; /* altura del header fijo */
  display: flex;
  flex-direction: column;
  /*background: #f5f5f3;*/
  position: relative;
  overflow: hidden;
}

/* Linea decorativa horizontal que divide el hero */
.hero-home::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: #e0e0e0;
}

/* ── BANDA SUPERIOR: etiqueta zona ── */
.hero-home-top {
  padding: clamp(24px, 3vw, 40px) var(--container-side) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-home-zone {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #999;
  font-family: var(--font-display);
  font-weight: 500;
}
.hero-home-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #bbb;
  font-family: var(--font-display);
}
.hero-home-scroll-hint-line {
  width: 24px;
  height: 1px;
  background: #ccc;
  display: block;
}

/* ── CUERPO CENTRAL ── */
.hero-home-body {
  flex: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  align-items: center;
  padding: 0 var(--container-side);
  padding-bottom: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 60px);
}

/* Columna izquierda: headline */
.hero-home-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 6vw;
  border-right: 1px solid #ddd;
}

.hero-home-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #aaa;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  display: block;
}

.hero-home-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.93;
  color: #000;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.hero-home-lead {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.hero-home-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-home-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  transition: opacity .3s;
}
.hero-home-cta-primary:hover { opacity: .75; }
.hero-home-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  transition: border-color .25s;
}
.hero-home-cta-secondary:hover { border-color: #000; }

/* Columna derecha: simuladores + datos */
.hero-home-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: clamp(28px, 4vw, 56px);
  gap: clamp(28px, 3.5vw, 44px);
}

/* Bloque de simuladores */
.hero-home-sim-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: #aaa;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.hero-home-sim-list {
  list-style: none;
  border-top: 1px solid #ddd;
}
.hero-home-sim-item {
  border-bottom: 1px solid #ddd;
}
.hero-home-sim-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
  padding: 16px 0;
  gap: 16px;
  transition: padding-left .3s cubic-bezier(.16,1,.3,1);
}
.hero-home-sim-link:hover {
  padding-left: 8px;
}
.hero-home-sim-link:hover .hero-home-sim-tag{
  background: #111;
  color: #fff;
}
.hero-home-sim-link-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.hero-home-sim-num {
  font-family: var(--font-display);
  font-size: 10px;
  color: #ccc;
  letter-spacing: .1em;
  flex-shrink: 0;
  width: 20px;
  font-variant-numeric: tabular-nums;
}
.hero-home-sim-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
}
.hero-home-sim-tag {
  font-size: 9px;
  background: #ebebeb;
  color: #888;
  padding: 3px 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.6s ease, color 0.6s ease;
}
.hero-home-sim-arrow {
  flex-shrink: 0;
  opacity: .2;
  transition: opacity .25s, transform .3s cubic-bezier(.16,1,.3,1);
}
.hero-home-sim-link:hover .hero-home-sim-arrow {
  opacity: .8;
  transform: translate(3px, -3px);
}

/* ── BANDA INFERIOR: datos y firma ── */
.hero-home-footer {
  border-top: 1px solid #ddd;
  padding: clamp(18px, 2.5vw, 28px) var(--container-side);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hero-home-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: clamp(20px, 3vw, 40px);
  border-right: 1px solid #ddd;
}
.hero-home-stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: clamp(20px, 3vw, 40px);
}
.hero-home-stat:nth-child(2) {
  padding-left: clamp(20px, 3vw, 40px);
}
.hero-home-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
  color: #000;
}
.hero-home-stat-label {
  font-size: .72rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  line-height: 1.3;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-home-body {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
  }
  .hero-home-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: clamp(36px, 5vw, 52px);
  }
  .hero-home-right { padding-left: 0; }
}
@media (max-width: 768px) {
  .hero-home-scroll-hint { display: none; }
  .hero-home-footer { grid-template-columns: 1fr 1fr; }
  .hero-home-stat:last-child {
    grid-column: 1/-1;
    border-right: none;
    border-top: 1px solid #ddd;
    padding-left: 0;
    padding-top: 16px;
    margin-top: 4px;
  }
  .hero-home-stat:nth-child(2) { border-right: none; padding-left: clamp(16px,4vw,32px); }
}
@media (max-width: 600px) {
  .hero-home-body { padding-bottom: clamp(36px, 6vw, 56px); }
  .hero-home-footer { grid-template-columns: 1fr; }
  .hero-home-stat {
    border-right: none;
    border-top: 1px solid #ddd;
    padding: 14px 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero-home-stat:first-child { border-top: none; }
}


/** fin hero - home **/






/* ═══════════════════════════════════════════════════
   ESTILOS ESPECIFICOS DE INVERTIR
   Para mover a main.css cuando proceda.
   Ninguna clase duplica las ya existentes en main.css.
═══════════════════════════════════════════════════ */

/* BREADCRUMB — estructura igual que alquilar-nueva */
.inv-breadcrumb {
  padding-top: calc(90px + 24px);
  padding-bottom: 0;
  border-bottom: none;
}
.inv-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #bbb;
  flex-wrap: wrap;
}
.inv-breadcrumb-inner a { color: #bbb; text-decoration: none; transition: color .3s; }
.inv-breadcrumb-inner a:hover { color: #000; }
.inv-breadcrumb-inner > span:not(.inv-bc-sep) { color: #000; }
.inv-bc-sep { opacity: .4; }

/* CONTENT LAYOUT */
.inv-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6vw;
  align-items: start;
  padding: var(--section-pad) 0;
}
.inv-main {}
.inv-sidebar { position: sticky; top: 110px; }

/* CONTENT SECTION SEPARATOR */
.inv-section { margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--border); }
.inv-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 14px; display: block; }
.inv-section-title { font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,2.2rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 24px; color: #000; }

/* PROSE */
.inv-prose p { font-size: 1.05rem; color: #333; line-height: 1.85; margin-bottom: 28px; max-width: 62ch; }
.inv-prose p:last-child { margin-bottom: 0; }

/* INFLATION BLOCK — fondo negro, solo en esta página */
.inv-inflation {
  background: #000;
  color: #fff;
  padding: clamp(36px,5vw,56px) clamp(28px,4vw,48px);
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
.inv-inflation::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.inv-inflation::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 20px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}
.inv-inflation-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.8); margin-bottom: 20px; display: block; }
.inv-inflation-title { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2.2rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 20px; color: #fff; }
.inv-inflation-body { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.8; max-width: 58ch; margin-bottom: 28px; }
.inv-inflation-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 28px; }
.inv-inflation-col { padding: 24px 28px; }
.inv-inflation-col.bank { background: rgba(255,255,255,.04); }
.inv-inflation-col.property { background: rgba(255,255,255,.08); }
.inv-inflation-col-label { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,1); margin-bottom: 12px; display: block; }
.inv-inflation-col-title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; letter-spacing: -.02em; color: #fff; margin-bottom: 10px; }
.inv-inflation-col-figure { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.inv-inflation-col.bank .inv-inflation-col-figure { color: rgba(255,255,255,.6); }
.inv-inflation-col.property .inv-inflation-col-figure { color: #fff; }
.inv-inflation-col-detail { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.inv-inflation-disclaimer { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 20px; line-height: 1.5; }

/* PROFILE STEPS — 4 columnas */
.inv-profile-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin: 40px 0; }
.inv-profile-step { background: #f7f7f7; padding: 28px 24px; }
.inv-profile-step-num { font-family: var(--font-display); font-size: 10px; color: #ccc; letter-spacing: .15em; margin-bottom: 14px; display: block; }
.inv-profile-step-title { font-family: var(--font-display); font-size: .9rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; color: #000; }
.inv-profile-step p { font-size: .8rem; color: #666; line-height: 1.6; }

/* INVESTMENT TYPE CARDS */
.inv-cards { display: flex; flex-direction: column; gap: 2px; margin: 40px 0; }
.inv-card { background: #f7f7f7; padding: 40px 36px; }
.inv-card-header { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; margin-bottom: 22px; }
.inv-card-tag { font-size: 9px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 10px; display: block; }
.inv-card-title { font-family: var(--font-display); font-size: clamp(1.2rem,2.2vw,1.8rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 4px; color: #000; }
.inv-card-for { font-size: .8rem; color: #666; font-weight: 500; }
.inv-card-metrics { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; flex-shrink: 0; }
.inv-metric { text-align: right; }
.inv-metric-label { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: #bbb; display: block; margin-bottom: 2px; }
.inv-metric-value { font-family: var(--font-display); font-size: clamp(1rem,1.8vw,1.4rem); font-weight: 400; letter-spacing: -.03em; color: #000; line-height: 1; }
.inv-card-desc { font-size: .9rem; color: #444; line-height: 1.75; max-width: 58ch; margin-bottom: 22px; }
.inv-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; }
.inv-card-section-title { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #aaa; margin-bottom: 10px; display: block; }
.inv-card-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.inv-card-list li { font-size: .83rem; color: #555; padding-left: 14px; position: relative; line-height: 1.5; }
.inv-card-list li::before { content: '—'; position: absolute; left: 0; color: #ccc; font-size: .7rem; top: 2px; }
.inv-card-badge { background: #000; color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; padding: 5px 12px; border-radius: 20px; white-space: nowrap; align-self: start; }
.inv-card-badge.passive { background: #f0f0f0; color: #555; }

/* PASSIVE INVESTMENT BLOCK */
.inv-passive { border: 1px solid var(--border); padding: 36px 32px; margin: 40px 0; }
.inv-passive-title { font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.6rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; color: #000; }
.inv-passive-body { font-size: .95rem; color: #444; line-height: 1.8; max-width: 58ch; margin-bottom: 22px; }
.inv-passive-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.inv-passive-feature { display: flex; gap: 10px; align-items: flex-start; }
.inv-passive-feature-icon { flex-shrink: 0; margin-top: 2px; opacity: .4; }
.inv-passive-feature-text { font-size: .85rem; color: #555; line-height: 1.5; }
.inv-passive-feature-text strong { color: #000; font-weight: 600; display: block; margin-bottom: 2px; }

/* PROCESS STEPS */
.inv-steps { margin: 40px 0; }
.inv-steps-title { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: #888; margin-bottom: 24px; }
.inv-step { display: grid; grid-template-columns: 40px 1fr; gap: 0 20px; padding: 24px 0; border-top: 1px solid var(--border); align-items: start; }
.inv-step:last-child { border-bottom: 1px solid var(--border); }
.inv-step-num { font-family: var(--font-display); font-size: 11px; color: #ccc; padding-top: 3px; font-weight: 500; }
.inv-step-content h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 6px; color: #000; }
.inv-step-content p { font-size: .88rem; color: #666; line-height: 1.65; }

/* FAQ */
.inv-faq { margin: 40px 0; }
.inv-faq .faq-item { border-top: 1px solid var(--border); }
.inv-faq .faq-item:last-child { border-bottom: 1px solid var(--border); }
.inv-faq .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 20px; }
.inv-faq .faq-q-text { font-family: var(--font-display); font-size: clamp(.95rem,1.5vw,1.1rem); font-weight: 400; letter-spacing: -.02em; color: #000; }
.inv-faq .faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.inv-faq .faq-icon::before, .inv-faq .faq-icon::after { content: ''; position: absolute; background: #000; border-radius: 2px; transition: opacity .3s; }
.inv-faq .faq-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.inv-faq .faq-icon::after { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.inv-faq .faq-item.open .faq-icon::after { opacity: 0; }
.inv-faq .faq-a { display: none; padding-bottom: 22px; font-size: .9rem; color: #444; line-height: 1.8; max-width: 60ch; }
.inv-faq .faq-item.open .faq-a { display: block; }

/* PROMISE STRIP */
.inv-promise { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 50px; }
.inv-promise p { font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,2rem); font-weight: 300; letter-spacing: -.03em; color: #222; line-height: 1.3; max-width: 55ch; }

/* STICKY FORM */
.inv-sf { background: #f9f9f9; border: 1px solid var(--border); padding: 36px 32px; }
.inv-sf-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 16px; display: block; }
.inv-sf-title { font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.5rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 28px; color: #000; }

/* OTHER SERVICES */
.inv-other-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 50px; }
.inv-other-card { text-decoration: none; color: inherit; padding: 40px 36px; background: #f7f7f7; display: flex; flex-direction: column; justify-content: space-between; min-height: 240px; position: relative; overflow: hidden; transition: .4s cubic-bezier(.16,1,.3,1); }
.inv-other-card::after { content: ''; position: absolute; inset: 0; background: #000; transform: translateY(100%); transition: .5s cubic-bezier(.16,1,.3,1); z-index: 0; }
.inv-other-card:hover::after { transform: translateY(0); }
.inv-other-card > * { position: relative; z-index: 1; }
.inv-other-card:hover .ioc-title, .inv-other-card:hover .ioc-sub, .inv-other-card:hover .ioc-arrow { color: #fff; }
.inv-other-card:hover .ioc-label { color: #555; }
.ioc-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; transition: color .3s; }
.ioc-title { font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,2rem); font-weight: 400; letter-spacing: -.03em; line-height: 1; margin: 16px 0 8px; transition: color .3s; }
.ioc-sub { font-size: .85rem; color: #777; font-weight: 300; transition: color .3s; max-width: 28ch; }
.ioc-arrow { display: flex; align-items: center; gap: 8px; margin-top: 28px; font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: #000; transition: color .3s; }
.ioc-arrow svg { flex-shrink: 0; transition: transform .3s; }
.inv-other-card:hover .ioc-arrow svg { transform: translate(3px,-3px); }

/* ─── RESPONSIVE ─── */
@media(max-width:1200px) { .inv-layout { grid-template-columns: 1fr 320px; } }
@media(max-width:1024px) {
  .inv-layout { grid-template-columns: 1fr; }
  .inv-sidebar { position: static; width: 100%; max-width: 560px; }
  .inv-profile-steps { grid-template-columns: 1fr 1fr; }
  .inv-card-body { grid-template-columns: 1fr; }
  .inv-inflation-compare { grid-template-columns: 1fr; }
  .inv-passive-features { grid-template-columns: 1fr; }
  .inv-other-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .inv-profile-steps { grid-template-columns: 1fr 1fr; }
  .inv-card-header { grid-template-columns: 1fr; }
  .inv-card-metrics { flex-direction: row; align-items: flex-start; gap: 20px; }
  .inv-metric { text-align: left; }
  .inv-other-grid { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .inv-profile-steps { grid-template-columns: 1fr; }
  .inv-section { margin-top: 40px; padding-top: 40px; }
  .inv-inflation-compare { grid-template-columns: 1fr; }
}


/** FIN INVERTIR **/






/* ═══════════════════════════════════════════════════
   ESTILOS ESPECIFICOS DE NOSOTROS
   Para mover a main.css cuando proceda.
   Prefijo: .nos-  (ninguna clase duplica main.css)
═══════════════════════════════════════════════════ */

/* BREADCRUMB — versión nosotros (una línea, sin sidebar) */
.nos-breadcrumb {
  padding-top: calc(90px + 24px);
  border-bottom: none;
}
.nos-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #bbb;
}
.nos-breadcrumb-inner a { color: #bbb; text-decoration: none; transition: color .3s; }
.nos-breadcrumb-inner a:hover { color: #000; }
.nos-breadcrumb-inner > span:not(.nos-bc-sep) { color: #000; }
.nos-bc-sep { opacity: .4; }

/* HERO — columna derecha con pills de contexto */
.nos-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 0;
}
.nos-hero-pills {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.nos-hero-pill {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.nos-hero-pill-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #bbb;
  margin-bottom: 8px;
  display: block;
}
.nos-hero-pill-value {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: #000;
}
.nos-hero-pill-note {
  font-size: .82rem;
  color: #999;
  margin-top: 6px;
}

/* STATEMENT — bloque negro editorial */
.nos-statement {
  background: #000;
  color: #fff !important;
  border-top: none;
  border-bottom: none;
}
.nos-statement-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8vw;
  align-items: center;
  padding: var(--section-pad) var(--container-side);
}
.nos-statement-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  font-weight: 600;
}
.nos-statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.15;
  color: #fff;
}
.nos-statement-text em {
  font-style: normal;
  color: rgba(255,255,255,.35);
}

/* 360 — WHAT WE ARE */
.nos-what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.nos-what-body {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  max-width: 48ch;
  margin-top: 16px;
}
.nos-service-list { display: flex; flex-direction: column; gap: 0; }
.nos-service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  transition: padding-left .25s cubic-bezier(.16,1,.3,1);
}
.nos-service-row:last-child { border-bottom: 1px solid var(--border); }
.nos-service-row:hover { padding-left: 8px; }
.nos-service-num { font-family: var(--font-display); font-size: 10px; color: #ccc; font-weight: 500; letter-spacing: .1em; width: 22px; }
.nos-service-name { font-family: var(--font-display); font-size: clamp(.95rem,1.6vw,1.15rem); font-weight: 400; letter-spacing: -.02em; color: #000; text-decoration: none; }
.nos-service-name:hover { color: #000; }
.nos-service-tag { font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: #bbb; font-weight: 600; white-space: nowrap; }
.nos-service-note { font-size: .8rem; color: #bbb; margin-top: 20px; line-height: 1.6; }

/* BIG CLAIM */
.nos-claim {
  padding: clamp(60px,8vw,100px) 0;
  border-bottom: 1px solid var(--border);
}
.nos-claim-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: 1;
  max-width: 18ch;
  color: #000;
}
.nos-claim-text span { color: #ccc; }

/* CONFLICT RESOLUTION */
.nos-conflict-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
}
.nos-conflict-card {
  background: #f7f7f7;
  padding: 40px 36px;
  height: 100%;
}
.nos-conflict-card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #aaa;
  margin-bottom: 16px;
  display: block;
  font-weight: 600;
}
.nos-conflict-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #000;
}
.nos-conflict-card-body { font-size: .9rem; color: #555; line-height: 1.8; }
.nos-conflict-card-body p { margin-bottom: 14px; }
.nos-conflict-card-body p:last-child { margin-bottom: 0; }

/* HOW WE WORK */
.nos-how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.nos-how-intro { font-size: .9rem; color: #555; line-height: 1.8; max-width: 36ch; margin-top: 16px; }
.nos-how-items { display: flex; flex-direction: column; }
.nos-how-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.nos-how-item:last-child { border-bottom: 1px solid var(--border); }
.nos-how-num { font-family: var(--font-display); font-size: 11px; color: #ccc; padding-top: 3px; font-weight: 500; }
.nos-how-content h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 7px; color: #000; }
.nos-how-content p { font-size: .88rem; color: #666; line-height: 1.7; }

/* VALUES */
.nos-values-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin-bottom: 60px;
  align-items: end;
}
.nos-values-intro-text { font-size: 1rem; color: #555; line-height: 1.8; max-width: 44ch; }
.nos-values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.nos-value-card { padding: 40px 0; border-top: 1px solid var(--border); }
.nos-value-card:nth-child(odd) { padding-right: 4vw; border-right: 1px solid var(--border); }
.nos-value-card:nth-child(even) { padding-left: 4vw; }
.nos-value-card-num { font-family: var(--font-display); font-size: 10px; color: #ccc; letter-spacing: .15em; margin-bottom: 16px; display: block; }
.nos-value-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .25em; color: #000; margin-bottom: 14px; }
.nos-value-card p { font-size: .9rem; color: #444; line-height: 1.75; }

/* COMPARISON TABLE */
.nos-diff-intro { max-width: 52ch; margin-bottom: 50px; }
.nos-diff-intro p { font-size: 1rem; color: #555; line-height: 1.8; }
.nos-diff-table { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.nos-diff-head { padding: 16px 24px; background: #f7f7f7; border-bottom: 1px solid var(--border); }
.nos-diff-head-label { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; color: #aaa; font-family: var(--font-display); }
.nos-diff-head.ours { background: #000; }
.nos-diff-head.ours .nos-diff-head-label { color: rgba(255,255,255,.5); }
.nos-diff-label, .nos-diff-std, .nos-diff-ours { padding: 14px 24px; border-bottom: 1px solid #f5f5f5; font-size: .83rem; display: flex; align-items: center; }
.nos-diff-label { color: #666; border-right: 1px solid var(--border); }
.nos-diff-std { color: #000; border-right: 1px solid var(--border); background: #fafafa; }
.nos-diff-std.no { /*color: #ddd;*/ }
.nos-diff-ours { background: #000; color: #fff; font-weight: 500; }
.nos-diff-ours.yes::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; margin-right: 10px; flex-shrink: 0; }
.nos-diff-note { font-size: .75rem; color: #bbb; margin-top: 16px; }

/* CERTIFICATIONS */
.nos-cert {
  background: #000;
  color: #fff;
  padding: clamp(60px,8vw,100px) 0;
  border-bottom: none;
}
.nos-cert-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.3); margin-bottom: 20px; display: block; }
.nos-cert-title { font-family: var(--font-display); font-size: clamp(1.2rem,2.2vw,1.8rem); font-weight: 400; letter-spacing: -.03em; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.nos-cert-subtitle { font-size: .85rem; color: rgba(255,255,255,.3); margin-bottom: 50px; max-width: 48ch; line-height: 1.6; }
.nos-cert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.nos-cert-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); padding: 40px 36px; display: flex; flex-direction: column; gap: 20px; transition: background .3s; }
.nos-cert-card:hover { background: rgba(255,255,255,.06); }
.nos-cert-logo-area { height: 44px; display: flex; align-items: center; }
.nos-cert-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.2); text-transform: uppercase; }
.nos-cert-org { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.25); margin-bottom: 4px; }
.nos-cert-name { font-family: var(--font-display); font-size: .9rem; font-weight: 400; letter-spacing: -.01em; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.nos-cert-number-label { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.2); margin-bottom: 4px; }
.nos-cert-number { font-family: var(--font-display); font-size: clamp(.9rem,1.5vw,1.1rem); font-weight: 400; letter-spacing: .05em; color: rgba(255,255,255,.6); }

/* CTA FINAL */
.nos-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6vw;
  align-items: center;
}
.nos-cta-text p { font-size: 1rem; color: #555; line-height: 1.7; max-width: 46ch; margin-top: 12px; }
.nos-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.nos-cta-btn-primary { background: #000; color: #fff; text-decoration: none; padding: 16px 36px; font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; transition: opacity .3s; white-space: nowrap; display: inline-block; }
.nos-cta-btn-primary:hover { opacity: .75; }
.nos-cta-btn-secondary { color: #000; text-decoration: none; font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; border-bottom: 1px solid #e0e0e0; padding-bottom: 3px; white-space: nowrap; transition: border-color .3s; }
.nos-cta-btn-secondary:hover { border-color: #000; }

/* reveal-fade — variante sin translateY */
.reveal-fade { opacity: 0; transition: 1.2s cubic-bezier(.16,1,.3,1); }
.reveal-fade.visible { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .nos-what-inner, .nos-how-inner, .nos-values-intro,
  .nos-conflict-inner, .nos-cta-inner { grid-template-columns: 1fr; }
  .nos-statement-inner { grid-template-columns: 1fr; gap: 24px; padding: var(--section-pad) var(--container-side); }
  .nos-diff-table { grid-template-columns: 1fr 1fr; }
  .nos-cert-grid { grid-template-columns: 1fr 1fr; }
  .nos-cta-actions { align-items: flex-start; }
}
@media(max-width:768px) {
  .nos-values-grid { grid-template-columns: 1fr; }
  .nos-value-card:nth-child(odd) { padding-right: 0; border-right: none; }
  .nos-value-card:nth-child(even) { padding-left: 0; }
  .nos-cert-grid { grid-template-columns: 1fr; }
  .nos-diff-table { grid-template-columns: 1fr; }
  .nos-diff-head.standard, .nos-diff-std { display: none; }
  .nos-conflict-card { height: auto; }
}
@media(max-width:600px) {
  .nos-cert-grid { grid-template-columns: 1fr; }
}



/*** FIN NOSOTROS ***/







/**** COMPRAR *****/



/* PROSE */
.prose p { font-size: 1.05rem; color: #333; line-height: 1.85; margin-bottom: 28px; max-width: 62ch; }
.prose p:last-child { margin-bottom: 0; }

/* SECTION DIVIDER inside content */
.content-section { margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--border); }
.content-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 14px; display: block; }
.content-section-title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 2.2rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 24px; color: #000; }

/* VALUE PROP CARDS */
.value-prop-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 40px 0; }
.vp-card { background: #f7f7f7; padding: 36px 32px; }
.vp-card-num { font-family: var(--font-display); font-size: 10px; color: #ccc; letter-spacing: .15em; margin-bottom: 16px; display: block; font-weight: 500; }
.vp-card-title { font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 12px; color: #000; }
.vp-card p { font-size: .88rem; color: #555; line-height: 1.7; }

/* SERVICE MODALITY CARDS (buyer) */
.buyer-services { display: flex; flex-direction: column; gap: 2px; margin: 40px 0; }
.buyer-service { background: #f7f7f7; padding: 36px 32px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; }
.buyer-service-content {}
.buyer-service-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 10px; display: block; }
.buyer-service-title { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 8px; }
.buyer-service-fee { font-family: var(--font-display); font-size: .75rem; color: #999; letter-spacing: .05em; font-weight: 500; text-transform: uppercase; margin-bottom: 16px; display: block; }
.buyer-service p { font-size: .9rem; color: #555; line-height: 1.75; max-width: 52ch; }
.buyer-service-badge { background: #000; color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; padding: 5px 12px; border-radius: 20px; white-space: nowrap; align-self: start; flex-shrink: 0; }
.buyer-service-list { margin-top: 18px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.buyer-service-list li { font-size: .85rem; color: #444; line-height: 1.5; padding-left: 16px; position: relative; }
.buyer-service-list li::before { content: '—'; position: absolute; left: 0; color: #bbb; font-size: .75rem; }

/* NOTE STRIP */
.note-strip {
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.note-strip-icon { flex-shrink: 0; margin-top: 2px; }
.note-strip p { font-size: .9rem; color: #444; line-height: 1.75; }
.note-strip strong { color: #000; font-weight: 600; }

/* PROCESS STEPS */
.steps { margin: 40px 0; }
.steps-title { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: #888; margin-bottom: 24px; }
.step { display: grid; grid-template-columns: 40px 1fr; gap: 0 20px; padding: 24px 0; border-top: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num { font-family: var(--font-display); font-size: 11px; color: #ccc; padding-top: 3px; font-weight: 500; }
.step-content h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 6px; color: #000; }
.step-content p { font-size: .88rem; color: #666; line-height: 1.65; }

/* DIFFERENTIATORS */
.differentiators { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; margin: 40px 0; }
.diff-card { padding: 32px 28px; border: 1px solid var(--border); }
.diff-card-num { font-family: var(--font-display); font-size: 10px; color: #ccc; letter-spacing: .1em; margin-bottom: 16px; display: block; }
.diff-card h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 10px; color: #000; line-height: 1.2; }
.diff-card p { font-size: .83rem; color: #666; line-height: 1.65; }



/* PROMISE STRIP */
.promise-strip { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 50px; }
.promise-strip p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 300; letter-spacing: -.03em; color: #222; line-height: 1.3; max-width: 55ch; }



/* RESPONSIVE */
@media(max-width:1024px) {
  .other-services-grid { grid-template-columns:1fr 1fr; }
  .differentiators { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .value-prop-cards { grid-template-columns:1fr; }
  .buyer-service { grid-template-columns:1fr; }
  .buyer-service-badge { align-self:auto; width:fit-content; }
  .differentiators { grid-template-columns:1fr; }
  .other-services-grid { grid-template-columns:1fr; }
}
@media(max-width:600px) {
  .note-strip { grid-template-columns:1fr; }
}


/**** FIN COMPRAR ****/









/**** ALQUILAR *****/


/* PROPERTY TYPE GRID */
.prop-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 40px 0; }
.prop-type-card { padding: 28px 26px; border: 1px solid var(--border); }
.prop-type-icon { margin-bottom: 14px; opacity: .4; }
.prop-type-name { font-family: var(--font-display); font-size: .95rem; font-weight: 500; letter-spacing: -.02em; margin-bottom: 6px; color: #000; }
.prop-type-desc { font-size: .8rem; color: #777; line-height: 1.6; }

/* MAIN SERVICE CARDS */
.service-cards-alq { display: flex; flex-direction: column; gap: 2px; margin: 40px 0; }
.service-card-alq { background: #f7f7f7; padding: 40px 36px; position: relative; }
.service-card-alq-header { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; margin-bottom: 20px; }
.service-card-alq-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 10px; display: block; }
.service-card-alq-title { font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 6px; }
.service-card-alq-fee { font-family: var(--font-display); font-size: .75rem; color: #999; letter-spacing: .05em; font-weight: 500; text-transform: uppercase; display: block; margin-bottom: 0; }
.service-card-alq-badge { background: #000; color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; padding: 5px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; align-self: start; }
.service-card-alq-desc { font-size: .95rem; color: #444; line-height: 1.75; max-width: 56ch; margin-bottom: 24px; }
.service-card-alq-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; }
.service-card-alq-list li { font-size: .85rem; color: #444; line-height: 1.5; padding-left: 16px; position: relative; }
.service-card-alq-list li::before { content: '—'; position: absolute; left: 0; color: #bbb; font-size: .75rem; }

/* INCLUSION TABLE */
.inclusion-table { margin: 40px 0; border: 1px solid var(--border); }
.inclusion-row { display: grid; grid-template-columns: 1fr 80px 80px; border-bottom: 1px solid var(--border); }
.inclusion-row:last-child { border-bottom: none; }
.inclusion-row.header-row { background: #f7f7f7; }
.inclusion-cell { padding: 14px 20px; font-size: .85rem; color: #333; line-height: 1.4; }
.inclusion-cell.label-cell { color: #555; }
.inclusion-cell.check-cell { text-align: center; border-left: 1px solid var(--border); }
.inclusion-row.header-row .inclusion-cell { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: #aaa; font-weight: 700; padding: 12px 20px; font-family: var(--font-display); }
.check-yes { color: #000; font-weight: 700; font-size: 1rem; }
.check-no { color: #ccc; font-size: .9rem; }

/* SPECIAL MODALITIES */
.special-modalities { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 40px 0; }
.special-card { background: #f7f7f7; padding: 36px 32px; }
.special-card-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 12px; display: block; }
.special-card-title { font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 12px; color: #000; }
.special-card p { font-size: .88rem; color: #555; line-height: 1.7; margin-bottom: 14px; }
.special-card-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.special-card-list li { font-size: .82rem; color: #666; padding-left: 14px; position: relative; line-height: 1.5; }
.special-card-list li::before { content: '—'; position: absolute; left: 0; color: #ccc; font-size: .7rem; top: 2px; }

/* STEPS — reutiliza .steps de main.css,
   clase propia para no colisionar */
.steps-alq { margin: 40px 0; }
.steps-alq-title { font-family: var(--font-display); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: #888; margin-bottom: 24px; }
.step-alq { display: grid; grid-template-columns: 40px 1fr; gap: 0 20px; padding: 24px 0; border-top: 1px solid var(--border); align-items: start; }
.step-alq:last-child { border-bottom: 1px solid var(--border); }
.step-alq-num { font-family: var(--font-display); font-size: 11px; color: #ccc; padding-top: 3px; font-weight: 500; }
.step-alq-content h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 6px; color: #000; }
.step-alq-content p { font-size: .88rem; color: #666; line-height: 1.65; }

/* NOTE STRIP */
.note-strip-alq { border: 1px solid var(--border); padding: 28px 32px; margin: 40px 0; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; }
.note-strip-alq p { font-size: .9rem; color: #444; line-height: 1.75; }
.note-strip-alq strong { color: #000; font-weight: 600; }

/* FAQ */
.faq-alq { margin: 40px 0; }
.faq-alq .faq-item { border-top: 1px solid var(--border); }
.faq-alq .faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-alq .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 20px; }
.faq-alq .faq-q-text { font-family: var(--font-display); font-size: clamp(.95rem, 1.5vw, 1.1rem); font-weight: 400; letter-spacing: -.02em; color: #000; }
.faq-alq .faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-alq .faq-icon::before, .faq-alq .faq-icon::after { content: ''; position: absolute; background: #000; border-radius: 2px; transition: opacity .3s; }
.faq-alq .faq-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-alq .faq-icon::after { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-alq .faq-item.open .faq-icon::after { opacity: 0; }
.faq-alq .faq-a { display: none; padding-bottom: 22px; font-size: .9rem; color: #444; line-height: 1.8; max-width: 60ch; }
.faq-alq .faq-item.open .faq-a { display: block; }

/* PROMISE STRIP */
.promise-strip { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 50px; }
.promise-strip p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 2rem); font-weight: 300; letter-spacing: -.03em; color: #222; line-height: 1.3; max-width: 55ch; }


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .prop-types { grid-template-columns: 1fr 1fr; }
  .special-modalities { grid-template-columns: 1fr 1fr; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .service-card-alq-list { grid-template-columns: 1fr; }
  .service-card-alq-header { grid-template-columns: 1fr; }
  .service-card-alq-badge { width: fit-content; }
  .prop-types { grid-template-columns: 1fr 1fr; }
  .special-modalities { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr; }
  .inclusion-table { overflow-x: auto; }
}
@media (max-width: 600px) {
  .prop-types { grid-template-columns: 1fr; }
  .note-strip-alq { grid-template-columns: 1fr; }
}

/**** FIN ALQUILAR ****/







/* HERO */
.hero {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto 1fr;
  padding-bottom: 8vh;
  align-items: start;
}
.hero > .section-label {
  grid-column: 1 / -1;
  align-self: start;
}

.hero > h1 {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin-bottom: 0;
}
/* section-label extra spacing before title handled by margin-bottom above */



/* ABOUT STRIP */
.about-strip {
  background: #f5f5f3;
  padding-top: 20px;
  padding-bottom: 80px;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: start;
  margin-top: 0px;
}

.about-strip-title {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #000;
  margin-bottom: 0;
}

.about-strip-abstract {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  color: #333;
  font-weight: 300;
  max-width: 52ch;
  padding-top: 8px;
}

@media (max-width: 768px) {
  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}




/* TRUST STRIP */
#trust-strip {
  background: #f5f5f3;
  padding-top: 20px;
  padding-bottom: 80px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
  margin-top: 40px;
}

.trust-strip-title {
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #000;
  margin-bottom: 0;
  position: sticky;
  top: 110px;
}

.trust-strip-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-strip-abstract {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  color: #333;
  font-weight: 300;
  max-width: 52ch;
}

.trust-strip-values {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  border-top: 1px solid var(--border);
}

.trust-value {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.trust-value-label {
  font-family: var(--font-display);
  font-size: clamp(1.01rem, 1.1vw, 3.95rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000;
}

.trust-value-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
}

@media (max-width: 768px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-strip-title {
    position: static;
  }
  .trust-value {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}




/* CONTACT LIGHTBOX */
    .lb-inner {
      min-height:100vh;
      display:grid;
      grid-template-columns:1fr 1fr;
      align-items:stretch;
    }
    .lb-left {
      padding:clamp(60px,8vw,110px) clamp(40px,6vw,90px);
      display:flex;
      flex-direction:column;
      justify-content:center;
      border-right:1px solid #f0f0f0;
    }
    .lb-right {
      padding:clamp(60px,8vw,110px) clamp(40px,6vw,90px);
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .lb-close {
      position:fixed;top:28px;right:var(--container-side);
      font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.25em;
      cursor:pointer;color:#aaa;transition:color .3s;z-index:10;
      background:none;border:none;font-family:var(--font-display);
    }
    .lb-close:hover{color:#000;}
    .lb-label { font-size:11px;text-transform:uppercase;letter-spacing:.2em;color:#aaa;margin-bottom:20px;display:block; }
    .lb-title {
      font-family:var(--font-display);
      font-size:clamp(1.8rem,3vw,2.8rem);
      font-weight:400;letter-spacing:-.04em;line-height:1.05;
      margin-bottom:24px;
    }
    .lb-abstract {
      font-size:.95rem;color:#666;line-height:1.75;font-weight:300;
      max-width:36ch;
    }
    .lb-field {
      border-bottom:1px solid #e8e8e8;
      margin-bottom:0;
      transition:border-color .3s;
    }
    .lb-field:focus-within { border-bottom-color:#000; }
    .lb-field + .lb-field { margin-top:0; }
    .lb-field-wrap { display:flex;flex-direction:column;padding:18px 0 4px; }
    .lb-field label {
      font-size:10px;text-transform:uppercase;letter-spacing:.18em;
      font-weight:700;color:#bbb;margin-bottom:6px;
      transition:color .3s;
    }
    .lb-field:focus-within label { color:#000; }
    .lb-field input, .lb-field textarea {
      width:100%;border:none;outline:none;
      font-size:1rem;font-family:var(--font-main);
      color:#111;background:transparent;
      padding:0 0 10px;line-height:1.4;
    }
    .lb-field textarea { resize:none;min-height:80px; }
    .lb-field input::placeholder, .lb-field textarea::placeholder { color:#ccc; }
    .lb-fields-grid {
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:0 5vw;
    }
    .lb-field-full { grid-column:1/-1; }
    .lb-check-row {
      display:flex;align-items:flex-start;gap:12px;
      margin-top:28px;margin-bottom:32px;
    }
    .lb-check-row input[type=checkbox] {
      width:14px;height:14px;flex-shrink:0;margin-top:2px;
      accent-color:#000;cursor:pointer;
    }
    .lb-check-row label {
      font-size:.8rem;color:#999;line-height:1.5;cursor:pointer;
    }
    .lb-check-row a { color:#666;text-decoration:underline; }
    .lb-submit {
      background:#000;color:#fff;border:none;
      padding:16px 48px;
      font-size:10px;font-family:var(--font-display);
      text-transform:uppercase;letter-spacing:.2em;font-weight:700;
      cursor:pointer;transition:opacity .3s;
      align-self:flex-start;
    }
    .lb-submit:hover { opacity:.75; }
    @media(max-width:768px){
      .lb-inner { grid-template-columns:1fr; }
      .lb-left { border-right:none;border-bottom:1px solid #f0f0f0;padding-bottom:40px;justify-content:flex-start; }
      .lb-fields-grid { grid-template-columns:1fr; }
    }
  






/* SERVICIOS */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; /* opcional, separación entre items */
}
@media (max-width:950px) {
  .services-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px; /* opcional, separación entre items */
  }
}
.services-intro { font-size:clamp(1rem,1.4vw,1.15rem); color:#666; font-weight:300; max-width:55ch; margin-bottom:60px; line-height:1.6; }
.service-item { padding-top: 30px; border-top:1px solid var(--border); transition:.4s cubic-bezier(.16,1,.3,1); cursor:pointer; }
/*.service-item:last-child { border-bottom:1px solid var(--border); }*/
.service-header { display:flex; justify-content:space-between; align-items:flex-start; }
.service-header-left { display:flex; flex-direction:column; gap:8px; }
.service-title { font-weight:400; transition:.4s; line-height:1; }
.service-subtitle { font-size:clamp(.85rem,1.4vw,1.05rem); color:#888; font-weight:300; letter-spacing:-.01em; transition:.4s; font-family:var(--font-main); }
.service-item:hover .service-title,
.service-item:hover .service-subtitle { transform:translateX(15px); }
.arrow-icon { width:30px; height:30px; stroke:#000; stroke-width:1.2px; fill:none; transition:.4s; opacity:.3; flex-shrink:0; margin-top:10px; }
.service-item:hover .arrow-icon { transform:translate(5px,-5px); opacity:1; }
.service-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.tag { font-size:clamp(.40rem,1.6vw,0.58rem); border:1px solid #bbb; padding:5px 13px; border-radius:30px; text-transform:uppercase; font-weight:700; letter-spacing:.05em; }


.service-content {
  max-width: 650px;
  font-size:clamp(.80rem,1.6vw,1.02rem);
  color: #444;
  line-height: 1.7;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows .5s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}
.service-content > * {
  overflow: hidden;
  min-height: 0;
  padding-top: 20px;
  padding-bottom: 15px;
}
.service-content.is-visible {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-bottom: 35px;
}

.service-cta { display:inline-flex; align-items:center; gap:10px; margin-top:28px; text-decoration:none; color:#000; font-family:var(--font-display); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.18em; border-bottom:1px solid #000; padding-bottom:4px; transition:gap .3s, opacity .3s; }
.service-cta:hover { gap:16px; opacity:.6; }
.service-cta svg { flex-shrink:0; }

/* PROPIEDADES */
.prop-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px 5vw; }
.prop-item { color:inherit; display:block; }
.prop-slider { position:relative; width:100%; aspect-ratio:4/3; overflow:hidden; margin-bottom:20px; background:#f9f9f9; cursor:grab; user-select:none; }
.prop-slider:active { cursor:grabbing; }
.prop-slider-track { display:flex; height:100%; transition:transform .6s cubic-bezier(.16,1,.3,1); }
.prop-slider-track img { width:100%; height:100%; object-fit:cover; flex-shrink:0; filter:grayscale(1); transition:filter .6s; pointer-events:none; }
.prop-slider.active-slide .prop-slider-track img { filter:grayscale(0); }
.slider-btn { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,.82); border:none; cursor:pointer; width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s, background .2s; z-index:2; box-shadow:0 2px 14px rgba(0,0,0,.1); }
.slider-btn svg { width:13px; height:13px; stroke:#111; stroke-width:1.5; fill:none; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.prop-slider:hover .slider-btn { opacity:1; }
.slider-btn:hover { background:rgba(255,255,255,1); }
.slider-prev { left:14px; }
.slider-next { right:14px; }
.slider-dots { position:absolute; bottom:12px; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:2; pointer-events:none; }
.slider-dot { width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.5); transition:background .3s; }
.slider-dot.active { background:#fff; }
.prop-info { display:flex; justify-content:space-between; align-items:flex-start; border-bottom:1px solid #f0f0f0; padding-bottom:18px; gap:16px; }
a.prop-info { color: #000; text-decoration: none; }

.prop-item:hover .prop-slider-track img,
.prop-slider.active-slide .prop-slider-track img {
  filter:grayscale(0);
}


.prop-info-left h3 { font-family:var(--font-display); font-size:clamp(.95rem,1.6vw,1.25rem); font-weight:400; letter-spacing:-.02em; margin-bottom:4px; line-height:1.2; }
.prop-location { color:#bbb; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; }
.prop-specs { display:flex; gap:14px; flex-wrap:wrap; }
.prop-spec { display:flex; align-items:center; gap:5px; font-size:.78rem; color:#777; }
.prop-spec svg { flex-shrink:0; opacity:.7; }
.prop-price { font-family:var(--font-display); font-size:clamp(1.1rem,1.8vw,1.6rem); font-weight:400; white-space:nowrap; flex-shrink:0; padding-top:2px; }

/* NOSOTROS */
.nosotros-block { padding:30px 0 80px; padding-bottom: 40px; }
.nosotros-block h2 { font-size:clamp(2rem,4.5vw,5.5rem); line-height:1; letter-spacing:-.04em; margin-bottom:0; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:6vw; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.value-card { padding:40px 0; border-top:1px solid var(--border); }
.value-card:nth-child(odd) { padding-right:4vw; border-right:1px solid var(--border); }
.value-card:nth-child(even) { padding-left:4vw; }
/* h4 = value name */
.value-card h3 { font-family:var(--font-display); font-size:15px; font-weight:700; text-transform:uppercase; letter-spacing:.25em; color:#000; margin-bottom:14px; }
.value-card p { font-size:.95rem; color:#444; line-height:1.7; }

/* FOOTER */
footer { padding:clamp(60px,10vw,120px) var(--container-side) 40px; background:#000; color:#fff; display:flex; flex-direction:column; align-items:center; text-align:center; }

/* Hero block: logo + hablamos + contact */
.footer-hero { display:flex; flex-direction:column; align-items:center; padding-bottom:clamp(50px,7vw,90px); border-bottom:1px solid #1a1a1a; margin-bottom:60px; width:100%; }
.footer-logo-wrap { margin-bottom:36px; }
.footer-logo-wrap img { height:35px; filter:brightness(0) invert(1); }
.footer-hablamos { font-family:var(--font-display); font-size:clamp(1rem,4vw,1.8rem); font-weight:300; letter-spacing:-.04em; color:#888; margin-bottom:60px; margin-top: 20px; }
.footer-contact-row { display:flex; align-items:center; gap:36px; flex-wrap:wrap; justify-content:center; }
/* contact items: white, bigger, bold */
.footer-contact-item { display:flex; align-items:center; gap:10px; text-decoration:none; color:#fff; font-size:clamp(1rem,1.6vw,1.08rem); font-weight:500; transition:opacity .3s; letter-spacing:-.01em; }
.footer-contact-item:hover { opacity:.6; }
.footer-contact-item svg { flex-shrink:0; transition:opacity .3s; }
.footer-contact-item:hover svg { opacity:1; }
.footer-divider { width:1px; height:60px; background:#222; }

/* Body: single centered column */
.footer-body { display:flex; flex-direction:column; align-items:center; width:100%; }
.footer-cols {
  display:flex; flex-direction:row; flex-wrap:wrap;
  gap:clamp(40px,6vw,90px); justify-content:center;
  margin-bottom:60px; width:100%;
}
.footer-col { text-align:center; }
.footer-col .section-label { color:#3a3a3a; margin-bottom:14px; display:block; }
.footer-link { color:#999; text-decoration:none; display:block; margin-bottom:10px; font-size:14px; font-weight:500; transition:color .3s; }
.footer-link:hover { color:#fff; }
.footer-desc { color:#555; font-size:13px; font-weight:500; line-height:1.8; }
.footer-links-row { display:flex; flex-direction:column; align-items:center; }
.footer-bottom { border-top:1px solid #161616; padding-top:30px; padding-bottom: 70px; width:100%; display:flex; justify-content:center; gap:40px; font-size:10px; color:#666; text-transform:uppercase; letter-spacing:.1em; font-weight:600; }

/* STICKY NAV */
.sticky-nav { position:fixed; bottom:28px; left:50%; transform:translateX(-50%); background:#000; color:#fff; border: 1px solid #666; padding:11px 28px; border-radius:100px; display:flex; gap:22px; align-items:center; z-index:1000; box-shadow:0 20px 50px rgba(0,0,0,.25); white-space:nowrap; }
.sticky-nav a { color:#fff; text-decoration:none; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; }

/* MENU OVERLAY */
.menu-overlay { position:fixed; inset:0; background:#0a0a0a; z-index:2000; display:grid; grid-template-columns:55fr 45fr; transform:translateY(-100%); transition:transform .8s cubic-bezier(.76,0,.24,1); overflow:hidden; }
.menu-overlay.active { transform:translateY(0); }
.menu-left { display:flex; flex-direction:column; justify-content:center; padding:100px var(--container-side) 60px; border-right:1px solid #161616; }
.menu-right { display:flex; flex-direction:column; justify-content:space-between; padding:100px var(--container-side) 60px; }
.menu-close { position:absolute; top:32px; right:var(--container-side); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.25em; cursor:pointer; color:#666; transition:color .3s; }
.menu-close:hover { color:#fff; }
.menu-links { display:flex; flex-direction:column; }
.menu-link-item { display:flex; align-items:center; justify-content:space-between; text-decoration:none; color:#fff; padding:9px 0; border-bottom:1px solid #161616; transition:padding-left .4s cubic-bezier(.16,1,.3,1), border-color .3s; }
.menu-link-item:first-child { border-top:1px solid #161616; }
.menu-link-item:hover { padding-left:18px; border-bottom-color:#2a2a2a; }
.menu-link-text { display:flex; flex-direction:column; gap:3px; }
.menu-link-name { font-family:var(--font-display); font-size:clamp(1.1rem,3vw,1.6rem); font-weight:400; letter-spacing:-.03em; line-height:1; }
.menu-link-sub { font-size:10px; color:#777; font-weight: 600; letter-spacing:.1em; text-transform:uppercase; transition:color .3s; }
.menu-link-item:hover .menu-link-sub { color:#999; }
.menu-arrow-icon { width:20px; height:20px; stroke:#fff; stroke-width:1px; fill:none; opacity:0; transform:translate(-6px,6px); transition:.4s cubic-bezier(.16,1,.3,1); flex-shrink:0; }
.menu-link-item:hover .menu-arrow-icon { opacity:1; transform:translate(0,0); }
.menu-right-top { flex:1; padding-top:10px; }
.menu-right-eyebrow { font-size:10px; text-transform:uppercase; letter-spacing:.2em; color:#888; font-weight: 600; margin-bottom:18px; }
.menu-right-tagline { font-family:var(--font-display); font-size:clamp(1.2rem,2.2vw,1.9rem); font-weight:500; letter-spacing:-.03em; color:#666; line-height:0.99; max-width:15ch; }
.menu-contact-block { border-top:1px solid #161616; padding-top:28px; }
.menu-contact-eyebrow { font-size:10px; text-transform:uppercase; letter-spacing:.2em; color:#888; margin-bottom:16px; font-weight: 600; }
.menu-contact-link { display:flex; align-items:center; gap:10px; text-decoration:none; color:#f0f0f0; font-size:.88rem; margin-bottom:11px; transition:color .3s; }
.menu-contact-link:hover { color:#fff; }
.menu-contact-link svg { flex-shrink:0; opacity:.35; }
.menu-region { font-size:9px; color:#888; font-weight: 600; text-transform:uppercase; letter-spacing:.2em; margin-top:22px; }

/* REVEAL */
.reveal { opacity:0; transform:translateY(40px); transition:1.2s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width:1024px) {
  .values-grid { grid-template-columns:1fr 1fr; }
  .menu-overlay { grid-template-columns:1fr; }
  .menu-right { display:none; }
  .menu-left { padding-top:110px; }
}
@media (max-width:768px) {
  .logo img { height:28px; }
  .footer-logo-wrap img { height:28px; }
  .prop-grid { grid-template-columns:1fr; gap:55px; }
  .values-grid { grid-template-columns:1fr; }
  .value-card:nth-child(odd) { padding-right:0; border-right:none; }
  .value-card:nth-child(even) { padding-left:0; }
}
@media (max-width:600px) {
  :root { --container-side:24px; --section-pad:70px; }
  header.scrolled .logo img { height:16px; }
  .header-phone-num { display:none; }
  .nav-trigger-label { display:none; }
  .footer-contact-row { gap:16px; flex-direction:column; align-items:center; }
  .footer-divider { display:none; }
  .footer-cols { flex-direction:column; align-items:center; gap:32px; }
  .footer-col { width:100%; }
}



/* LEGAL */

.legal h2 {
  font-size: clamp(1.4rem, 2.1vw, 3.1rem);
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal p {
  
}




/* HERO BOTTOM: lead + quicklinks lado a lado */
.hero-bottom {
  grid-column: 1;
  grid-row: 3;
  margin-top: 24px;
  align-self: start;
}
/* HERO QUICKLINKS */
.hero-quicklinks {
  grid-column: 2;
  grid-row: 2 / 5;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 4vw;
}
.hero-ql-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #888;
  padding: 15px 0;
  letter-spacing: 0.04em;
  font-size: clamp(.78rem, 1.1vw, .9rem);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
  font-family: 'Space Grotesk', sans-serif;
  transition: padding-left .3s cubic-bezier(.16,1,.3,1), color .2s;
}

.hero-ql-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
  padding: 13px 0;
  border-bottom: 1px solid #d8d8d8;
  transition: padding-left .35s cubic-bezier(.16,1,.3,1), border-color .3s;
}
.hero-ql-item:first-child {
  border-top: 1px solid #d8d8d8;
}

.hero-ql-label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1vw, 1.98rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}

.hero-ql-arrow {
  width: 16px;
  height: 16px;
  opacity: .25;
  flex-shrink: 0;
  transition: opacity .35s, transform .35s cubic-bezier(.16,1,.3,1);
}

.hero-ql-item:hover {
  padding-left: 8px;
  border-bottom-color: #aaa;
}
.hero-ql-item:hover .hero-ql-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}


/* HERO QUICKLINKS — mensaje hover */
.hero-ql-message {
  min-height: 3.5em;
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
  padding-left: 0px;
  overflow: hidden;
}

.hero-ql-message-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s cubic-bezier(.16,1,.3,1), transform .35s cubic-bezier(.16,1,.3,1);
  display: block;
  max-width: 22ch;
  border-left: 1px solid #000;
  padding-left: 18px;
}

.hero-ql-message-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    align-items: start;
  }
  .hero > h1 {
    grid-column: 1;
    grid-row: 2;
    align-self: auto;
  }
  .hero-quicklinks {
    grid-column: 1;
    grid-row: 4;
    padding-left: 0;
    margin-top: 50px;

  }  
  .hero-bottom {
    grid-column: 1;
    grid-row: 3;
    margin-top: 40px;

  }
  .hero-ql-message {
    display: none;  
  }
  .hero-ql-message-text {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }
  .hero-ql-item:first-child {
    border-top: none;
  }

}

@media (max-width: 600px) {
  .hero-bottom {
    margin-top: 40px;
    gap: 32px;
  }
  .hero-ql-label {
    font-size: .88rem;
  }
}







/* ── SERVICIOS FOOTER ── */
.servicios-strip{
  padding:var(--section-pad) 0;
  border-bottom:1px solid var(--border);
  background:#f5f5f3;
}
.servicios-strip-head{
  /*display:flex;*/
  display:baseline;
  justify-content:space-between;
  /*margin-bottom:50px;*/
  gap:20px;
}
.servicios-strip-title{
  font-family:var(--font-display);
  font-size:clamp(1.8rem,3.5vw,4rem);
  font-weight:400;letter-spacing:-.04em;line-height:1;
  margin-bottom: 30px;
}
.servicios-strip-sub{
  font-size:clamp(.95rem,1.5vw,1.22rem);
  color:#666;
  font-weight:400;
  max-width:30ch;
  text-align:left;
  line-height:1.3;
  margin-bottom: 2em;
}
.servicios-links{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--border);
  border:1px solid var(--border);
}
.servicio-link{
  background:#fff;
  text-decoration:none;color:inherit;
  padding:36px 28px;
  display:flex;flex-direction:column;justify-content:space-between;
  min-height:200px;
  position:relative;overflow:hidden;
  transition:.4s cubic-bezier(.16,1,.3,1);
}
.servicio-link::after{
  content:'';position:absolute;inset:0;
  background:#000;transform:translateY(100%);
  transition:.5s cubic-bezier(.16,1,.3,1);z-index:0;
}
.servicio-link:hover::after{transform:translateY(0);}
.servicio-link > *{position:relative;z-index:1;}
.servicio-link:hover .sl-num,
.servicio-link:hover .sl-title,
.servicio-link:hover .sl-sub{color:#fff;}
.servicio-link:hover .sl-arrow{opacity:1;transform:translate(3px,-3px);}
.sl-num{font-size:9px;font-weight:700;text-transform:uppercase;letter-spacing:.2em;color:#ccc;transition:color .3s;}
.sl-title{font-family:var(--font-display);font-size:clamp(1.3rem,2.5vw,2rem);font-weight:400;letter-spacing:-.03em;line-height:1;margin:16px 0 8px;transition:color .3s;}
.sl-sub{font-size:.82rem;color:#888;font-weight:300;line-height:1.5;max-width:22ch;transition:color .3s;}
.sl-arrow{
  display:flex;align-items:center;gap:8px;margin-top:24px;
  font-family:var(--font-display);font-size:10px;font-weight:700;
  text-transform:uppercase;letter-spacing:.15em;color:#000;
  opacity:.3;transition:opacity .3s, transform .3s cubic-bezier(.16,1,.3,1), color .3s;
}
.sl-arrow svg{flex-shrink:0;}



/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .ficha-inner{grid-template-columns:1fr 320px;}
  .servicios-links{grid-template-columns:1fr 1fr;}
}
@media(max-width:1024px){
  .ficha-inner{grid-template-columns:1fr;}
  .ficha-sidebar{position:static;}
  .gallery-hero{grid-template-columns:1fr;}
  .gallery-main{grid-row:auto;}
  .gallery-thumb:last-child{display:none;}
  .menu-overlay{grid-template-columns:1fr;}
  .menu-right{display:none;}
}
@media(max-width:768px){
  .ficha-specs{grid-template-columns:repeat(2,1fr);}
  .ficha-detalles-grid{grid-template-columns:1fr;}
  .ficha-detalle-row:nth-child(odd){padding-right:0;border-right:none;}
  .ficha-detalle-row:nth-child(even){padding-left:0;}
  .servicios-strip-head{flex-direction:column;}
  .servicios-strip-sub{text-align:left;max-width:none;}
  .servicios-links{grid-template-columns:1fr;}
  .share-lb-head{grid-template-columns:1fr;}
  .share-lb-img{aspect-ratio:16/7;}
  .share-lb-fields{grid-template-columns:1fr;}
  .ficha-head{flex-direction:column;gap:16px;}
  .ficha-precio-wrap{text-align:left;}
}



.paddings-mercado {
   padding-top:clamp(10px,14vw,0px); 
   padding-bottom:clamp(60px,14vw,80px);
}





/* ═══════════════════════════════════════════════════
   ESTILOS ESPECIFICOS DE CONTACTO
   Para mover a main.css cuando proceda.
   Prefijo: .ct-   (ninguna clase duplica main.css)
═══════════════════════════════════════════════════ */

/* HERO — columna derecha con enlaces directos grandes */
.ct-hero-tagline {
  font-size: clamp(.95rem,1.5vw,1.1rem);
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  max-width: 44ch;
  margin-bottom: 0;
}
.ct-hero-right-body {
  font-size: clamp(1rem,1.5vw,1.1rem);
  color: #555;
  line-height: 1.8;
  font-weight: 300;
  max-width: 44ch;
  margin-bottom: 32px;
}
.ct-hero-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-hero-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.1rem,2vw,1.5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  transition: opacity .3s;
}
.ct-hero-link:hover { opacity: .55; }
.ct-hero-link svg { opacity: .4; flex-shrink: 0; }
.ct-hero-link.whatsapp { color: var(--accent); }
.ct-hero-link.whatsapp svg { opacity: .7; }

/* CHANNEL CARDS */
.ct-channels-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 50px;
}
.ct-channel {
  padding: 40px 36px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: .35s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.ct-channel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateY(100%);
  transition: .5s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}
.ct-channel:hover::after { transform: translateY(0); }
.ct-channel > * { position: relative; z-index: 1; }
.ct-channel:hover .ct-ch-title,
.ct-channel:hover .ct-ch-value,
.ct-channel:hover .ct-ch-desc { color: #fff; }
.ct-channel:hover .ct-ch-label { color: #555; }
.ct-channel:hover .ct-ch-icon { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); }
.ct-channel:hover .ct-ch-icon svg { stroke: #fff; }
.ct-channel:hover .ct-ch-cta { color: #fff; }
.ct-channel:hover .ct-ch-cta svg { transform: translate(3px,-3px); }

.ct-ch-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.ct-ch-icon svg { transition: stroke .3s; }
.ct-ch-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; transition: color .3s; }
.ct-ch-title { font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.6rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; color: #000; transition: color .3s; }
.ct-ch-value { font-size: .9rem; color: #333; font-weight: 400; transition: color .3s; }
.ct-ch-desc { font-size: .8rem; color: #999; line-height: 1.55; transition: color .3s; margin-top: 4px; }
.ct-ch-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: #000; transition: color .3s; }
.ct-ch-cta svg { flex-shrink: 0; transition: transform .3s; }




#confirm_send {
    display: block;
    width: 100%;
    padding: 20px 0;
    color: #000;
    font-size: 12px;
    transition: opacity 1s ease;
}
#confirm_send_lateral {
    display: block;
    width: 100%;
    padding: 20px 0;
    color: #000;
    font-size: 12px;
    transition: opacity 1s ease;
}

.warning{
  background-color: rgb(247, 236, 236) !important;
}
.warning_lateral {
  background-color: rgb(247, 236, 236) !important;
}


/* FORM SECTION — izquierda info + derecha formulario */
.ct-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

.ct-form-left-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3.5vw,3rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.ct-form-left-body {
  font-size: .95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 40ch;
}
.ct-details { display: flex; flex-direction: column; gap: 20px; }
.ct-detail { display: flex; align-items: flex-start; gap: 14px; }
.ct-detail-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.ct-detail-icon svg { opacity: .5; }
.ct-detail-label { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #aaa; margin-bottom: 3px; }
.ct-detail-value { font-family: var(--font-display); font-size: clamp(.95rem,1.5vw,1.1rem); font-weight: 400; letter-spacing: -.02em; color: #000; text-decoration: none; transition: opacity .3s; display: block; }
a.ct-detail-value:hover { opacity: .6; }
.ct-detail-sub { font-size: .78rem; color: #aaa; margin-top: 2px; }

/* TOPIC SELECTOR */
.ct-topic-label { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #aaa; margin-bottom: 16px; display: block; }
.ct-topics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 32px; }
.ct-topic-btn {
  padding: 12px 16px;
  border: 1px solid #e8e8e8;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: .82rem;
  color: #555;
  text-align: left;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
}
.ct-topic-btn:hover { border-color: #bbb; color: #000; }
.ct-topic-btn.active { border-color: #000; background: #000; color: #fff; }
.ct-topic-btn.active .ct-topic-icon { opacity: 1; }
.ct-topic-icon { width: 14px; height: 14px; flex-shrink: 0; opacity: .3; transition: opacity .25s; }
.ct-topic-btn.active .ct-topic-icon path,
.ct-topic-btn.active .ct-topic-icon line,
.ct-topic-btn.active .ct-topic-icon polyline,
.ct-topic-btn.active .ct-topic-icon circle,
.ct-topic-btn.active .ct-topic-icon rect { stroke: #fff; }

/* FORM FIELDS — reutiliza .form-field de main.css */
.ct-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4vw; }
.ct-field-full { grid-column: 1/-1; }
.ct-form-note { font-size: .75rem; color: #bbb; margin-top: 14px; }

/* MAP SECTION */
.ct-map-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6vw;
  align-items: start;
}
.ct-map-info-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 16px; display: block; }
.ct-map-info-title { font-family: var(--font-display); font-size: clamp(1.2rem,2.2vw,1.8rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 20px; color: #000; }
.ct-map-address { display: flex; flex-direction: column; gap: 5px; margin-bottom: 28px; }
.ct-map-address-line { font-size: .9rem; color: #555; line-height: 1.5; }
.ct-map-hours { border-top: 1px solid var(--border); padding-top: 20px; }
.ct-map-hours-title { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #aaa; margin-bottom: 12px; }
.ct-map-hours-row { display: flex; justify-content: space-between; font-size: .83rem; color: #555; padding: 6px 0; border-bottom: 1px solid #e0dfdf; }
.ct-map-hours-row:last-child { border-bottom: none; }
.ct-map-note { font-size: .75rem; color: #bbb; margin-top: 16px; line-height: 1.6; }
.ct-map-container { position: relative; width: 100%; aspect-ratio: 16/7; background: #f5f5f5; overflow: hidden; }
.ct-map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(1); transition: filter .5s; }
.ct-map-container:hover iframe { filter: grayscale(.3); }
.ct-map-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #f9f9f9; border: 1px solid var(--border); flex-direction: column; gap: 12px; }
.ct-map-placeholder-icon { opacity: .2; }
.ct-map-placeholder-text { font-size: .8rem; color: #bbb; text-align: center; line-height: 1.6; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .ct-form-layout { grid-template-columns: 1fr; }
  .ct-channels-grid { grid-template-columns: 1fr 1fr; }
  .ct-map-inner { grid-template-columns: 1fr; }
  .ct-map-container { aspect-ratio: 16/9; }
}
@media(max-width:768px) {
  .ct-channels-grid { grid-template-columns: 1fr; }
  .ct-topics-grid { grid-template-columns: 1fr 1fr; }
  .ct-form-grid { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .ct-topics-grid { grid-template-columns: 1fr; }
}


/*** FIN CONTACTO ***/


/* ═══════════════════════════════════════════════════
   ESTILOS ESPECIFICOS DE VENDER-COMPRAR
   Prefijo: .vc-   No duplica nada de main.css.
   Para mover a main.css cuando proceda.
═══════════════════════════════════════════════════ */

/* HERO — fondo gris igual que las páginas de servicio */
.vc-hero {
  padding-top: calc(0px + var(--section-pad));
  padding-bottom: clamp(60px, 14vw, 140px);
  border-bottom: 1px solid var(--border);
  background-color: #f5f5f3;
}

/* INTRO GRID — 2 columnas, col derecha con el concept strip */
.vc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}

/* PROSE */
.vc-prose p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 62ch;
}
.vc-prose p:last-child { margin-bottom: 0; }

/* CONTENT SECTION DIVIDER */
.vc-section { margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--border); }
.vc-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 14px; display: block; }
.vc-section-title { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.8rem); font-weight: 400; letter-spacing: -.04em; line-height: .95; margin-bottom: 36px; color: #000; }

/* CONCEPT STRIP — bloque negro con ! decorativo */
.vc-concept {
  background: #000;
  color: #fff;
  padding: clamp(36px,5vw,52px) clamp(28px,4vw,48px);
  position: relative;
  overflow: hidden;
}
.vc-concept::after {
  content: '!';
  position: absolute;
  right: clamp(20px,4vw,48px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem,15vw,12rem);
  font-weight: 700;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -.05em;
}
.vc-concept-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.35); margin-bottom: 16px; display: block; }
.vc-concept-text { font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,2rem); font-weight: 300; letter-spacing: -.04em; line-height: 1.25; color: #fff; max-width: 60ch; }

/* PAIN CARDS — 2x2 */
.vc-pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.vc-pain-card { background: #f7f7f7; padding: 32px 28px; border-left: 2px solid transparent; transition: border-color .3s; }
.vc-pain-card:hover { border-left-color: #000; }
.vc-pain-num { font-family: var(--font-display); font-size: 10px; color: #ccc; letter-spacing: .15em; margin-bottom: 12px; display: block; }
.vc-pain-title { font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; color: #000; }
.vc-pain-card p { font-size: .85rem; color: #666; line-height: 1.65; }

/* PARTIDAS — tabla de gastos en dos columnas */
.vc-partidas { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; }
.vc-partidas-col-title { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 20px; display: block; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.vc-partida-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: start; padding: 14px 0; border-bottom: 1px solid #f5f5f5; }
.vc-partida-row:last-child { border-bottom: none; }
.vc-partida-name { font-size: .88rem; color: #333; line-height: 1.4; }
.vc-partida-name small { display: block; font-size: .75rem; color: #aaa; margin-top: 2px; line-height: 1.4; }
.vc-badge { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; padding: 3px 8px; border-radius: 2px; white-space: nowrap; flex-shrink: 0; }
.vc-badge-red    { background: #fef2f2; color: #c53030; }
.vc-badge-amber  { background: #fffbeb; color: #b45309; }
.vc-badge-green  { background: #f0fdf4; color: #166534; }
.vc-badge-grey   { background: #f5f5f5; color: #666; }

/* ═══════════════════════════
   SIMULATOR
   ═══════════════════════════ */
.vc-sim-section { background: #fafafa; padding: var(--section-pad) 0; border-bottom: 1px solid var(--border); }
.vc-sim-intro { margin-bottom: clamp(40px,5vw,60px); }
.vc-sim-intro h2 { margin-bottom: 16px; }
.vc-sim-intro p { font-size: 1rem; color: #555; line-height: 1.75; max-width: 56ch; }

/* STEP TABS */
.vc-sim-nav { display: flex; gap: 0; margin-bottom: 40px; border-bottom: 1px solid var(--border); }
.vc-sim-tab {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 24px 14px 0; margin-right: 24px;
  border-bottom: 2px solid transparent;
  cursor: pointer; transition: border-color .25s;
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: #bbb; background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: var(--font-main);
}
.vc-sim-tab.active { color: #000; border-bottom-color: #000; }
.vc-sim-tab.done  { color: #aaa; border-bottom-color: #e0e0e0; }
.vc-sim-tab-num {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-family: var(--font-display); flex-shrink: 0;
}
.vc-sim-tab.done .vc-sim-tab-num { background: #000; border-color: #000; color: #fff; }

/* STEP PANELS */
.vc-panel { display: none; }
.vc-panel.active { display: block; }

/* FIELD GROUPS */
.vc-field-group { margin-bottom: 28px; }
.vc-field-group-title { font-family: var(--font-display); font-size: clamp(1rem,1.8vw,1.35rem); font-weight: 400; letter-spacing: -.03em; margin-bottom: 16px; color: #000; }
.vc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 3vw; }

/* FIELDS */
.vc-field { background: #fff; border: 1px solid var(--border); transition: border-color .3s; }
.vc-field:focus-within { border-color: #000; }
.vc-field-wrap { display: flex; flex-direction: column; padding: 14px 18px 10px; }
.vc-field label { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; color: #999; margin-bottom: 6px; transition: color .3s; display: flex; align-items: center; gap: 6px; }
.vc-field:focus-within label { color: #000; }
.vc-field input, .vc-field select { width: 100%; border: none; outline: none; font-size: 1rem; font-family: var(--font-main); color: #111; background: transparent; padding: 0; line-height: 1.4; }
.vc-field select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.vc-field input::placeholder { color: #ccc; }
.vc-field-hint { font-size: .72rem; color: #aaa; margin-top: 6px; line-height: 1.4; padding: 0 18px 12px; }

/* TOGGLE YES/NO */
.vc-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); }
.vc-toggle-label { font-size: .88rem; color: #333; }
.vc-toggle-label small { display: block; font-size: .75rem; color: #aaa; margin-top: 2px; }
.vc-toggle { display: flex; gap: 0; }
.vc-toggle button { background: none; border: 1px solid var(--border); padding: 7px 18px; font-size: .78rem; font-weight: 700; font-family: var(--font-main); letter-spacing: .05em; cursor: pointer; transition: all .2s; }
.vc-toggle button:first-child { border-right: none; }
.vc-toggle button.active { background: #000; border-color: #000; color: #fff; }
.vc-toggle button:not(.active) { color: #bbb; }

/* NAV BUTTONS */
.vc-step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.vc-btn-back { background: none; border: 1px solid var(--border); padding: 12px 28px; font-size: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: #888; cursor: pointer; transition: all .25s; }
.vc-btn-back:hover { border-color: #000; color: #000; }
.vc-btn-next { background: #000; color: #fff; border: none; padding: 12px 36px; font-size: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; transition: opacity .25s; }
.vc-btn-next:hover { opacity: .75; }
.vc-btn-calc { background: #000; color: #fff; border: none; padding: 14px 44px; font-size: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .2em; cursor: pointer; transition: opacity .25s; }
.vc-btn-calc:hover { opacity: .75; }

/* RESULTS */
.vc-results { display: none; margin-top: 0; }
.vc-results.visible { display: block; }

.vc-verdict { padding: 32px 36px; margin-bottom: 2px; }
.vc-verdict.ok    { background: #000; color: #fff; }
.vc-verdict.tight { background: #1a1a1a; color: #fff; }
.vc-verdict.nok   { background: #1a1a1a; color: #fff; }
.vc-verdict-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.3); margin-bottom: 12px; display: block; }
.vc-verdict-icon  { font-size: 2rem; margin-bottom: 12px; display: block; }
.vc-verdict-title { font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,2rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.1; color: #fff; margin-bottom: 8px; }
.vc-verdict-sub   { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 52ch; }

.vc-breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2px; }
.vc-breakdown-col { background: #f7f7f7; padding: 28px; }
.vc-breakdown-col-title { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #aaa; margin-bottom: 18px; display: block; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.vc-result-line { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px solid #f0f0f0; gap: 12px; }
.vc-result-line:last-child { border-bottom: none; }
.vc-result-line.total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.vc-result-line-label { font-size: .82rem; color: #555; line-height: 1.3; flex: 1; }
.vc-result-line-label small { display: block; font-size: .72rem; color: #bbb; }
.vc-result-line-value { font-family: var(--font-display); font-size: .9rem; font-weight: 400; letter-spacing: -.01em; color: #000; white-space: nowrap; flex-shrink: 0; }
.vc-result-line.total .vc-result-line-label { font-weight: 700; color: #000; font-size: .88rem; }
.vc-result-line.total .vc-result-line-value { font-size: 1.1rem; }
.vc-result-line.positive .vc-result-line-value { color: #166534; }
.vc-result-line.negative .vc-result-line-value { color: #c53030; }
.vc-result-line.neutral  .vc-result-line-value { color: #aaa; }

.vc-balance { background: #000; color: #fff; padding: 28px 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.vc-balance-label { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.35); margin-bottom: 6px; }
.vc-balance-value { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.vc-balance-value.ok  { color: #fff; }
.vc-balance-value.nok { color: #f87171; }
.vc-balance-desc { font-size: .82rem; color: rgba(255,255,255,.4); max-width: 36ch; line-height: 1.5; }
.vc-disclaimer { font-size: .72rem; color: #bbb; line-height: 1.6; margin-top: 14px; padding: 0 2px; }
.vc-restart { background: none; border: 1px solid var(--border); padding: 11px 28px; font-size: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: #888; cursor: pointer; transition: all .25s; margin-top: 20px; }
.vc-restart:hover { border-color: #000; color: #000; }

/* AFTER SIM CTA */
.vc-after-cta { border-top: 1px solid var(--border); padding-top: clamp(40px,5vw,60px); margin-top: clamp(40px,5vw,60px); }
.vc-after-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.vc-after-text h2 { font-size: clamp(1.6rem,3vw,2.8rem); margin-bottom: 16px; }
.vc-after-text p { font-size: .95rem; color: #555; line-height: 1.8; max-width: 44ch; margin-bottom: 24px; }
.vc-cta-primary { display: inline-flex; align-items: center; gap: 12px; background: #000; color: #fff; text-decoration: none; padding: 14px 32px; font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; transition: opacity .3s; }
.vc-cta-primary:hover { opacity: .75; }
.vc-cta-primary svg { flex-shrink: 0; }

.vc-checklist { display: flex; flex-direction: column; }
.vc-checklist-item { display: grid; grid-template-columns: 20px 1fr; gap: 0 14px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: start; }
.vc-checklist-item:first-child { border-top: 1px solid var(--border); }
.vc-checklist-dot { width: 6px; height: 6px; border-radius: 50%; background: #000; margin-top: 6px; }
.vc-checklist-text { font-size: .85rem; color: #333; line-height: 1.5; }
.vc-checklist-text strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 2px; color: #000; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .vc-intro-grid, .vc-partidas, .vc-after-inner { grid-template-columns: 1fr; gap: 36px; }
  .vc-grid-2, .vc-breakdown { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .vc-pain-grid { grid-template-columns: 1fr; }
  .vc-balance { flex-direction: column; align-items: flex-start; }
  .vc-sim-nav { overflow-x: auto; scrollbar-width: none; }
  .vc-sim-nav::-webkit-scrollbar { display: none; }
  .vc-sim-tab { padding: 12px 16px 12px 0; margin-right: 14px; font-size: .7rem; }
}
@media(max-width:600px) {
  .vc-step-nav { flex-direction: column; gap: 12px; }
  .vc-btn-back, .vc-btn-next, .vc-btn-calc { width: 100%; text-align: center; }
}


/** FIN VENDER PARA COMPRAR ***/




/* ═══════════════════════════════════════════════════
   ESTILOS ESPECIFICOS DE VENDER-E-INVERTIR
   Prefijo: .vei-   No duplica nada de main.css.
   Para mover a main.css cuando proceda.

   Clases de main.css que se reutilizan directamente:
   .breadcrumb, .breadcrumb-inner, .breadcrumb-sep
   .page-hero-inner
   .prose
   .content-section, .content-section-label, .content-section-title
   .steps, .step, .step-num, .step-content
   .note-strip, .promise-strip
   .form-card, .form-field, .form-check, .form-submit, .form-trust, .form-trust-dot, .form-trust-text
   .reveal
   Header, menu, footer, sticky-nav, lightbox
═══════════════════════════════════════════════════ */

/* HERO — fondo gris igual que páginas de servicio */
.vei-hero {
  padding-top: calc(0px + var(--section-pad));
  padding-bottom: clamp(60px, 14vw, 140px);
  border-bottom: 1px solid var(--border);
  background-color: #f5f5f3;
}
.vei-hero-abstract {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  max-width: 48ch;
}
.vei-hero-abstract + .vei-hero-abstract { margin-top: 20px; }

/* CONTENT LAYOUT — columna principal + sidebar sticky */
.vei-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6vw;
  align-items: start;
  padding: var(--section-pad) 0;
}
.vei-sidebar { position: sticky; top: 110px; }

/* INFLATION BLOCK — negro con círculos decorativos */
.vei-inflation {
  background: #000;
  color: #fff;
  padding: clamp(32px,5vw,52px) clamp(24px,4vw,44px);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.vei-inflation::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.vei-inflation::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 20px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.03);
}
.vei-inflation-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
  display: block;
}
.vei-inflation-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem,2.2vw,1.9rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.vei-inflation-body {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  max-width: 52ch;
}

/* SIMULATOR WRAPPER */
.vei-sim {
  background: #f7f7f7;
  padding: clamp(32px,5vw,52px);
  margin: 40px 0;
}
.vei-sim-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #aaa;
  margin-bottom: 8px;
  display: block;
}
.vei-sim-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem,2vw,1.6rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #000;
}
.vei-sim-desc {
  font-size: .82rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 54ch;
}

/* INPUT ROW */
.vei-sim-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 8px;
}
.vei-sim-field {
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color .3s;
}
.vei-sim-field:focus-within { border-color: #000; }
.vei-sim-field-wrap { display: flex; flex-direction: column; padding: 14px 18px 10px; }
.vei-sim-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  color: #999;
  margin-bottom: 6px;
  transition: color .3s;
}
.vei-sim-field:focus-within label { color: #000; }
.vei-sim-field input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-family: var(--font-main);
  color: #111;
  background: transparent;
  padding: 0;
  line-height: 1.4;
}
.vei-sim-field input::placeholder { color: #ccc; }
.vei-sim-calc-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 0 32px;
  height: 56px;
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  cursor: pointer;
  transition: opacity .25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.vei-sim-calc-btn:hover { opacity: .75; }

/* BANK vs PROPERTY COMPARISON — siempre visible */
.vei-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 20px 0 0;
}
.vei-col { padding: 20px 22px; }
.vei-col.bank { background: #f0f0f0; }
.vei-col.prop { background: #000; }
.vei-col-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 8px;
  display: block;
}
.vei-col.bank .vei-col-label { color: #aaa; }
.vei-col.prop .vei-col-label { color: rgba(255,255,255,.35); }
.vei-col-title {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.vei-col.bank .vei-col-title { color: #555; }
.vei-col.prop .vei-col-title { color: rgba(255,255,255,.7); }
.vei-col-figure {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,2.5vw,1.8rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.vei-col.bank .vei-col-figure { color: #bbb; }
.vei-col.prop .vei-col-figure { color: #fff; }
.vei-col-detail { font-size: .72rem; line-height: 1.5; }
.vei-col.bank .vei-col-detail { color: #bbb; }
.vei-col.prop .vei-col-detail { color: rgba(255,255,255,.3); }

/* RESULTS GRID */
.vei-sim-results { display: none; margin-top: 20px; }
.vei-sim-results.visible { display: block; }
.vei-sim-results-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.vei-sim-results-title { font-family: var(--font-display); font-size: .88rem; font-weight: 600; letter-spacing: -.01em; color: #000; }
.vei-sim-results-capital { font-size: .78rem; color: #aaa; text-align: right; }
.vei-result-grid { display: flex; flex-direction: column; gap: 2px; }
.vei-result-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0 16px;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color .25s;
}
.vei-result-row:hover { border-color: #000; }
.vei-result-row.highlight { background: #000; border-color: #000; }
.vei-result-num { font-family: var(--font-display); font-size: 10px; color: #ccc; font-weight: 500; width: 16px; flex-shrink: 0; }
.vei-result-row.highlight .vei-result-num { color: rgba(255,255,255,.3); }
.vei-result-name { font-family: var(--font-display); font-size: clamp(.85rem,1.4vw,1rem); font-weight: 400; letter-spacing: -.02em; color: #000; margin-bottom: 2px; }
.vei-result-row.highlight .vei-result-name { color: #fff; }
.vei-result-sub { font-size: .72rem; color: #bbb; line-height: 1.4; }
.vei-result-row.highlight .vei-result-sub { color: rgba(255,255,255,.35); }
.vei-result-bar-wrap { height: 4px; background: #f0f0f0; flex: 1; border-radius: 2px; overflow: hidden; min-width: 40px; }
.vei-result-row.highlight .vei-result-bar-wrap { background: rgba(255,255,255,.1); }
.vei-result-bar { height: 100%; background: #000; border-radius: 2px; transition: width .8s cubic-bezier(.16,1,.3,1); }
.vei-result-row.highlight .vei-result-bar { background: #fff; }
.vei-result-right { text-align: right; flex-shrink: 0; }
.vei-result-yield { font-family: var(--font-display); font-size: clamp(.9rem,1.6vw,1.1rem); font-weight: 400; letter-spacing: -.02em; color: #000; white-space: nowrap; }
.vei-result-row.highlight .vei-result-yield { color: #fff; }
.vei-result-annual { font-size: .72rem; color: #bbb; margin-top: 1px; }
.vei-result-row.highlight .vei-result-annual { color: rgba(255,255,255,.4); }
.vei-sim-recalc {
  background: none;
  border: 1px solid var(--border);
  padding: 8px 20px;
  font-size: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #888;
  cursor: pointer;
  transition: all .2s;
  margin-top: 12px;
}
.vei-sim-recalc:hover { border-color: #000; color: #000; }
.vei-sim-disclaimer-after {
  font-size: .72rem;
  color: #aaa;
  margin-top: 12px;
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.vei-sim-disclaimer {
  font-size: .78rem;
  color: #aaa;
  margin-bottom: 0;
  line-height: 1.55;
  margin-top: 16px;
}
.vei-sim-disclaimer strong { color: #777; }

/* INVERTIR CTA CARD */
.vei-cta-card {
  background: #f7f7f7;
  padding: 36px 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.vei-cta-card-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 10px; display: block; }
.vei-cta-card-title { font-family: var(--font-display); font-size: clamp(1rem,1.8vw,1.4rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 8px; color: #000; }
.vei-cta-card p { font-size: .85rem; color: #666; line-height: 1.65; max-width: 46ch; }
.vei-cta-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  transition: opacity .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.vei-cta-card-btn:hover { opacity: .75; }
.vei-cta-card-btn svg { flex-shrink: 0; }

/* OTHER SERVICES — tarjetas con hover negro */
.vei-other-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  margin-top: 50px;
}
.vei-other-card {
  text-decoration: none;
  color: inherit;
  padding: 36px 30px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  transition: .4s cubic-bezier(.16,1,.3,1);
}
.vei-other-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateY(100%);
  transition: .5s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}
.vei-other-card:hover::after { transform: translateY(0); }
.vei-other-card > * { position: relative; z-index: 1; }
.vei-other-card:hover .vei-osc-title,
.vei-other-card:hover .vei-osc-sub,
.vei-other-card:hover .vei-osc-arrow { color: #fff; }
.vei-other-card:hover .vei-osc-label { color: #555; }
.vei-osc-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; transition: color .3s; }
.vei-osc-title { font-family: var(--font-display); font-size: clamp(1.2rem,2.2vw,1.8rem); font-weight: 400; letter-spacing: -.03em; line-height: 1; margin: 14px 0 6px; transition: color .3s; }
.vei-osc-sub { font-size: .82rem; color: #777; font-weight: 300; transition: color .3s; max-width: 26ch; }
.vei-osc-arrow { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-family: var(--font-display); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: #000; transition: color .3s; }
.vei-osc-arrow svg { flex-shrink: 0; transition: transform .3s; }
.vei-other-card:hover .vei-osc-arrow svg { transform: translate(3px,-3px); }

/* STICKY SIDEBAR FORM — líneas inferiores, sin borde de caja */
.vei-sf-wrap { background: #f9f9f9; border: 1px solid var(--border); padding: 36px 32px; }
.vei-sf-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 16px; display: block; }
.vei-sf-title { font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.45rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 28px; color: #000; }
.vei-sf-field { border-bottom: 1px solid #e0e0e0; transition: border-color .3s; }
.vei-sf-field:focus-within { border-bottom-color: #000; }
.vei-sf-field-wrap { display: flex; flex-direction: column; padding: 12px 0 3px; }
.vei-sf-field label { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; color: #ccc; margin-bottom: 4px; transition: color .3s; }
.vei-sf-field:focus-within label { color: #000; }
.vei-sf-field input,
.vei-sf-field textarea,
.vei-sf-field select { width: 100%; border: none; outline: none; font-size: .9rem; font-family: var(--font-main); color: #111; background: transparent; padding: 0 0 8px; }
.vei-sf-field textarea { resize: none; min-height: 60px; }
.vei-sf-field select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.vei-sf-field input::placeholder,
.vei-sf-field textarea::placeholder { color: #ccc; }
.vei-sf-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; margin-bottom: 22px; }
.vei-sf-check input[type=checkbox] { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; accent-color: #000; cursor: pointer; }
.vei-sf-check label { font-size: .75rem; color: #aaa; line-height: 1.5; cursor: pointer; }
.vei-sf-check a { color: #666; text-decoration: underline; }
.vei-sf-submit { width: 100%; background: #000; color: #fff; border: none; padding: 14px 0; font-size: 10px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .2em; font-weight: 700; cursor: pointer; transition: opacity .3s; }
.vei-sf-submit:hover { opacity: .75; }
.vei-sf-note { text-align: center; margin-top: 14px; font-size: .75rem; color: #bbb; line-height: 1.5; }

/* ─── RESPONSIVE ─── */
@media(max-width:1200px) { .vei-layout { grid-template-columns: 1fr 320px; } }
@media(max-width:1024px) {
  .vei-layout { grid-template-columns: 1fr; }
  .vei-sidebar { position: static; width: 100%; max-width: 560px; }
  .vei-cta-card { grid-template-columns: 1fr; }
  .vei-sim-input-row { grid-template-columns: 1fr; }
  .vei-sim-calc-btn { height: 48px; width: 100%; }
  .vei-compare { grid-template-columns: 1fr; }
  .vei-other-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .vei-other-grid { grid-template-columns: 1fr; }
  .vei-compare { grid-template-columns: 1fr; }
  .vei-result-row { grid-template-columns: auto 1fr auto; }
  .vei-result-bar-wrap { display: none; }
}


/*** FIN VENDER E INVERTIR **/





/* ═══════════════════════════════════════════════════
   ESTILOS ESPECIFICOS DE SOLO-VENDER
   Prefijo: .sv-   No duplica nada de main.css.
   Para mover a main.css cuando proceda.

   Reutiliza de main.css sin tocar:
   .breadcrumb, .page-hero-inner
   .prose, .content-section, .content-section-label, .content-section-title
   .note-strip, .promise-strip
   .reveal — header, menu, footer, sticky-nav, lightbox
═══════════════════════════════════════════════════ */

/* HERO */
.sv-hero {
  padding-top: calc(0px + var(--section-pad));
  padding-bottom: clamp(60px, 14vw, 140px);
  border-bottom: 1px solid var(--border);
  background-color: #f5f5f3;
}
.sv-hero-abstract {
  font-size: clamp(1rem,1.6vw,1.2rem);
  color: #555;
  line-height: 1.75;
  font-weight: 300;
  max-width: 48ch;
}
.sv-hero-abstract + .sv-hero-abstract { margin-top: 20px; }

/* CONTENT LAYOUT — columna principal + sidebar sticky */
.sv-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6vw;
  align-items: start;
  padding: var(--section-pad) 0;
}
.sv-sidebar { position: sticky; top: 110px; }

/* CHECKLIST GRID — 6 tarjetas de lo que descuenta */
.sv-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 36px 0;
}
.sv-check-card {
  background: #f7f7f7;
  padding: 28px 26px;
  border-left: 2px solid transparent;
  transition: border-color .3s;
}
.sv-check-card:hover { border-left-color: #000; }
.sv-check-card-num { font-family: var(--font-display); font-size: 10px; color: #ccc; letter-spacing: .15em; margin-bottom: 10px; display: block; }
.sv-check-card-title { font-family: var(--font-display); font-size: .92rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: 6px; color: #000; }
.sv-check-card p { font-size: .82rem; color: #666; line-height: 1.6; }
.sv-badge { display: inline-block; margin-top: 8px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; padding: 3px 8px; }
.sv-badge-red   { background: #fef2f2; color: #c53030; }
.sv-badge-amber { background: #fffbeb; color: #b45309; }
.sv-badge-grey  { background: #f5f5f5; color: #666; }

/* DARK STRIP — bloque negro con símbolo € decorativo */
.sv-dark {
  background: #000;
  color: #fff;
  padding: clamp(32px,5vw,52px) clamp(24px,4vw,44px);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.sv-dark::after {
  content: '\20AC';
  position: absolute;
  right: clamp(20px,4vw,48px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem,15vw,12rem);
  font-weight: 700;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.sv-dark-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.3); margin-bottom: 14px; display: block; }
.sv-dark-text { font-family: var(--font-display); font-size: clamp(1.1rem,2.2vw,1.8rem); font-weight: 300; letter-spacing: -.04em; line-height: 1.25; color: #fff; max-width: 58ch; }

/* ═══════════════
   SIMULATOR
═══════════════ */
.sv-sim {
  background: #f7f7f7;
  padding: clamp(32px,5vw,52px);
  margin: 40px 0;
}
.sv-sim-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 8px; display: block; }
.sv-sim-title { font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.55rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 6px; color: #000; }
.sv-sim-desc { font-size: .82rem; color: #777; line-height: 1.6; margin-bottom: 28px; max-width: 58ch; }

/* STEP TABS */
.sv-steps-nav {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.sv-steps-nav::-webkit-scrollbar { display: none; }
.sv-step-tab {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 20px 12px 0; margin-right: 20px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: #bbb; background: none;
  border-top: none; border-left: none; border-right: none;
  font-family: var(--font-main);
  white-space: nowrap; flex-shrink: 0;
  transition: color .2s, border-color .2s;
}
.sv-step-tab.active { color: #000; border-bottom-color: #000; }
.sv-step-tab.done  { color: #888; border-bottom-color: #e0e0e0; }
.sv-step-num {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-family: var(--font-display); flex-shrink: 0;
}
.sv-step-tab.done .sv-step-num { background: #000; border-color: #000; color: #fff; }

/* PANELS */
.sv-panel { display: none; }
.sv-panel.active { display: block; }

/* FIELDS */
.sv-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 4vw; }
.sv-field { background: #fff; border: 1px solid var(--border); transition: border-color .3s; }
.sv-field:focus-within { border-color: #000; }
.sv-field-wrap { display: flex; flex-direction: column; padding: 14px 18px 10px; }
.sv-field label { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; color: #999; margin-bottom: 6px; transition: color .3s; }
.sv-field:focus-within label { color: #000; }
.sv-field input, .sv-field select { width: 100%; border: none; outline: none; font-size: 1rem; font-family: var(--font-main); color: #111; background: transparent; padding: 0; line-height: 1.4; }
.sv-field select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.sv-field input::placeholder { color: #ccc; }
.sv-field-hint { font-size: .72rem; color: #aaa; margin-top: 6px; line-height: 1.4; padding: 0 18px 10px; }

/* TOGGLE YES/NO */
.sv-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); gap: 16px; }
.sv-toggle-label { font-size: .85rem; color: #333; line-height: 1.3; }
.sv-toggle-label small { display: block; font-size: .72rem; color: #aaa; margin-top: 2px; }
.sv-toggle { display: flex; gap: 0; flex-shrink: 0; }
.sv-toggle button { background: none; border: 1px solid var(--border); padding: 6px 16px; font-size: .75rem; font-weight: 700; font-family: var(--font-main); letter-spacing: .05em; cursor: pointer; transition: all .2s; }
.sv-toggle button:first-child { border-right: none; }
.sv-toggle button.active { background: #000; border-color: #000; color: #fff; }
.sv-toggle button:not(.active) { color: #bbb; }

/* NAV BUTTONS */
.sv-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.sv-btn-back { background: none; border: 1px solid var(--border); padding: 11px 24px; font-size: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: #888; cursor: pointer; transition: all .2s; }
.sv-btn-back:hover { border-color: #000; color: #000; }
.sv-btn-next { background: #000; color: #fff; border: none; padding: 11px 32px; font-size: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .15em; cursor: pointer; transition: opacity .2s; }
.sv-btn-next:hover { opacity: .75; }
.sv-btn-calc { background: #000; color: #fff; border: none; padding: 13px 40px; font-size: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; transition: opacity .2s; }
.sv-btn-calc:hover { opacity: .75; }

/* RESULTS */
.sv-results { display: none; margin-top: 20px; }
.sv-results.visible { display: block; }

.sv-verdict { padding: 28px 32px; margin-bottom: 2px; }
.sv-verdict.ok      { background: #000; }
.sv-verdict.neutral { background: #1a1a1a; }
.sv-verdict-eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.3); margin-bottom: 10px; display: block; }
.sv-verdict-title   { font-family: var(--font-display); font-size: clamp(1.2rem,2.2vw,1.8rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.1; color: #fff; margin-bottom: 6px; }
.sv-verdict-sub     { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 54ch; }

.sv-result-col { background: #f7f7f7; padding: 26px 28px; margin-bottom: 2px; }
.sv-result-col-title { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #aaa; margin-bottom: 16px; display: block; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sv-result-line { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px solid #f0f0f0; gap: 12px; }
.sv-result-line:last-child { border-bottom: none; }
.sv-result-line.subtotal { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.sv-result-line-label { font-size: .82rem; color: #555; line-height: 1.3; flex: 1; }
.sv-result-line-label small { display: block; font-size: .72rem; color: #bbb; margin-top: 1px; }
.sv-result-line-value { font-family: var(--font-display); font-size: .88rem; font-weight: 400; letter-spacing: -.01em; color: #000; white-space: nowrap; flex-shrink: 0; }
.sv-result-line.subtotal .sv-result-line-label { font-weight: 700; color: #000; }
.sv-result-line.subtotal .sv-result-line-value { font-size: 1rem; }
.sv-result-line.neg   .sv-result-line-value { color: #c53030; }
.sv-result-line.pos   .sv-result-line-value { color: #166534; }
.sv-result-line.muted .sv-result-line-value { color: #aaa; }

.sv-result-net {
  background: #000; color: #fff;
  padding: 24px 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  margin-bottom: 2px;
}
.sv-result-net-eyebrow { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.sv-result-net-value   { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 400; letter-spacing: -.05em; line-height: 1; color: #fff; }
.sv-result-net-desc    { font-size: .8rem; color: rgba(255,255,255,.35); max-width: 28ch; text-align: right; line-height: 1.5; }

.sv-disclaimer { font-size: .7rem; color: #bbb; line-height: 1.55; margin-top: 10px; }
.sv-restart { background: none; border: 1px solid var(--border); padding: 8px 20px; font-size: 9px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: #888; cursor: pointer; transition: all .2s; margin-top: 14px; }
.sv-restart:hover { border-color: #000; color: #000; }

/* NEXT STEPS — 4 tarjetas con hover negro */
.sv-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 40px 0;
}
.sv-next-card {
  padding: 32px 28px;
  background: #f7f7f7;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: .4s cubic-bezier(.16,1,.3,1);
}
.sv-next-card::after {
  content: '';
  position: absolute; inset: 0;
  background: #000;
  transform: translateY(100%);
  transition: .5s cubic-bezier(.16,1,.3,1);
  z-index: 0;
}
.sv-next-card:hover::after { transform: translateY(0); }
.sv-next-card > * { position: relative; z-index: 1; }
.sv-next-card:hover .sv-ns-title,
.sv-next-card:hover .sv-ns-desc,
.sv-next-card:hover .sv-ns-cta { color: #fff; }
.sv-next-card:hover .sv-ns-label { color: #555; }
.sv-ns-label { font-size: 9px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; transition: color .3s; }
.sv-ns-title { font-family: var(--font-display); font-size: clamp(1rem,1.8vw,1.35rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; color: #000; transition: color .3s; }
.sv-ns-desc  { font-size: .82rem; color: #777; line-height: 1.6; transition: color .3s; }
.sv-ns-cta   { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: #000; margin-top: auto; transition: color .3s; }
.sv-ns-cta svg { flex-shrink: 0; transition: transform .3s; }
.sv-next-card:hover .sv-ns-cta svg { transform: translate(3px,-3px); }

/* SIDEBAR FORM — líneas inferiores */
.sv-sf-wrap { background: #f9f9f9; border: 1px solid var(--border); padding: 36px 32px; }
.sv-sf-label { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #aaa; margin-bottom: 16px; display: block; }
.sv-sf-title { font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.45rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 28px; color: #000; }
.sv-sf-field { border-bottom: 1px solid #e0e0e0; transition: border-color .3s; }
.sv-sf-field:focus-within { border-bottom-color: #000; }
.sv-sf-field-wrap { display: flex; flex-direction: column; padding: 12px 0 3px; }
.sv-sf-field label { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; color: #ccc; margin-bottom: 4px; transition: color .3s; }
.sv-sf-field:focus-within label { color: #000; }
.sv-sf-field input,
.sv-sf-field textarea,
.sv-sf-field select { width: 100%; border: none; outline: none; font-size: .9rem; font-family: var(--font-main); color: #111; background: transparent; padding: 0 0 8px; }
.sv-sf-field textarea { resize: none; min-height: 60px; }
.sv-sf-field select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.sv-sf-field input::placeholder,
.sv-sf-field textarea::placeholder { color: #ccc; }
.sv-sf-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; margin-bottom: 22px; }
.sv-sf-check input[type=checkbox] { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; accent-color: #000; cursor: pointer; }
.sv-sf-check label { font-size: .75rem; color: #aaa; line-height: 1.5; cursor: pointer; }
.sv-sf-check a { color: #666; text-decoration: underline; }
.sv-sf-submit { width: 100%; background: #000; color: #fff; border: none; padding: 14px 0; font-size: 10px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .2em; font-weight: 700; cursor: pointer; transition: opacity .3s; }
.sv-sf-submit:hover { opacity: .75; }
.sv-sf-note { text-align: center; margin-top: 14px; font-size: .75rem; color: #bbb; line-height: 1.5; }

/* ─── RESPONSIVE ─── */
@media(max-width:1200px) { .sv-layout { grid-template-columns: 1fr 320px; } }
@media(max-width:1024px) {
  .sv-layout { grid-template-columns: 1fr; }
  .sv-sidebar { position: static; width: 100%; max-width: 560px; }
  .sv-grid-2 { grid-template-columns: 1fr; }
  .sv-checklist-grid { grid-template-columns: 1fr 1fr; }
  .sv-next-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .sv-checklist-grid { grid-template-columns: 1fr; }
  .sv-result-net { flex-direction: column; align-items: flex-start; }
  .sv-result-net-desc { text-align: left; }
}
@media(max-width:600px) {
  .sv-nav { flex-direction: column; gap: 10px; }
  .sv-btn-back, .sv-btn-next, .sv-btn-calc { width: 100%; text-align: center; }
}

/** FIN SOLO VENDER **/









/** FIN BLOG **/



/* ── VENDER PAGE ─────────────────────────────────────── */

/* ── PAGE HERO ── */
.page-hero {
  padding-top: calc(90px + clamp(60px, 10vw, 80px));
  padding-bottom: clamp(60px, 8vw, 80px);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: end;
  margin-top: 0px;
}
.page-hero-right .lead {
  max-width: 48ch;
  color: #333;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .15em; color: #bbb;
  margin-bottom: 20px;
  margin-top: 20px;
}
.breadcrumb a { color: #bbb; text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: #000; }

/* ── LAYOUT PRINCIPAL ── */
.page-layout-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6vw;
  align-items: start;
}

/* ── MODALITY CARDS ── */
.modalities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 50px 0;
}
.modality-card {
  background: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modality-card.featured { background: #000; color: #fff; }

.modality-tag {
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 700; color: #888;
  display: flex; align-items: center; justify-content: space-between;
}
.modality-card.featured .modality-tag { color: #555; }

.modality-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 400; letter-spacing: -0.05em; line-height: 1;
  color: #000;
}
.modality-price sup { font-size: .35em; vertical-align: super; opacity: .6; letter-spacing: 0; }
.modality-card.featured .modality-price { color: #fff; }

.modality-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400; letter-spacing: -0.03em; line-height: 1.1;
  color: #000;
}
.modality-card.featured .modality-title { color: #fff; }

.modality-desc {
  font-size: .9rem; line-height: 1.7;
  color: #555; font-weight: 300;
}
.modality-card.featured .modality-desc { color: #888; }

.modality-includes {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}
.modality-card.featured .modality-includes { border-top-color: #1a1a1a; }

.modality-include {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .82rem; color: #444; line-height: 1.5;
}
.modality-card.featured .modality-include { color: #777; }

.modality-include-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #000; flex-shrink: 0; margin-top: 6px;
}
.modality-card.featured .modality-include-dot { background: #555; }

/* ── FISCAL NOTE ── */
.fiscal-note {
  background: #f5f5f3;
  border: 1px solid var(--border);
  padding: 32px 36px;
  margin-top: 50px;
}
.fiscal-note-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em;
  color: #888; margin-bottom: 14px; display: block;
}
.fiscal-note-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.4;
    font-weight: 500;
}

/* ── PROCESO ── */
.process-section { margin-top: 60px; }
.process-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .2em;
  color: #888; margin-bottom: 24px; display: block;
}
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
.process-num {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; color: #ccc;
  padding-top: 3px;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  font-weight: 400; letter-spacing: -.02em;
  margin-bottom: 8px; color: #000;
}
.process-step-text {
  font-size: .88rem; color: #555;
  line-height: 1.7; font-weight: 300;
}

/* ── FAQ ── */


/* FAQ */
.faq { margin: 40px 0; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 20px; }
.faq-q-text { font-family: var(--font-display); font-size: clamp(.95rem, 1.5vw, 1.1rem); font-weight: 400; letter-spacing: -.02em; color: #000; }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform .3s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: #000; border-radius: 2px; transition: opacity .3s; }
.faq-icon::before { width: 14px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a { display: none; padding-bottom: 22px; font-size: .9rem; color: #444; line-height: 1.8; max-width: 60ch; }
.faq-item.open .faq-a { display: block; }



.faq-section { margin-top: 60px; }
.faq-item {
  border-top: 1px solid var(--border);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-header {
  display: flex; justify-content: space-between;
  align-items: center; gap: 20px;
  padding: 22px 0;
}
.faq-question {
  font-family: var(--font-display);
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  font-weight: 400; letter-spacing: -.02em;
}
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: #000; stroke-width: 1.2; fill: none;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: .88rem; color: #555;
  line-height: 1.75; font-weight: 300;
  max-width: 62ch; padding-bottom: 22px;
}

/* ── FORMULARIO STICKY ── */
.form-sticky-wrap { position: sticky; top: 110px; margin-top: -120px;}
.form-card {
  border: 1px solid var(--border);
  padding: 36px;
  padding-bottom: 0px;
  background: #fff;
}
.form-card-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .2em;
  color: #888; margin-bottom: 20px; display: block;
}
.form-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400; letter-spacing: -.04em;
  line-height: 1.1; margin-bottom: 8px; color: #000;
}
.form-card-sub {
  font-size: .82rem; color: #888; line-height: 1.6;
  margin-bottom: 28px; font-weight: 300;
}
.form-field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .15em;
  color: #aaa; font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: none; border-bottom: 1px solid #d0d0d0;
  padding: 10px 0;
  font-family: var(--font-main);
  font-size: .9rem; color: #000;
  background: transparent; outline: none;
  transition: border-color .3s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: #000; }
.form-field textarea { resize: none; height: 72px; line-height: 1.6; }
.form-field select { cursor: pointer; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #ccc; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 20px 0 24px;
}
.form-check input { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; accent-color: #000; cursor: pointer; }
.form-check label { font-size: .75rem; color: #aaa; line-height: 1.5; cursor: pointer; }
.form-check a { color: #777; text-decoration: underline; }
.form-submit {
  background: #000; color: #fff; border: none;
  padding: 15px 0; width: 100%;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  cursor: pointer; transition: opacity .3s;
}
.form-submit:hover { opacity: .7; }
.form-trust { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.form-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: #25D366; flex-shrink: 0; }
.form-trust-text { font-size: .72rem; color: #aaa; line-height: 1.4; }

/* ── TRUST SIGNALS ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}
.trust-item {
  padding: 40px 4vw 40px 0;
  border-top: 1px solid var(--border);
}
.trust-item:nth-child(n+2) {
  padding-left: 4vw; padding-right: 0;
  border-left: 1px solid var(--border);
}
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400; letter-spacing: -0.05em;
  line-height: 1; margin-bottom: 12px; color: #000;
}
.trust-item-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .15em;
  color: #888; margin-bottom: 10px; display: block;
}
.trust-item-text {
  font-size: .85rem; color: #555; line-height: 1.65; font-weight: 300;
}

/* ── CTA STRIP FINAL ── */
.cta-strip {
  background: #000;
}
.cta-strip-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 4vw;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  margin-bottom: 0; max-width: 18ch;
}
.cta-strip-right {
  display: flex; flex-direction: column;
  gap: 16px; align-items: flex-end; flex-shrink: 0;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; background: #fff; color: #000;
  padding: 16px 32px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  transition: opacity .3s;
}
.cta-btn:hover { opacity: .8; }
.cta-btn-ghost {
  background: transparent; color: #555;
  border: 1px solid #2a2a2a;
}
.cta-btn-ghost:hover { color: #fff; border-color: #555; opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .page-layout-inner { grid-template-columns: 1fr 320px; }
}
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .page-layout-inner { grid-template-columns: 1fr; }
  .form-sticky-wrap { position: static; max-width: 560px; }
  .form-sticky-wrap { width:100%; max-width:100%; margin-top: 40px;}
}
@media (max-width: 768px) {
  .modalities { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item:nth-child(n+2) { padding-left: 0; border-left: none; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-strip-right { align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}


