/* =========================
   styles.css — SUPER PREMIUM LIGHT (no oscuro)
   Naranja Immotècnics + diseño boutique + Trini protagonista
========================= */

:root{
  --bg:#fbfaf7;
  --bg2:#f2efe8;

  --surface:#ffffff;
  --surface2:#fffefb;

  --text:#1f2430;
  --muted:#5f687a;

  --line:rgba(31,36,48,.10);

  --accent:#ff6a00;
  --accent2:#ffb26b;

  --aSoft: rgba(255,106,0,.10);
  --aLine: rgba(255,106,0,.22);

  --shadow: 0 18px 60px rgba(31,36,48,.10);
  --shadow2: 0 10px 26px rgba(31,36,48,.08);

  --radius:22px;
  --radius2:16px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(255,106,0,.10), transparent 58%),
    radial-gradient(900px 520px at 88% 14%, rgba(255,178,107,.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background: radial-gradient(rgba(31,36,48,.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity:.22;
  mix-blend-mode:multiply;
}

a{color:inherit; text-decoration:none}
img{display:block; max-width:100%}
.wrap{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:12px; z-index:9999;
  box-shadow:var(--shadow2);
}

/* TOPBAR */
.topbar{
  border-bottom:1px solid rgba(31,36,48,.06);
  background: rgba(251,250,247,.75);
  backdrop-filter: blur(12px);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  font-size:12.5px;
  color:var(--muted);
}
.topbar-left{display:flex; align-items:center; gap:10px}
.dot{
  width:7px; height:7px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(255,106,0,.10);
}
.topbar-right{display:flex; align-items:center; gap:10px}
.sep{opacity:.45}
.toplink{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(31,36,48,.06);
  background: rgba(255,255,255,.55);
}
.toplink:hover{background: rgba(255,255,255,.75)}
.ico{width:16px; height:16px; display:inline-grid; place-items:center}
.ico svg{width:16px; height:16px}

/* NAV */
.nav{
  position:sticky; top:0; z-index:1000;
  background: rgba(251,250,247,.86);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(31,36,48,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand img{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(31,36,48,.10);
  background:var(--surface);
}
.brand-txt{display:flex; flex-direction:column; line-height:1.05}
.brand-txt strong{font-weight:1000; letter-spacing:.1px}
.brand-txt span{font-size:12px; color:var(--muted); font-weight:800}

.nav-links{display:flex; align-items:center; gap:10px}
.nav-links a{
  padding:9px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  color:var(--muted);
  border:1px solid transparent;
  transition: .15s ease;
}
.nav-links a:hover{
  color:var(--text);
  background: rgba(31,36,48,.04);
  border-color: rgba(31,36,48,.06);
}
.nav-links a.active{
  color:var(--text);
  background: var(--aSoft);
  border-color: var(--aLine);
}

.nav-cta{display:flex; gap:10px; align-items:center}

.menu-btn{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(31,36,48,.10);
  background:var(--surface);
  box-shadow:var(--shadow2);
  cursor:pointer;
}
.menu-btn svg{width:18px; height:18px}

.mobile{
  display:none;
  padding:10px 0 16px;
  border-top:1px solid rgba(31,36,48,.08);
}
.mobile a{
  display:block;
  padding:12px 0;
  font-weight:900;
  color:var(--muted);
}
.mobile a.active{color:var(--text)}
.mobile.open{display:block}
.mobile-cta{display:flex; gap:10px; padding-top:10px; flex-wrap:wrap}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(31,36,48,.12);
  background: var(--surface);
  font-weight:1000;
  color:var(--text);
  box-shadow: var(--shadow2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(31,36,48,.12)}
.btn.primary{
  background: linear-gradient(135deg, rgba(255,106,0,.98), rgba(255,178,107,.78));
  border-color: rgba(255,106,0,.25);
  color:#1a120b;
  box-shadow: 0 18px 40px rgba(255,106,0,.18);
}
.btn.ghost{background: rgba(255,255,255,.65)}

/* TYPO */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:1000; font-size:12px; letter-spacing:.25px;
}
.eyebrow::before{
  content:"";
  width:20px; height:2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius:999px;
}

/* SECTIONS */
.section{padding:56px 0}
.section-soft{
  background: rgba(255,255,255,.55);
  border-top:1px solid rgba(31,36,48,.06);
  border-bottom:1px solid rgba(31,36,48,.06);
}
.section-head{max-width:72ch}
.section-head h2{
  margin:10px 0 10px;
  letter-spacing:-.5px;
  font-size:28px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}

/* CARDS */
.card{
  background: linear-gradient(180deg, var(--surface), var(--surface2));
  border:1px solid rgba(31,36,48,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 80px rgba(31,36,48,.14);
}
.card::after{
  content:"";
  position:absolute; inset:0;
  padding:1px;
  border-radius:inherit;
  background: linear-gradient(135deg, rgba(255,106,0,.20), rgba(255,178,107,.10), rgba(31,36,48,.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity:.85;
}
.card::before{
  content:"";
  position:absolute;
  width:560px; height:260px;
  left:-300px; top:-170px;
  background: radial-gradient(circle, rgba(255,106,0,.12), transparent 65%);
  pointer-events:none;
  opacity:.55;
}

/* HERO */
.hero{padding:40px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
.pill-row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: var(--aSoft);
  border:1px solid var(--aLine);
  font-weight:1000;
  font-size:12px;
}
.pill.soft{
  background: rgba(255,255,255,.65);
  border-color: rgba(31,36,48,.10);
  color: var(--muted);
}
.spark{
  width:10px; height:10px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 5px rgba(255,106,0,.12);
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height:1.02;
  letter-spacing:-.9px;
}
.lead{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15.6px;
  max-width:78ch;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.trust-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.trust{
  background: rgba(255,255,255,.65);
  border:1px solid rgba(31,36,48,.10);
  border-radius:18px;
  padding:14px;
  box-shadow: var(--shadow2);
}
.trust b{display:block; font-size:18px; letter-spacing:-.3px}
.trust span{display:block; margin-top:4px; color:var(--muted); font-size:13px}

/* HERO VISUAL */
.hero-visual{
  border-radius: var(--radius);
  border:1px solid rgba(31,36,48,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 430px;
  position:relative;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(255,106,0,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.94));
}
.hero-img{
  position:absolute;
  inset:0;
  background: url("assets/hero.jpg") center/cover no-repeat;
}



/* Card inside hero */
.hero-card{
  position:absolute;
  left:16px; right:16px; bottom:16px;
  background: rgba(255,255,255,.82);
 
  border:1px solid rgba(31,36,48,.12);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow2);
}
.hc-top{display:flex; justify-content:space-between; gap:12px; align-items:flex-start}
.hc-tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  font-weight:1000;
  font-size:12px;
}
.hc-title{margin-top:8px; font-weight:1000; letter-spacing:-.25px; font-size:16px}
.hc-badge{
  font-weight:1000;
  color: rgba(255,106,0,.95);
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.08);
  padding:8px 10px;
  border-radius:14px;
}
.hc-meta{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.65);
  font-weight:900;
  font-size:12px;
  color: var(--muted);
}
.hc-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

/* ================= ABOUT FIX DEFINITIVO ================= */

.about{
  display:grid;
  grid-template-columns: 420px 1fr; /* columna fija evita colapso */
  gap:60px;
  align-items:center;
}

.about-media{
  width:420px;
  aspect-ratio:3 / 4;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(31,36,48,.08);
  box-shadow:0 30px 80px rgba(31,36,48,.15);
}

.about-photo{
  position:absolute;
  inset:0;
  background-image:url("assets/trini.jpg");
  background-size:cover;
  background-position:50% 18%;
  background-repeat:no-repeat;
}

/* borde glow premium */
.about-media::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,106,0,.35), rgba(255,178,107,.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
}

.about-badge{
  position:absolute;
  left:14px; bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  font-weight:950;
  color: var(--muted);
  font-size: 13px;
}
.about-badge strong{color:var(--text)}
.about-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 5px rgba(255,106,0,.12);
}
.about-copy h2{
  margin:10px 0 10px;
  letter-spacing:-.5px;
  font-size:28px;
}
.about-copy p{
  margin:0;
  color: var(--muted);
  line-height: 1.75;
}
.about-points{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.ap{
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow2);
}
.ap b{display:block; letter-spacing:-.2px}
.ap span{display:block; margin-top:4px; color:var(--muted); font-size:13px; line-height:1.55}

/* SERVICES */
.cards3{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{padding:18px}
.service .icon{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  color: rgba(255,106,0,.95);
  box-shadow: var(--shadow2);
}
.service .icon svg{width:22px; height:22px}
.service h3{margin:14px 0 8px; font-size:16px; letter-spacing:-.2px}
.service p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}

.row{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* STEPS */
.steps{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{padding:18px}
.step-n{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:1100;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  color: rgba(255,106,0,.95);
}
.step h3{margin:14px 0 8px; font-size:15.5px; letter-spacing:-.2px}
.step p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}

/* FINAL CTA */
.final{
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.final h2{margin:10px 0 8px; letter-spacing:-.5px; font-size:26px}
.final p{margin:0; color:var(--muted); line-height:1.75}
.final-right{display:flex; gap:10px; flex-wrap:wrap}

/* FAB */
.fab{
  position:fixed;
  right:16px; bottom:16px;
  width:56px; height:56px;
  border-radius:18px;
  background: rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.28);
  backdrop-filter: blur(10px);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
}
.fab:hover{transform: translateY(-1px)}
.fab svg{width:22px; height:22px}

/* FOOTER */
.footer{
  margin-top:30px;
  border-top:1px solid rgba(31,36,48,.08);
  background: rgba(255,255,255,.40);
}
.footer-inner{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.foot-brand{display:flex; gap:10px; align-items:center}
.foot-brand img{
  width:38px; height:38px;
  border-radius:14px;
  border:1px solid rgba(31,36,48,.10);
  background: var(--surface);
}
.foot-brand b{display:block}
.foot-brand span{display:block; color:var(--muted); font-size:13px; margin-top:2px}
.foot-links{margin-top:8px; color:var(--muted); font-size:13px}
.foot-links a:hover{color:var(--text)}
.footer-right{display:flex; gap:10px; flex-wrap:wrap}
.foot-bottom{
  padding:14px 0 22px;
  color:var(--muted);
  font-size:12.5px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.muted{opacity:.85}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .trust-row{grid-template-columns: 1fr; }
  .cards3{grid-template-columns: 1fr; }
  .steps{grid-template-columns: 1fr; }
  .about{grid-template-columns: 1fr; gap:18px;}
  .about-media{max-width:520px}
}

@media (max-width: 860px){
  .topbar-right{display:none}
  .nav-links, .nav-cta{display:none}
  .menu-btn{display:inline-grid; place-items:center}
}
/* =========================
   FIXES — para que no se rompa el layout
   (pegar AL FINAL del CSS)
========================= */

/* 1) Asegura tamaños de SVG (evita estrella gigante) */
svg{display:block}
.ico svg{width:16px;height:16px}
.seal-ico, .service .icon{flex:0 0 auto}
.seal-ico svg{width:18px;height:18px}
.service .icon svg{width:22px;height:22px}

/* 2) Tu HTML usa .badge-row pero el CSS tenía .pill-row */
.badge-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* 3) Tus “sellos” (mini-proof) del hero */
.mini-proof{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.seal{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow2);
  color: var(--muted);
  font-size:13px;
}
.seal strong{color:var(--text)}
.seal-ico{
  width:18px;
  height:18px;
  display:inline-grid;
  place-items:center;
  color: rgba(255,106,0,.95);
}

/* 4) Tu HTML usa .floating-card + clases fc-*, pero tu CSS tiene hero-card/hc-* */
.floating-card{
  position:absolute;
  left:16px; right:16px; bottom:16px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border:1px solid rgba(31,36,48,.12);
  border-radius: 18px;
  padding:16px;
  box-shadow: var(--shadow2);
}
.fc-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}
.fc-tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  font-weight:1000;
  font-size:12px;
}
.fc-title{
  margin-top:8px;
  font-weight:1000;
  letter-spacing:-.25px;
  font-size:16px;
}
.fc-badge{
  font-weight:1000;
  color: rgba(255,106,0,.95);
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.08);
  padding:8px 10px;
  border-radius:14px;
}
.fc-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.fc-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
/* =========================
   STRATEGY — sección premium
========================= */
.strategy{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
  padding:22px;
  border-radius: var(--radius);
  border:1px solid rgba(31,36,48,.10);
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255,106,0,.16), transparent 60%),
    radial-gradient(900px 420px at 92% 10%, rgba(255,178,107,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.strategy .h2{
  margin:10px 0 10px;
  letter-spacing:-.6px;
  font-size:28px;
}
.strategy .p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.checklist{margin-top:16px; display:grid; gap:10px;}
.check{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.check b{display:block; letter-spacing:-.2px}
.check span{display:block; margin-top:3px; color:var(--muted); font-size:13px; line-height:1.55}
.check-ico{
  width:28px; height:28px;
  border-radius:12px;
  display:grid; place-items:center;
  font-weight:1100;
  color: rgba(255,106,0,.95);
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
}

.strategy-right{
  display:grid;
  gap:12px;
  align-content:start;
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.stat{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.stat b{display:block; letter-spacing:-.2px}
.stat span{display:block; margin-top:3px; color:var(--muted); font-size:13px}

.frame{
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(31,36,48,.10);
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.92));
  box-shadow: var(--shadow);
}

.frame-top{display:flex; gap:10px; flex-wrap:wrap}
.tag{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  font-weight:1000;
  font-size:12px;
}
.tag.soft{
  border-color: rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  color: var(--muted);
}

.frame-mid{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.mini{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.mini b{display:block; letter-spacing:-.2px}
.mini span{display:block; margin-top:3px; color:var(--muted); font-size:13px}

.frame-cta{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* responsive */
@media (max-width: 980px){
  .strategy{grid-template-columns:1fr; padding:18px;}
  .stats{grid-template-columns:1fr;}
}
/* =========================
   FIX: Strategy section (Método Immotècnics)
   Pegar AL FINAL del CSS
========================= */

.strategy{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
  padding:22px;
  border-radius: var(--radius);
  border:1px solid rgba(31,36,48,.10);
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255,106,0,.16), transparent 60%),
    radial-gradient(900px 420px at 92% 10%, rgba(255,178,107,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
  box-shadow: var(--shadow);
}

.strategy-left .h2{
  margin:10px 0 10px;
  letter-spacing:-.6px;
  font-size:28px;
}
.strategy-left .p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.checklist{margin-top:16px; display:grid; gap:10px;}
.check{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
}
.check-ico{
  width:28px;height:28px;
  border-radius:12px;
  display:grid;place-items:center;
  font-weight:1100;
  color: rgba(255,106,0,.95);
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
}
.check b{display:block; letter-spacing:-.2px}
.check span{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.strategy-right{display:grid; gap:12px; align-content:start;}
.stats{display:grid; grid-template-columns:repeat(3,1fr); gap:10px;}
.stat{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
}
.stat b{display:block; letter-spacing:-.2px}
.stat span{display:block;margin-top:3px;color:var(--muted);font-size:13px}

.frame{
  padding:16px;
  border-radius:22px;
  border:1px solid rgba(31,36,48,.10);
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.94));
  box-shadow: var(--shadow);
}

.frame-top{display:flex; gap:10px; flex-wrap:wrap}
.tag{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  font-weight:1000;
  font-size:12px;
}
.tag.soft{
  border-color: rgba(31,36,48,.10);
  background: rgba(255,255,255,.75);
  color: var(--muted);
}

.frame-mid{margin-top:12px;display:grid;gap:10px}
.mini{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
}
.mini b{display:block;letter-spacing:-.2px}
.mini span{display:block;margin-top:3px;color:var(--muted);font-size:13px}

.frame-cta{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}

@media (max-width: 980px){
  .strategy{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr;}
}
/* =========================
   FIX: Zonas (chips + card)
   Pegar AL FINAL del CSS
========================= */

.zone-box{padding:18px}
.zone-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.z{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.72);
  font-weight:950;
  font-size:12.5px;
  color: var(--muted);
  box-shadow: var(--shadow2);
  white-space:nowrap; /* clave */
}

.zone-cta{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(31,36,48,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.zone-note b{display:block}
.zone-note span{display:block;color:var(--muted);font-size:13px;margin-top:4px}
/* =========================
   FOOTER PREMIUM
========================= */

.footer{
  margin-top:60px;
  border-top:1px solid rgba(31,36,48,.08);
  background:
    radial-gradient(800px 300px at 10% 0%, rgba(255,106,0,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65));
  padding-top:40px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:40px;
}

.footer-col h4{
  margin-bottom:14px;
  font-size:14px;
  font-weight:1000;
  letter-spacing:.3px;
}

.footer-col a{
  display:block;
  margin-bottom:10px;
  color:var(--muted);
  font-size:14px;
  transition:.2s ease;
}

.footer-col a:hover{
  color:var(--text);
  transform:translateX(3px);
}

.foot-desc{
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.foot-bottom{
  margin-top:40px;
  padding:20px 0;
  border-top:1px solid rgba(31,36,48,.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:var(--muted);
}

@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap:30px;
  }
}

@media (max-width: 600px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
}/* =========================
   PÁGINAS LEGALES
========================= */
.legal{
  padding:22px;
}
.legal-body{
  margin-top:18px;
  max-width: 90ch;
}
.legal-body h3{
  margin:22px 0 10px;
  letter-spacing:-.2px;
}
.legal-body p, .legal-body li{
  color: var(--muted);
  line-height:1.75;
  font-size:15px;
}
.legal-body ul{
  margin:10px 0 0;
  padding-left:18px;
}
.legal-body li{margin:8px 0}
.legal-ph{
  opacity:.85;
  font-weight:900;
}
.legal-note{
  margin-top:26px;
  font-size:13.5px;
  opacity:.9;
}/* =========================
   SOBRE MÍ — estilos extra
   (pegar al FINAL del styles.css)
========================= */

.about-hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.about-title{
  margin:10px 0 10px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height:1.08;
  letter-spacing:-.8px;
}

.about-lead{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15.6px;
  max-width: 78ch;
}

.about-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.about-kpis{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.kpi{
  background: rgba(255,255,255,.70);
  border:1px solid rgba(31,36,48,.10);
  border-radius:18px;
  padding:14px;
  box-shadow: var(--shadow2);
}
.kpi b{display:block; letter-spacing:-.2px}
.kpi span{display:block; margin-top:4px; color:var(--muted); font-size:13px}

.about-hero-right{
  display:grid;
  gap:12px;
  align-content:start;
}

.portrait{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(31,36,48,.10);
  box-shadow: var(--shadow);
  min-height: 520px;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(255,106,0,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.94));
}
.portrait-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: 50% 18%;
  display:block;
  filter: saturate(1.03) contrast(1.03);
}
.portrait::after{
  content:"";
  position:absolute; inset:0;
  /* overlay MUY sutil para no “lavar” la foto */
  background: linear-gradient(180deg, rgba(251,250,247,.02), rgba(251,250,247,.22));
  pointer-events:none;
}

.portrait-badge{
  position:absolute;
  left:14px; bottom:14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px);
  font-weight:950;
  color: var(--muted);
  font-size: 13px;
}
.portrait-badge strong{color:var(--text)}

.mini-card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(31,36,48,.10);
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.94));
  box-shadow: var(--shadow);
}
.mini-card-top{display:flex; gap:10px; flex-wrap:wrap}
.mini-card-text{margin:12px 0 0; color:var(--muted); line-height:1.75}

.pilares{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.pillar{padding:18px}
.pillar-ico{
  width:44px; height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:1100;
  color: rgba(255,106,0,.95);
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  box-shadow: var(--shadow2);
}
.pillar h3{margin:14px 0 8px; font-size:16px; letter-spacing:-.2px}
.pillar p{margin:0; color:var(--muted); line-height:1.7; font-size:14px}

.story{
  padding:22px;
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:18px;
  align-items:start;
}
.timeline{
  display:grid;
  gap:10px;
}
.t-item{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.t-n{
  width:44px;height:44px;
  border-radius:16px;
  display:grid; place-items:center;
  font-weight:1100;
  color: rgba(255,106,0,.95);
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.80);
}
.t-body b{display:block; letter-spacing:-.2px}
.t-body span{display:block; margin-top:4px; color:var(--muted); font-size:13px; line-height:1.55}

.zone-panel{padding:18px}

/* responsive */
@media (max-width: 980px){
  .about-hero{grid-template-columns:1fr}
  .about-kpis{grid-template-columns:1fr}
  .pilares{grid-template-columns:1fr}
  .story{grid-template-columns:1fr}
  .portrait{min-height:420px}
}
/* =========================
   SOBRE MÍ — BIO (premium)
========================= */
.bio{
  padding:22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
}

.bio h2{
  margin:10px 0 10px;
  letter-spacing:-.6px;
  font-size:28px;
}
.bio p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.bio p + p{margin-top:10px;}

.bio-right{
  display:grid;
  gap:10px;
  align-content:start;
}

.bio-box{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
}
.bio-box b{display:block; letter-spacing:-.2px}
.bio-box span{display:block; margin-top:4px; color:var(--muted); font-size:13px; line-height:1.55}

@media (max-width: 980px){
  .bio{grid-template-columns:1fr;}
}
/* =========================
   CONTACTO — Premium
========================= */
.contact-hero{
  padding:22px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
}

.contact-title{
  margin:10px 0 10px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height:1.08;
  letter-spacing:-.8px;
}

.contact-lead{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15.6px;
  max-width: 78ch;
}

.contact-quick{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;}
.contact-badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;}

.contact-card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.cc-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid rgba(31,36,48,.08);
}
.cc-row:last-child{border-bottom:none}
.cc-label{color:var(--muted); font-weight:900; font-size:13px}
.cc-value{font-weight:950}
.cc-note .cc-value{color:var(--muted); font-weight:900}

.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}

.form-card{padding:20px;}
.form-head h2{margin:10px 0 6px; letter-spacing:-.5px}
.form{margin-top:14px}

.f-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.field{display:grid; gap:8px; margin-bottom:12px}
.field span{font-weight:950; font-size:13px; color:var(--muted)}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.78);
  outline:none;
  box-shadow: 0 10px 26px rgba(31,36,48,.04);
  font: inherit;
}
.field textarea{resize: vertical; min-height: 140px;}

.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(255,106,0,.32);
  box-shadow: 0 0 0 4px rgba(255,106,0,.10);
}

.checkline{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:10px 0 6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
}
.checkline input{margin-top:3px}
.checkline a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:12px;
}
.form-hint{font-size:13px}
.form-msg{margin-top:12px; font-weight:950;}

.form-msg.ok{color: rgba(16,120,70,1);}
.form-msg.err{color: rgba(180,35,35,1);}

.contact-side{padding:20px;}
.side-head h2{margin:10px 0 6px; letter-spacing:-.5px}
.side-box{
  margin-top:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
}
.side-box b{display:block; letter-spacing:-.2px}
.side-box span{display:block; margin-top:4px; color:var(--muted); font-size:13px; line-height:1.55}
.side-note{margin-top:12px; font-size:13px;}

@media (max-width: 980px){
  .contact-hero{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .f-grid{grid-template-columns:1fr}
}
/* =========================
   LANDING VENDER — Google Ads
========================= */

.nav-links-lite a.active{background: var(--aSoft); border-color: var(--aLine);}

.sell-hero{
  padding:22px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
}

.sell-title{
  margin:10px 0 10px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height:1.06;
  letter-spacing:-.9px;
}
.sell-lead{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15.6px;
}
.sell-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;}
.sell-trust{margin-top:16px; display:grid; grid-template-columns: repeat(3,1fr); gap:12px;}
.sell-note{margin-top:12px; font-size:13px;}

.sell-panel{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.sell-panel-top{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  font-weight:1000;
  font-size:12px;
}
.tag.soft{
  border-color: rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  color: var(--muted);
}
.sell-panel-kpis{display:grid; gap:10px; margin-top:12px;}
.sell-panel-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}

.sell-bullets{padding:18px;}
.sell-bullets b{display:block; margin-bottom:8px;}
.sell-bullets ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7;}
.sell-bullets li{margin:6px 0;}

.include-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.include{padding:18px;}
.include b{display:block; letter-spacing:-.2px;}
.include span{display:block; margin-top:6px; color:var(--muted); line-height:1.65;}

.faq-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.faq{padding:16px;}
.faq summary{
  cursor:pointer;
  font-weight:1000;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none;}
.faq p{margin:10px 0 0; color:var(--muted); line-height:1.75;}

.sticky-cta{
  position:fixed;
  left:12px; right:12px; bottom:12px;
  display:none;
  gap:10px;
  z-index:1100;
}
.sticky-cta .btn{flex:1; justify-content:center;}

@media (max-width: 980px){
  .sell-hero{grid-template-columns:1fr;}
  .sell-trust{grid-template-columns:1fr;}
  .include-grid{grid-template-columns:1fr;}
  .faq-grid{grid-template-columns:1fr;}
  .sticky-cta{display:flex;}
  body{padding-bottom:86px;} /* espacio para sticky */
}
/* =========================
   LANDING VENDER — Google Ads (SUPER CTA)
   Pega esto AL FINAL de tu styles.css
========================= */

.nav-links-lite a.active{background: var(--aSoft); border-color: var(--aLine);}

.sell-hero{
  padding:22px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
}

.sell-title{
  margin:10px 0 10px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height:1.06;
  letter-spacing:-.9px;
}
.sell-lead{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15.6px;
}
.sell-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;}
.sell-trust{margin-top:16px; display:grid; grid-template-columns: repeat(3,1fr); gap:12px;}
.sell-note{margin-top:12px; font-size:13px;}

.sell-panel{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.sell-panel-top{display:flex; gap:10px; flex-wrap:wrap; align-items:center;}
.tag{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  font-weight:1000;
  font-size:12px;
}
.tag.soft{
  border-color: rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  color: var(--muted);
}
.sell-panel-kpis{display:grid; gap:10px; margin-top:12px;}
.sell-panel-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}

.sell-bullets{padding:18px;}
.sell-bullets b{display:block; margin-bottom:8px;}
.sell-bullets ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7;}
.sell-bullets li{margin:6px 0;}

.include-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.include{padding:18px;}
.include b{display:block; letter-spacing:-.2px;}
.include span{display:block; margin-top:6px; color:var(--muted); line-height:1.65;}

.faq-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.faq{padding:16px;}
.faq summary{
  cursor:pointer;
  font-weight:1000;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none;}
.faq p{margin:10px 0 0; color:var(--muted); line-height:1.75;}

/* CTA boost */
.btn-xl{
  padding:14px 18px;
  font-size:14px;
  letter-spacing:.1px;
}
.cta-micro{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.mid-cta{
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.65));
}
.mid-cta h2{
  margin:10px 0 8px;
  letter-spacing:-.5px;
  font-size:26px;
}
.mid-cta-right{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Sticky CTA móvil */
.sticky-cta{
  position:fixed;
  left:12px; right:12px; bottom:12px;
  display:none;
  gap:10px;
  z-index:1100;
}
.sticky-cta .btn{flex:1; justify-content:center;}

@media (max-width: 980px){
  .sell-hero{grid-template-columns:1fr;}
  .sell-trust{grid-template-columns:1fr;}
  .include-grid{grid-template-columns:1fr;}
  .faq-grid{grid-template-columns:1fr;}
  .mid-cta{align-items:flex-start}
  .mid-cta-right{width:100%}
  .mid-cta-right .btn{flex:1; justify-content:center}
  .sticky-cta{display:flex;}
  body{padding-bottom:86px;}
}
/* =========================
   Lead Bubble Quiz (Premium)
========================= */

.lead-bubble{
  position:fixed;
  right:16px;
  bottom:92px; /* deja sitio al sticky CTA móvil si lo tienes */
  z-index:1200;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  font-weight:1000;
  cursor:pointer;
  transform: translateY(6px);
  opacity:0;
  pointer-events:none;
  transition: .22s ease;
}

.lead-bubble.show{
  transform: translateY(0);
  opacity:1;
  pointer-events:auto;
}

.lb-dot{
  width:10px; height:10px;
  border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 5px rgba(255,106,0,.12);
}

.lead-drawer{
  position:fixed;
  inset:0;
  z-index:1300;
  display:none;
  align-items:flex-end;
  justify-content:flex-end;
  padding:16px;
  background: rgba(0,0,0,.18);
}

.lead-drawer.open{display:flex;}

.ld-card{
  width:min(420px, 100%);
  border-radius: 22px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(31,36,48,.22);
  overflow:hidden;
}

.ld-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(31,36,48,.08);
  background:
    radial-gradient(520px 220px at 10% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
}

.ld-eyebrow{
  font-size:12px;
  font-weight:1000;
  color: var(--muted);
}

.ld-title{
  margin-top:4px;
  font-size:16px;
  font-weight:1100;
  letter-spacing:-.2px;
}

.ld-close{
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.75);
  cursor:pointer;
  display:grid;
  place-items:center;
}
.ld-close svg{width:18px; height:18px;}

.ld-steps{padding:14px;}
.ld-label{
  display:block;
  font-weight:1000;
  font-size:13px;
  margin-bottom:8px;
}

.ld-input{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.80);
  padding:12px 12px;
  outline:none;
  font: inherit;
}
.ld-input:focus{
  border-color: rgba(255,106,0,.30);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}

.ld-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.ld-actions .btn{flex:1; justify-content:center;}

.ld-foot{
  margin-top:12px;
  font-size:12.5px;
  line-height:1.45;
}
/* =========================
   Modal Quiz (auto) — Premium
========================= */

.lead-modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
}

.lead-modal.open{display:block;}

.lead-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(2px);
}

.lead-box{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: min(520px, calc(100% - 28px));
  border-radius: 24px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.94);
  box-shadow: 0 40px 120px rgba(31,36,48,.30);
  overflow:hidden;
  padding:18px;
  background:
    radial-gradient(900px 360px at 12% 0%, rgba(255,106,0,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
}

.lead-x{
  position:absolute;
  right:12px; top:12px;
  width:44px; height:44px;
  border-radius:16px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.80);
  cursor:pointer;
  display:grid;
  place-items:center;
}
.lead-x svg{width:18px; height:18px;}

.lead-head{padding-right:54px;}
.lead-title{
  margin:10px 0 6px;
  letter-spacing:-.5px;
  font-size:26px;
}
.lead-sub{margin:0; line-height:1.6;}

.lead-step{margin-top:12px;}

.lead-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.lead-actions .btn{flex:1; justify-content:center;}

.lead-small{
  margin-top:10px;
  font-size:12.5px;
  line-height:1.45;
}

/* Inputs dentro del modal */
.lead-box .field span{font-weight:1000; font-size:13px;}
.lead-box input,
.lead-box select,
.lead-box textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.86);
  padding:12px;
  font:inherit;
  outline:none;
}
.lead-box input:focus,
.lead-box select:focus,
.lead-box textarea:focus{
  border-color: rgba(255,106,0,.32);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}
/* =========================
   PROPIEDADES — Grid premium
========================= */

.prop-head{
  padding:22px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  background:
    radial-gradient(900px 360px at 12% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
}
.prop-title{
  margin:10px 0 8px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height:1.08;
  letter-spacing:-.8px;
}
.prop-sub{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.prop-filters{
  display:grid;
  gap:10px;
  align-content:start;
}
.pf{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.pf-k{display:block; font-size:12px; font-weight:1000; color:var(--muted);}
.pf-v{display:block; margin-top:4px; font-weight:1000; letter-spacing:-.2px;}

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

.prop-card{overflow:hidden}
.prop-media{
  display:block;
  position:relative;
  border-bottom:1px solid rgba(31,36,48,.08);
  background: rgba(255,255,255,.6);
}
.prop-media img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  filter: saturate(1.02) contrast(1.03);
  transform: scale(1.02);
  transition: transform .25s ease;
}
.prop-card:hover .prop-media img{transform: scale(1.06);}

.prop-badge{
  position:absolute;
  left:14px; top:14px;
  padding:8px 10px;
  border-radius:999px;
  font-weight:1000;
  font-size:12px;
  border:1px solid rgba(255,106,0,.22);
  background: rgba(255,106,0,.10);
  color: rgba(255,106,0,.95);
  backdrop-filter: blur(10px);
}
.prop-badge.hot{
  background: rgba(255,106,0,.16);
  border-color: rgba(255,106,0,.30);
}
.prop-badge.soft{
  color: var(--muted);
  background: rgba(255,255,255,.72);
  border-color: rgba(31,36,48,.10);
}

.prop-price{
  position:absolute;
  right:14px; top:14px;
  padding:9px 11px;
  border-radius:14px;
  font-weight:1100;
  letter-spacing:-.2px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
}

.prop-body{padding:16px}
.prop-top h3{
  margin:0;
  font-size:16px;
  letter-spacing:-.2px;
}
.prop-top p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:13.5px;
}

.prop-meta{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pm{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.65);
  font-weight:900;
  font-size:12px;
  color: var(--muted);
  box-shadow: var(--shadow2);
}

.prop-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.prop-actions .btn{flex:1; justify-content:center}

@media (max-width: 980px){
  .prop-head{grid-template-columns:1fr;}
  .prop-grid{grid-template-columns:1fr;}
  .prop-media img{height:240px;}
}
/* =========================
   DETALLE PROPIEDAD (Premium)
========================= */

.prop-detail-top{padding-top:34px}
.crumbs{font-size:13px; color:var(--muted); display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.crumbs a{font-weight:900}
.crumbs a:hover{color:var(--text)}

.pd-hero{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}

.pd-title{
  margin:10px 0 8px;
  font-size: clamp(32px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-.9px;
}
.pd-sub{margin:0; color:var(--muted); line-height:1.75}

.pd-kpis{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.pd-kpi{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.pd-kpi b{display:block; font-size:15px; letter-spacing:-.2px}
.pd-kpi span{display:block; margin-top:4px; color:var(--muted); font-size:13px}

.pd-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.pd-actions .btn{flex:1; justify-content:center}

.pd-chips{margin-top:12px; display:flex; flex-wrap:wrap; gap:8px}

.gallery{padding:12px}
.gallery-main{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
}
.gallery-main img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
  filter:saturate(1.02) contrast(1.03);
}
.gallery-thumbs{
  margin-top:10px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.thumb{
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  border-radius:16px;
  padding:0;
  overflow:hidden;
  cursor:pointer;
  box-shadow: var(--shadow2);
  outline:none;
}
.thumb img{
  width:100%;
  height:74px;
  object-fit:cover;
  display:block;
  opacity:.92;
  transform: scale(1.02);
  transition: .2s ease;
}
.thumb:hover img{opacity:1; transform: scale(1.06)}
.thumb.active{
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12), var(--shadow2);
}

.pd-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.pd-block{padding:18px}
.pd-block-head h2{margin:10px 0 6px; letter-spacing:-.4px; font-size:22px}
.pd-block-head p{margin:0}

.pd-text p{margin:0 0 10px; color:var(--muted); line-height:1.8}
.pd-text p:last-child{margin-bottom:0}

.pd-features{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
.pf-item{
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.pf-item b{display:block}
.pf-item span{display:block; margin-top:4px; color:var(--muted); font-size:13px}

.pd-side{display:grid; gap:14px}

.pd-specs{margin-top:10px; display:grid; gap:10px}
.spec{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.spec span{color:var(--muted); font-weight:900}
.spec b{letter-spacing:-.2px}

.pd-mini-cta{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.pd-mini-cta .btn{flex:1; justify-content:center}

.pd-map{
  margin-top:10px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.60));
  box-shadow: var(--shadow2);
  padding:14px;
}
.pd-map-inner b{display:block; font-size:14px; letter-spacing:-.2px}
.pd-note{margin-top:10px; font-size:13px; line-height:1.6}

.pd-contact{
  padding:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  background:
    radial-gradient(900px 360px at 12% 0%, rgba(255,106,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
}
.pd-contact-left h2{margin:10px 0 8px; letter-spacing:-.5px}
.pd-contact-points{margin-top:12px; display:grid; gap:10px}

.pd-form{
  display:grid;
  gap:10px;
  align-content:start;
}
.field span{display:block; font-weight:1000; font-size:13px; margin-bottom:8px}
.field input, .field textarea, .field select{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(31,36,48,.12);
  background: rgba(255,255,255,.86);
  padding:12px;
  font:inherit;
  outline:none;
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: rgba(255,106,0,.32);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}

/* Mensajes form (si no lo tienes ya) */
.form-msg{margin:0; min-height:22px; color:var(--muted); font-weight:900}
.form-msg.ok{color:#166534}
.form-msg.err{color:#b91c1c}

/* Botón grande */
.btn-xl{padding:13px 18px}

/* Responsive */
@media (max-width: 980px){
  .pd-hero{grid-template-columns:1fr;}
  .pd-kpis{grid-template-columns: repeat(2, 1fr);}
  .gallery-main img{height:280px;}
  .pd-grid{grid-template-columns:1fr;}
  .pd-contact{grid-template-columns:1fr;}
}

/* =========================
   ANIMACIONES (Premium)
========================= */
.reveal{
  opacity:0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: opacity .6s ease, transform .6s ease, filter .6s ease;
  will-change: opacity, transform;
}
.reveal.in{
  opacity:1;
  transform:none;
  filter:none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; filter:none; transition:none;}
}
.btn:active{transform: translateY(0) scale(.99);}

/* Evita scroll cuando hay modal */
body.modal-open{overflow:hidden;}

/* =========================
   VALORACIÓN — Modal (Premium)
========================= */
.valuation-modal{
  position:fixed;
  inset:0;
  z-index:2500;
  display:none;
}
.valuation-modal.open{display:block;}

.valuation-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(2px);
}

.valuation-box{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: min(720px, calc(100% - 28px));
  max-height: calc(100% - 40px);
  overflow:auto;
  border-radius: 24px;
  border:1px solid rgba(31,36,48,.12);
  background:
    radial-gradient(900px 360px at 12% 0%, rgba(255,106,0,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
  box-shadow: 0 40px 120px rgba(31,36,48,.30);
  padding:18px;
}

.valuation-x{
  position:sticky;
  top:10px;
  margin-left:auto;
  width:44px; height:44px;
  border-radius:16px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow: var(--shadow2);
}
.valuation-x svg{width:18px; height:18px;}

.valuation-title{
  margin:10px 0 6px;
  letter-spacing:-.5px;
  font-size:26px;
}
.valuation-sub{margin:0; color:var(--muted); line-height:1.6;}

.valuation-form{margin-top:14px;}
.vf-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.vf-extras{margin-top:10px;}
.vf-label{
  display:block;
  font-weight:1000;
  font-size:13px;
  color:var(--muted);
  margin-bottom:8px;
}
.vf-checks{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.vf-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
}
.vf-check input{margin-top:3px}
.vf-check span{color:var(--muted); font-weight:900; font-size:13px; line-height:1.35}

.vf-actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:12px;
}
.vf-actions .btn{flex:1; justify-content:center;}

@media (max-width: 820px){
  .vf-grid{grid-template-columns:1fr;}
  .vf-checks{grid-template-columns:1fr;}
}
/* =========================
   FIX EXTRAS (checkbox + texto bonito)
   Pegar AL FINAL del styles.css
========================= */

.checkline{
  display:flex;
  align-items:center;          /* centra checkbox con el texto */
  justify-content:flex-start;  /* evita que se vaya a los lados */
  gap:12px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(31,36,48,.10);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
}

.checkline input[type="checkbox"]{
  flex:0 0 auto;
  width:18px;
  height:18px;
  margin:0;                   /* quita el margin-top que lo descoloca */
  accent-color: var(--accent); /* look premium */
}

.checkline > div{
  flex:1;
  min-width:0;
  text-align:left;            /* por si algo lo está alineando a la derecha */
}

.checkline b{
  display:block;
  line-height:1.2;
}

.checkline .muted{
  display:block;
  margin-top:2px;
  line-height:1.2;
}