:root{
  --navy:#0F1C2E;
  --navy-2:#152840;
  --navy-3:#1c3350;
  --teal:#1FB6AA;
  --teal-glow:rgba(31,182,170,.45);
  --paper:#F6F8F9;
  --ink-soft:#5b6572;
  --white:#ffffff;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--navy); color:var(--white);
  font-family:"Segoe UI", Calibri, Arial, sans-serif;
}
::selection{ background:var(--teal); color:var(--navy); }
img{max-width:100%;}
a{color:inherit;}

/* custom cursor (desktop only) */
#cursor-dot, #cursor-ring{
  position:fixed; top:0; left:0; pointer-events:none; z-index:9999;
  border-radius:50%; transform:translate(-50%,-50%); display:none;
}
@media (hover:hover) and (pointer:fine){
  body{ cursor:none; }
  #cursor-dot, #cursor-ring{ display:block; }
}
#cursor-dot{ width:6px; height:6px; background:var(--teal); }
#cursor-ring{ width:34px; height:34px; border:1.5px solid rgba(31,182,170,.55); transition:transform .12s ease, opacity .2s ease; }

/* ===== HEADER ===== */
header{
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 56px; transition:all .35s ease; background:transparent;
}
header.scrolled{
  padding:12px 56px; background:rgba(15,28,46,.88); backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.logo-mark{ height:46px; display:block; }
.logo-chip{ background:#fff; padding:8px 14px; border-radius:10px; display:inline-flex; align-items:center; transition:transform .2s ease; }
.logo-chip:hover{ transform:translateY(-1px); }
.logo-chip .logo-mark{ height:34px; }
nav{ display:flex; align-items:center; gap:32px; font-size:13.5px; font-weight:600; }
nav a{ color:rgba(255,255,255,.85); text-decoration:none; position:relative; }
header.on-light nav a{ color:rgba(15,28,46,.8); }
nav a::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:1.5px; background:var(--teal);
  transition:width .25s ease;
}
nav a:hover::after{ width:100%; }
nav a.active::after{ width:100%; }
.lang-toggle{ display:flex; gap:6px; background:rgba(255,255,255,.08); border-radius:20px; padding:6px 13px; font-size:11.5px; font-weight:700; }
header.on-light .lang-toggle{ background:rgba(15,28,46,.06); }
.lang-toggle span{ cursor:pointer; }
.lang-toggle .on{ color:var(--teal); } .lang-toggle .off{ color:rgba(255,255,255,.35); }
header.on-light .lang-toggle .off{ color:rgba(15,28,46,.3); }
.cta-btn{
  background:var(--teal); color:var(--navy); border:none; padding:12px 22px; border-radius:40px;
  font-weight:800; font-size:13px; letter-spacing:.2px; cursor:pointer;
  box-shadow:0 0 0 0 rgba(31,182,170,.5); transition:box-shadow .3s ease, transform .2s ease;
}
.cta-btn:hover{ box-shadow:0 0 0 8px rgba(31,182,170,.18); transform:translateY(-2px); }
.btn-ghost{
  background:rgba(255,255,255,.06); color:#fff; border:1px solid rgba(255,255,255,.25);
  padding:14px 26px; border-radius:40px; font-weight:700; font-size:14px; backdrop-filter:blur(6px); cursor:pointer;
}

/* ===== HERO ===== */
.hero{
  position:relative; min-height:92vh; display:flex; align-items:center; justify-content:center;
  overflow:hidden; background:radial-gradient(ellipse at 50% 0%, #16283e 0%, #0F1C2E 60%);
  clip-path: polygon(0 0,100% 0,100% 94%,0 100%); text-align:center; padding:140px 30px 100px 30px;
}
#network{ position:absolute; inset:0; z-index:1; opacity:.9; }
.hero-inner{ position:relative; z-index:3; max-width:900px; margin:0 auto; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px; background:rgba(31,182,170,.12); color:var(--teal);
  font-size:12px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  padding:9px 20px; border-radius:30px; margin-bottom:34px; border:1px solid rgba(31,182,170,.3);
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--teal); animation:blink 1.6s infinite; }
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:.25;} }
h1{ font-family:Georgia,serif; font-size:clamp(34px,6vw,78px); line-height:1.08; margin:0 0 24px 0; letter-spacing:-1px; }
h1 .accent{ color:var(--teal); font-style:italic; }
.hero-inner p{ font-size:16.5px; color:rgba(255,255,255,.72); max-width:560px; margin:0 auto 38px auto; line-height:1.6; }
.hero-ctas{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ===== STAT MARQUEE ===== */
.stat-strip{ background:var(--paper); color:var(--navy); padding:18px 0; overflow:hidden; white-space:nowrap; border-bottom:1px solid #e7ebed; }
.stat-track{ display:inline-flex; gap:60px; animation:scrollstat 22s linear infinite; }
.stat-track span{ font-family:Georgia,serif; font-size:14.5px; font-weight:600; opacity:.75; }
.stat-track span b{ color:var(--teal); }
@keyframes scrollstat{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ===== SECTIONS ===== */
section.light{ background:var(--paper); color:var(--navy); padding:100px 56px; }
section.dark{ background:var(--navy); color:#fff; padding:100px 56px; position:relative; }
.section-head{ text-align:center; max-width:660px; margin:0 auto 56px auto; }
.kicker{ font-size:12px; letter-spacing:3px; text-transform:uppercase; color:var(--teal); font-weight:800; margin-bottom:16px; }
.section-head h2{ font-family:Georgia,serif; font-size:clamp(26px,3.2vw,40px); margin:0 0 14px 0; line-height:1.18; }
.section-head p{ color:var(--ink-soft); font-size:15px; line-height:1.6; }
section.dark .section-head p{ color:rgba(255,255,255,.65); }

/* ===== PILLAR / PLAN CARDS ===== */
.grid3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card{
  background:var(--navy-2); border:1px solid rgba(255,255,255,.08); border-radius:18px; padding:32px;
  position:relative; transition:transform .15s ease, box-shadow .3s ease; cursor:pointer;
}
.card:hover{ transform:translateY(-6px); box-shadow:0 30px 60px rgba(0,0,0,.4); }
.card.featured{ border:1px solid var(--teal); background:linear-gradient(160deg, var(--navy-3), var(--navy-2)); }
.badge{ display:inline-block; background:var(--teal); color:var(--navy); font-size:10px; font-weight:800; letter-spacing:.5px; padding:5px 12px; border-radius:12px; margin-bottom:16px; }
.card h3{ font-family:Georgia,serif; font-size:20px; margin:0 0 12px 0; color:#fff; }
.card p{ font-size:13.5px; color:rgba(255,255,255,.62); line-height:1.6; min-height:60px; margin-bottom:20px; }
.card ul{ list-style:none; margin:0 0 22px 0; padding:0; }
.card ul li{ font-size:13px; color:rgba(255,255,255,.75); padding:6px 0; padding-left:22px; position:relative; }
.card ul li::before{ content:"✓"; position:absolute; left:0; color:var(--teal); font-weight:800; }
.card .link{ font-size:12.5px; font-weight:800; color:var(--teal); display:inline-flex; align-items:center; gap:6px; }
.card .link svg{ transition:transform .2s ease; }
.card:hover .link svg{ transform:translateX(5px); }

/* ===== GAUGE ===== */
.gauge-card{ background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.1); border-radius:22px; padding:40px; text-align:center; backdrop-filter:blur(10px); }
.gauge{ width:180px; height:180px; border-radius:50%; margin:0 auto 20px auto; position:relative; background:conic-gradient(var(--teal) 0deg, var(--navy-2) 0deg); transition:background 1.6s ease; }
.gauge::before{ content:""; position:absolute; inset:14px; border-radius:50%; background:var(--navy); }
.gauge .score{ position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; z-index:2; }
.gauge .score b{ font-family:Georgia,serif; font-size:36px; }
.gauge .score span{ font-size:10px; letter-spacing:1.5px; color:rgba(255,255,255,.5); }
.gauge-tag{ display:inline-block; margin-top:8px; font-size:11px; font-weight:800; letter-spacing:1px; color:var(--teal); background:rgba(31,182,170,.12); padding:6px 16px; border-radius:20px; }

/* ===== FOUNDER SECTION ===== */
.founder-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:center; max-width:1180px; margin:0 auto; }
.founder-photo-wrap{ position:relative; }
.founder-photo-wrap .frame{ position:absolute; top:-18px; left:-18px; width:100%; height:100%; border:2px solid var(--teal); border-radius:18px; z-index:1; }
.founder-photo-wrap img{ position:relative; z-index:2; width:100%; border-radius:18px; display:block; box-shadow:0 30px 60px rgba(15,28,46,.25); object-fit:cover; aspect-ratio:4/5; }
.founder-tag{ position:absolute; z-index:3; bottom:-22px; left:24px; background:var(--navy); color:#fff; padding:14px 22px; border-radius:12px; box-shadow:0 14px 30px rgba(0,0,0,.25); }
.founder-tag .name{ font-family:Georgia,serif; font-size:15px; }
.founder-tag .role{ font-size:11px; color:var(--teal); letter-spacing:1px; text-transform:uppercase; font-weight:700; }
blockquote.pull{ border-left:3px solid var(--teal); padding-left:20px; margin:0 0 28px 0; }
blockquote.pull p{ font-family:Georgia,serif; font-size:18px; font-style:italic; color:var(--navy); margin:0; }

/* ===== TEAM STRIP ===== */
.team-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:900px; margin:40px auto 0 auto; }
.team-card{ text-align:center; }
.team-card .ph{ width:100%; aspect-ratio:1/1; border-radius:16px; background:var(--navy-2); border:1px solid rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-family:Georgia,serif; font-size:13px; color:rgba(255,255,255,.4); margin-bottom:14px; overflow:hidden; }
.team-card .ph img{ width:100%; height:100%; object-fit:cover; }
.team-card .name{ font-family:Georgia,serif; font-size:15px; margin-bottom:2px; }
.team-card .role{ font-size:11.5px; color:var(--teal); letter-spacing:.5px; text-transform:uppercase; font-weight:700; }

/* ===== ALLIES MARQUEE ===== */
.allies-marquee{ overflow:hidden; position:relative; padding:30px 0; background:var(--paper); }
.allies-marquee::before, .allies-marquee::after{ content:""; position:absolute; top:0; bottom:0; width:120px; z-index:2; }
.allies-marquee::before{ left:0; background:linear-gradient(to right, var(--paper), transparent); }
.allies-marquee::after{ right:0; background:linear-gradient(to left, var(--paper), transparent); }
.allies-track{ display:flex; gap:70px; width:max-content; animation:marquee 26s linear infinite; }
.allies-track div{ font-family:Georgia,serif; font-size:16px; font-weight:700; color:#b8c0c6; white-space:nowrap; transition:color .3s ease; }
.allies-track div:hover{ color:var(--navy); }
@keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.logo-item{
  height:68px; padding:12px 22px; display:flex; align-items:center; justify-content:center;
  background:#fff; border-radius:12px; filter:grayscale(1); opacity:.7;
  transition:all .3s ease; box-shadow:0 2px 10px rgba(15,28,46,.06); flex-shrink:0; width:auto;
}
.logo-item:hover{ filter:grayscale(0); opacity:1; transform:translateY(-3px); box-shadow:0 10px 24px rgba(15,28,46,.14); }
.logo-item.dark-bg{ background:var(--navy); }
.logo-item img{ height:32px; width:auto; max-width:170px; object-fit:contain; }
.logo-item.text-only{ font-family:Georgia,serif; font-weight:700; font-size:12.5px; color:#8b949c; text-align:center; background:#fbfcfc; padding:12px 24px; }

/* ===== FOOTER ===== */
footer{ background:#0a1420; color:rgba(255,255,255,.4); padding:50px 56px; font-size:12.5px; text-align:center; }
footer .fname{ font-family:Georgia,serif; color:#fff; font-size:16px; margin-bottom:10px; }
footer .credit{ margin-top:18px; font-size:11px; color:rgba(255,255,255,.25); letter-spacing:.5px; }
footer .flinks{ display:flex; justify-content:center; gap:22px; flex-wrap:wrap; margin:18px 0; }
footer .flinks a{ color:rgba(255,255,255,.5); text-decoration:none; font-size:12px; font-weight:600; }
footer .flinks a:hover{ color:var(--teal); }

/* ===== ROBOT ASSISTANT ===== */
.robot-widget{ position:fixed; bottom:20px; right:20px; z-index:999; }
.robot-bubble{
  width:92px; height:92px; cursor:pointer; position:relative;
  display:flex; align-items:center; justify-content:center;
  animation: floaty3d 4.2s ease-in-out infinite;
}
.robot-bubble img{ width:100%; height:100%; object-fit:contain; position:relative; z-index:2; filter:drop-shadow(0 10px 14px rgba(15,28,46,.35)); }
@keyframes floaty3d{
  0%,100%{ transform:translateY(0) rotate(-3deg); }
  50%{ transform:translateY(-12px) rotate(3deg); }
}
.robot-bubble::before{
  content:""; position:absolute; bottom:2px; left:50%; width:40px; height:10px;
  background:radial-gradient(ellipse, rgba(15,28,46,.35) 0%, rgba(15,28,46,0) 72%);
  transform:translateX(-50%); border-radius:50%; z-index:0;
  animation:shadowPulse 4.2s ease-in-out infinite;
}
@keyframes shadowPulse{
  0%,100%{ transform:translateX(-50%) scale(1); opacity:.6; }
  50%{ transform:translateX(-50%) scale(.72); opacity:.3; }
}
.chat-panel{ display:none; position:absolute; bottom:98px; right:0; width:264px; background:#fff; color:var(--navy); border-radius:16px; box-shadow:0 20px 50px rgba(0,0,0,.35); padding:18px; font-size:13px; }
.chat-panel strong{ display:block; margin-bottom:4px; font-family:Georgia,serif; font-size:15px; }
.chat-panel p{ color:#555; line-height:1.5; margin:0 0 14px 0; }
.chat-panel button{ width:100%; background:var(--teal); border:none; padding:11px; border-radius:8px; font-weight:800; font-size:12px; cursor:pointer; }
.bot-menu{ display:flex; flex-direction:column; gap:8px; }
.bot-menu-item{
  display:flex; align-items:center; gap:10px; width:100%; text-align:left;
  background:#f6f8f9; border:1px solid #e7ebed; border-radius:10px; padding:11px 12px;
  font-size:12.5px; font-weight:700; color:var(--navy); cursor:pointer; transition:background .15s ease, border-color .15s ease;
}
.bot-menu-item:hover{ background:rgba(31,182,170,.08); border-color:var(--teal); }
.bot-menu-item .ico{ font-size:16px; flex-shrink:0; }

/* ===== COMING SOON ===== */
.soon-wrap{ min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:40px 24px; position:relative; overflow:hidden;
  background:radial-gradient(ellipse at 50% 0%, #16283e 0%, #0F1C2E 60%); }
.notify-form{ display:flex; gap:10px; margin-top:30px; flex-wrap:wrap; justify-content:center; }
.notify-form input{ padding:14px 18px; border-radius:40px; border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.06); color:#fff; font-size:14px; min-width:200px; }
.notify-form input::placeholder{ color:rgba(255,255,255,.4); }
.countdown{ display:flex; gap:20px; margin:36px 0; }
.countdown div{ text-align:center; }
.countdown .n{ font-family:Georgia,serif; font-size:34px; font-weight:bold; color:var(--teal); }
.countdown .l{ font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.5); }

/* ===== ARTICLE BASE (compartido entre artículos de /recursos) ===== */
.article-body{ max-width:720px; margin:0 auto; }
.article-body h2{ font-family:Georgia,serif; font-size:24px; color:var(--navy); margin:48px 0 16px 0; }
.article-body h2:first-child{ margin-top:0; }
.article-body p{ font-size:15px; line-height:1.75; color:var(--ink-soft); margin:0 0 16px 0; }
.article-body ul.check{ list-style:none; padding:0; margin:0 0 16px 0; }
.article-body ul.check li{ font-size:14.5px; color:var(--ink-soft); line-height:1.6; padding:6px 0 6px 26px; position:relative; }
.article-body ul.check li::before{ content:"✓"; position:absolute; left:0; color:var(--teal); font-weight:800; }
.pullquote{ border-left:3px solid var(--teal); padding:4px 0 4px 20px; margin:24px 0; font-family:Georgia,serif; font-style:italic; font-size:16px; color:var(--navy); }
.article-hero-img{ max-width:900px; margin:0 auto 40px auto; border-radius:16px; overflow:hidden; box-shadow:0 20px 44px rgba(15,28,46,.18); }
.article-hero-img img{ width:100%; height:auto; display:block; }
.article-meta{ font-size:11px; color:#9aa4ab; letter-spacing:.5px; text-transform:uppercase; font-weight:700; }

.menu-toggle{
  display:none; width:40px; height:40px; border-radius:8px; background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15); align-items:center; justify-content:center; cursor:pointer;
  flex-direction:column; gap:4px; z-index:1201; position:relative;
}
.menu-toggle span{ width:20px; height:2px; background:#fff; border-radius:2px; }
.menu-close{
  display:none; position:fixed; top:22px; right:22px; z-index:1300; width:40px; height:40px;
  border-radius:8px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  align-items:center; justify-content:center; cursor:pointer; color:#fff; font-size:22px; line-height:1;
}

@media (max-width:900px){
  .grid3{ grid-template-columns:1fr; }
  .founder-grid{ grid-template-columns:1fr !important; }
  .team-grid{ grid-template-columns:1fr; }
  header{ padding:16px 22px; }
  section.light, section.dark{ padding:70px 22px; }

  .menu-toggle{ display:flex; }
  nav{
    display:none; position:fixed; top:0; left:0; right:0; bottom:0; z-index:1200;
    flex-direction:column; align-items:flex-start; gap:0; background:var(--navy);
    padding:90px 30px 40px 30px; overflow-y:auto;
  }
  nav.mobile-open{ display:flex; }
  nav a{ width:100%; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:16px; }
  nav .lang-toggle{ margin:20px 0; }
  nav .cta-btn{ width:100%; text-align:center; margin-top:12px; padding:16px; }
  .menu-close{ display:flex; }
}

/* ===== PROBLEM LIST ===== */
.problem-list{ max-width:720px; margin:0 auto; list-style:none; padding:0; }
.problem-list li{
  display:flex; gap:14px; align-items:flex-start; padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.08); font-size:15px; color:rgba(255,255,255,.8); line-height:1.6;
}
.problem-list li::before{ content:"✕"; color:#e2665c; font-weight:800; font-size:14px; margin-top:2px; flex-shrink:0; }
.problem-truth{
  max-width:720px; margin:30px auto 0 auto; background:rgba(31,182,170,.08); border:1px solid rgba(31,182,170,.25);
  border-radius:14px; padding:22px 26px; font-size:15px; line-height:1.6; color:#fff;
}
.problem-truth b{ color:var(--teal); }

/* ===== TCL COMMAND PILLARS ===== */
.pillars4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1100px; margin:0 auto; }
.pillar4{ text-align:left; }
.pillar4 .num{
  width:36px; height:36px; border-radius:10px; background:rgba(31,182,170,.14); color:var(--teal);
  display:flex; align-items:center; justify-content:center; font-family:Georgia,serif; font-weight:bold; font-size:15px; margin-bottom:16px;
}
.pillar4 h4{ font-size:15.5px; margin:0 0 8px 0; color:var(--navy); }
.pillar4 p{ font-size:13.5px; color:var(--ink-soft); line-height:1.6; margin:0; }
@media (max-width:900px){ .pillars4{ grid-template-columns:1fr 1fr; } .problem-list li{ font-size:14px; } }

/* ===== FAQ ACCORDION ===== */
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid rgba(255,255,255,.1); padding:20px 0; cursor:pointer; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; font-weight:700; font-size:15px; color:#fff; }
.faq-q .plus{ color:var(--teal); font-size:20px; font-weight:400; transition:transform .25s ease; flex-shrink:0; margin-left:16px; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease, opacity .3s ease, margin .3s ease; opacity:0; font-size:14px; color:rgba(255,255,255,.65); line-height:1.65; }
.faq-item.open .faq-a{ max-height:220px; opacity:1; margin-top:12px; }

/* ===== PREFILTER (autoevaluación pre-Diagnóstico) ===== */
.prefilter-items{ display:flex; flex-direction:column; gap:12px; margin-bottom:8px; }
.prefilter-item{
  border:1px solid rgba(255,255,255,.14); border-radius:12px; padding:16px 18px; cursor:pointer;
  display:flex; gap:14px; align-items:flex-start; background:rgba(255,255,255,.02);
  transition:all .2s ease;
}
.prefilter-item:hover{ border-color:rgba(31,182,170,.4); background:rgba(255,255,255,.04); }
.prefilter-item.checked{ border-color:var(--teal); background:rgba(31,182,170,.08); }
.prefilter-check{
  flex-shrink:0; width:22px; height:22px; border-radius:6px; border:1.5px solid rgba(255,255,255,.35);
  display:flex; align-items:center; justify-content:center; margin-top:1px; transition:all .2s ease;
}
.prefilter-item.checked .prefilter-check{ background:var(--teal); border-color:var(--teal); }
.prefilter-check svg{ opacity:0; transform:scale(.5); transition:all .15s ease; }
.prefilter-item.checked .prefilter-check svg{ opacity:1; transform:scale(1); }
.prefilter-item span.q{ font-size:14px; line-height:1.55; color:rgba(255,255,255,.85); }
.reveal{ max-height:0; opacity:0; overflow:hidden; transform:translateY(10px); transition:max-height .5s ease, opacity .4s ease, transform .4s ease, margin .4s ease; margin-top:0; }
.reveal.show{ max-height:600px; opacity:1; transform:translateY(0); margin-top:22px; }
.prefilter-qualified{
  background:linear-gradient(135deg, var(--navy-3), var(--navy-2)); border:1px solid var(--teal);
  color:#fff; border-radius:12px; padding:24px; text-align:center;
}
.prefilter-qualified p{ font-family:Georgia,serif; font-size:17px; margin:0 0 16px 0; }
.prefilter-unqualified{
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.12);
  border-radius:12px; padding:24px;
}
.prefilter-unqualified h4{ font-family:Georgia,serif; font-size:17px; color:#fff; margin:0 0 10px 0; }
.prefilter-unqualified p{ color:rgba(255,255,255,.65); font-size:14px; line-height:1.6; margin:0 0 18px 0; }
.prefilter-unqualified .btns{ display:flex; gap:12px; flex-wrap:wrap; }
.prefilter-neutral{ margin-top:18px; color:rgba(255,255,255,.4); font-size:13px; font-style:italic; transition:opacity .3s ease; }
.prefilter-neutral.hide{ opacity:0; height:0; margin:0; overflow:hidden; }
.gauge-tag{ transition:all .3s ease; }
.gauge-tag.qualified{ background:rgba(31,182,170,.18); color:var(--teal); }
.gauge-tag.unqualified{ background:rgba(255,255,255,.08); color:rgba(255,255,255,.55); }
@media (max-width:900px){
  .prefilter-unqualified .btns{ flex-direction:column; }
}

/* ===== DIRECTORIO ===== */
.dir-hero{ padding:60px 24px 40px 24px; text-align:center; }
.dir-search-bar{ max-width:640px; margin:0 auto 28px auto; display:flex; gap:10px; }
.dir-search-bar input{ flex:1; padding:16px 20px; border-radius:12px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.05); color:#fff; font-size:14px; }
.dir-search-bar input::placeholder{ color:rgba(255,255,255,.4); }
.dir-filters{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; max-width:900px; margin:0 auto; }
.dir-filters select{ padding:11px 16px; border-radius:10px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.05); color:#fff; font-size:12.5px; font-weight:600; }
.dir-filters select option{ background:var(--navy); color:#fff; }
.dir-count{ text-align:center; color:rgba(255,255,255,.45); font-size:12.5px; margin-top:16px; }

.dir-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:20px; max-width:1200px; margin:0 auto; }
.biz-card{ background:#fff; border:1px solid #e7ebed; border-radius:16px; padding:22px; transition:transform .2s ease, box-shadow .2s ease; text-decoration:none; display:block; color:inherit; position:relative; }
.biz-card:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(15,28,46,.1); }
.biz-avatar{ width:52px; height:52px; border-radius:12px; background:var(--navy); color:var(--teal); display:flex; align-items:center; justify-content:center; font-family:Georgia,serif; font-weight:bold; font-size:20px; margin-bottom:14px; }
.biz-cat{ font-size:10px; font-weight:800; letter-spacing:.5px; text-transform:uppercase; color:var(--teal); margin-bottom:6px; }
.biz-name{ font-family:Georgia,serif; font-size:16px; color:var(--navy); margin-bottom:6px; line-height:1.3; }
.biz-city{ font-size:12px; color:var(--ink-soft); margin-bottom:10px; display:flex; align-items:center; gap:5px; }
.biz-desc{ font-size:12.5px; color:var(--ink-soft); line-height:1.5; }
.biz-badge{ position:absolute; top:18px; right:18px; background:rgba(31,182,170,.12); color:var(--teal); font-size:9px; font-weight:800; letter-spacing:.5px; padding:4px 9px; border-radius:8px; text-transform:uppercase; }

.dir-cta-strip{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:20px; }

@media (max-width:640px){
  .dir-search-bar{ flex-direction:column; }
  .dir-filters select{ flex:1; min-width:130px; }
}
