/* Fuentes autoalojadas (nada de Google Fonts en el front) */
@font-face{
  font-family:'Host Grotesk';
  src:url('fonts/host-grotesk.woff2') format('woff2');
  font-weight:300 800; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Inter';
  src:url('fonts/inter.woff2') format('woff2');
  font-weight:100 900; font-style:normal; font-display:swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root{
  --blue:#0335FC;
  --blue-700:#0229CC;
  --blue-100:#E6ECFF;
  --ink:#050414;
  --ink-70:#3B3A47;
  --muted:#63647A;
  --muted-icon:#8A8B9C; /* solo iconos: 3,36:1, no apto para texto */
  --surface:#F4F5F8;
  --surface-2:#FAFAFC;
  --line:rgba(5,4,20,.08);
  --line-2:rgba(5,4,20,.14);
  --white:#fff;

  --r-pill:99px;
  --r-xl:28px;
  --r-lg:20px;
  --r-md:14px;
  --r-sm:10px;

  --sh-nav:0 10px 30px rgba(5,4,20,.10), 0 2px 6px rgba(5,4,20,.05);
  --sh-card:0 1px 2px rgba(5,4,20,.04), 0 8px 24px rgba(5,4,20,.06);
  --sh-float:0 18px 50px rgba(5,4,20,.16);

  --container:1180px;
  --pad-x:24px;
  --sec-y:clamp(64px, 8vw, 116px);

  --font-h:"Host Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-b:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top:104px}
body{
  margin:0; background:var(--white); color:var(--ink);
  font-family:var(--font-b); font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button{font:inherit; color:inherit}
h1,h2,h3,h4{font-family:var(--font-h); font-weight:600; letter-spacing:-.03em; line-height:1.08; margin:0}
h1{font-size:clamp(38px,5.6vw,66px)}
h2{font-size:clamp(30px,3.9vw,50px)}
h3{font-size:clamp(19px,1.5vw,21px); letter-spacing:-.02em; line-height:1.25}
p{margin:0}
:focus-visible{outline:3px solid var(--blue); outline-offset:3px; border-radius:6px}

.skip{position:absolute; left:-9999px; top:0; z-index:100}
.skip:focus{left:16px; top:16px; background:#fff; color:var(--ink); padding:10px 16px; border-radius:var(--r-pill); box-shadow:var(--sh-card)}
.container{max-width:var(--container); margin-inline:auto; padding-inline:var(--pad-x)}
.section{padding-block:var(--sec-y)}
.section--tight{padding-block:clamp(48px,5.5vw,76px)}
.section--surface{background:var(--surface-2)}

/* ============================================================
   BOTONES / PILLS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  border-radius:var(--r-pill); border:1px solid transparent;
  font-family:var(--font-b); font-size:15px; font-weight:500; line-height:1;
  padding:6px 6px 6px 18px; cursor:pointer; white-space:nowrap;
  transition:background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn__ico{
  width:28px; height:28px; border-radius:50%; display:grid; place-items:center;
  background:rgba(255,255,255,.22); flex:none;
}
.btn__ico svg{width:13px;height:13px}
.btn--primary{background:var(--blue); color:#fff}
.btn--primary:hover{background:var(--blue-700); transform:translateY(-1px)}
.btn--white{background:#fff; color:var(--ink); border-color:var(--line-2)}
.btn--white .btn__ico{background:var(--surface)}
.btn--white:hover{box-shadow:var(--sh-card); transform:translateY(-1px)}
.btn--dark{background:var(--ink); color:#fff}
.btn--dark:hover{background:#1a1930; transform:translateY(-1px)}
.btn--ghost{background:rgba(255,255,255,.14); color:#fff; border-color:rgba(255,255,255,.28); backdrop-filter:blur(6px)}
.btn--ghost:hover{background:rgba(255,255,255,.24)}
.btn--plain{padding:11px 20px}
.btn--plain .btn__ico{display:none}
.btn--sm{font-size:14px; padding:5px 5px 5px 14px}
.btn--sm .btn__ico{width:24px;height:24px}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--line-2); border-radius:var(--r-pill);
  padding:7px 15px; font-size:13px; font-weight:500; color:var(--ink);
  box-shadow:0 1px 2px rgba(5,4,20,.04);
}
.eyebrow--light{background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.3); color:#fff; backdrop-filter:blur(8px); box-shadow:none}
.eyebrow__dot{width:6px;height:6px;border-radius:50%;background:var(--blue)}
.eyebrow--light .eyebrow__dot{background:#fff}

.sec-head{max-width:720px}
.sec-head--center{margin-inline:auto; text-align:center}
.sec-head .eyebrow{margin-bottom:20px}
.sec-head p{margin-top:18px; color:var(--muted); font-size:17px}
.sec-head--split{max-width:none; display:flex; align-items:flex-end; justify-content:space-between; gap:32px; flex-wrap:wrap}
.sec-head--split > div{max-width:640px}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap{position:sticky; top:0; z-index:60; padding:14px var(--pad-x) 0}
.nav{
  position:relative;
  max-width:var(--container); margin-inline:auto;
  display:flex; align-items:center; gap:18px;
  background:rgba(255,255,255,.92); backdrop-filter:blur(14px) saturate(1.4);
  border:1px solid rgba(255,255,255,.6); border-radius:var(--r-pill);
  box-shadow:var(--sh-nav); padding:9px 9px 9px 22px;
}
.brand{display:flex; align-items:center; gap:10px; font-family:var(--font-h); font-weight:700; font-size:19px; letter-spacing:-.03em}
.brand svg{flex:none}
.nav__links{display:flex; align-items:center; gap:4px; margin-inline:auto}
.nav__links > a, .nav__trigger{
  display:inline-flex; align-items:center; gap:6px;
  padding:9px 13px; border-radius:var(--r-pill); font-size:14.5px; font-weight:500; color:var(--ink-70);
  transition:background .16s ease, color .16s ease; cursor:pointer;
}
.nav__links > a:hover, .nav__trigger:hover{background:var(--surface); color:var(--ink)}
.nav__trigger svg{width:9px; height:9px; opacity:.55; transition:transform .18s ease}
.nav__item{position:static}
.nav__item:hover .nav__trigger, .nav__item:focus-within .nav__trigger{background:var(--surface); color:var(--ink)}
.nav__item:hover .nav__trigger svg, .nav__item:focus-within .nav__trigger svg{transform:rotate(180deg)}

/* ---- megamenú ---- */
.mega{
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translateX(-50%) translateY(-8px);
  opacity:0; visibility:hidden;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-xl);
  box-shadow:var(--sh-float); padding:18px; z-index:70;
  /* al cerrar espera un momento, para que un desvio del cursor no lo apague */
  transition:opacity .16s ease .14s, transform .16s ease .14s, visibility .16s .14s;
}
/* puente invisible sobre el hueco: sin esto el panel se apaga al cruzarlo */
.mega::before{
  content:""; position:absolute; left:0; right:0; top:-22px; height:22px;
}
.nav__item:hover .mega, .nav__item:focus-within .mega{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
  transition-delay:0s;
}
.mega--esp{width:540px}
.mega--svc{width:880px}
.mega--guias{width:460px}
.mega__title{
  display:block; padding:0 12px 10px; font-size:11.5px; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase; color:var(--muted);
}
.mega__grid{display:grid; gap:2px 14px; margin:0; padding:0; list-style:none}
.mega--esp .mega__grid{grid-template-columns:repeat(2,1fr)}
.mega--svc .mega__grid{grid-template-columns:repeat(3,1fr)}
.mega--guias .mega__grid{grid-template-columns:1fr}
.mega__grid a{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:9px 12px; border-radius:var(--r-sm); font-size:14px; font-weight:500; color:var(--ink-70);
  transition:background .16s ease, color .16s ease;
}
.mega__grid a:hover{background:var(--surface); color:var(--ink)}
.mega__grid em{font-style:normal; font-size:12.5px; font-weight:600; color:var(--muted)}
.mega__foot{
  margin-top:12px; padding:12px 12px 0; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.mega__foot span{font-size:13px; color:var(--muted)}
.mega__all{display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:500; color:var(--blue)}
.mega__all svg{width:11px;height:11px}
.mega__guia{display:block; padding:11px 12px; border-radius:var(--r-sm)}
.mega__guia:hover{background:var(--surface)}
.mega__guia strong{display:block; font-size:14.5px; font-weight:600; color:var(--ink)}
.mega__guia span{display:block; margin-top:2px; font-size:12.5px; color:var(--muted)}
.nav__right{display:flex; align-items:center; gap:8px}
.nav__login{font-size:14.5px; font-weight:500; padding:9px 8px; color:var(--ink-70)}
.nav__login:hover{color:var(--ink)}
.nav__burger{display:none; width:42px;height:42px;border-radius:50%;border:1px solid var(--line-2);background:#fff; place-items:center}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; margin-top:-72px; padding-top:150px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg,#1B3FE6 0%, #2F55EE 16%, #557CF1 40%, #8FB2F6 66%, #D3E2FB 86%, #FFFFFF 100%);
  text-align:center; color:#fff;
}
/* halos suaves en vez del patrón de líneas */
.hero__grid{
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(46% 38% at 18% 12%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 70%),
    radial-gradient(40% 34% at 84% 24%, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 70%);
}
.hero__inner{position:relative; z-index:2}
.hero h1{margin-top:26px; color:#fff; text-wrap:balance}
.hero h1 em{font-style:normal; color:rgba(255,255,255,.62)}
.hero__sub{
  margin:22px auto 0; max-width:620px; font-size:clamp(16px,1.35vw,18.5px);
  color:rgba(255,255,255,.86); line-height:1.55;
}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.search{
  margin:34px auto 0; max-width:720px; display:flex; gap:8px; align-items:center;
  background:rgba(255,255,255,.16); border:1px solid rgba(255,255,255,.32);
  border-radius:var(--r-pill); padding:8px; backdrop-filter:blur(10px);
  box-shadow:0 12px 34px rgba(5,4,20,.16);
}
.search__field{
  flex:1; min-width:0; display:flex; align-items:center; gap:9px;
  background:rgba(255,255,255,.94); border-radius:var(--r-pill); padding:0 16px; height:46px;
}
.search__field--select{flex:0 0 190px}
.search__ico{width:18px;height:18px;flex:none;color:var(--muted-icon)}
.search input,.search select{
  flex:1; min-width:0; border:none; outline:none; background:transparent;
  font-family:var(--font-b); font-size:15px; color:var(--ink); height:100%;
}
.search input::placeholder{color:#6B6C80}
.search select{appearance:none; cursor:pointer; padding-right:14px}
.search .btn{height:46px; padding-left:20px}
@media (max-width:640px){
  .search{flex-wrap:wrap; border-radius:var(--r-xl)}
  .search__field{flex:1 1 100%}
  .search__field--select{flex:1 1 100%}
  .search .btn{flex:1 1 100%; justify-content:center}
}
.hero__q{margin-top:34px; font-size:14.5px; color:rgba(255,255,255,.8); font-weight:500}
.hero__chips{display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:14px 0 0; padding:0; list-style:none}
.chip{
  display:inline-flex; align-items:center; gap:9px;
  background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3);
  color:#fff; border-radius:var(--r-pill); padding:10px 18px 10px 14px;
  font-size:15px; font-weight:500; backdrop-filter:blur(8px);
  transition:background .18s ease, transform .18s ease;
}
.chip:hover{background:rgba(255,255,255,.26); transform:translateY(-2px)}
.chip svg{width:18px;height:18px;flex:none;opacity:.95}
.hero__trust{
  margin:26px auto 0; display:inline-flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:center;
  font-size:13.5px; color:rgba(255,255,255,.78);
}
.hero__trust b{color:#fff; font-weight:600}
.stars{display:inline-flex; gap:2px}
.stars svg{width:14px;height:14px}

/* tarjetas flotantes que invaden la seccion siguiente */
.hero__cards{
  position:relative; z-index:2; max-width:var(--container); margin:56px auto -110px;
  padding-inline:var(--pad-x); display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.entry-card{
  background:#fff; border-radius:var(--r-lg); box-shadow:var(--sh-float);
  border:1px solid rgba(255,255,255,.7); color:var(--ink); text-align:left;
  padding:24px; display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.entry-card:hover{transform:translateY(-3px)}
.entry-card__ico{
  width:44px;height:44px;border-radius:var(--r-md); display:grid; place-items:center;
  background:var(--blue-100); color:var(--blue); margin-bottom:18px;
}
.entry-card__ico svg{width:22px;height:22px}
.entry-card h3{font-size:18px; margin-bottom:8px}
.entry-card p{font-size:14.5px; color:var(--muted); line-height:1.55}
.entry-card__link{
  margin-top:auto; padding-top:16px; align-self:flex-start;
  display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:500; color:var(--blue);
}
.entry-card__link svg{width:12px;height:12px}
.float-card{
  background:#fff; border-radius:var(--r-lg); box-shadow:var(--sh-float);
  overflow:hidden; text-align:left; border:1px solid rgba(255,255,255,.7);
  color:var(--ink);
}
.float-card--quote{display:flex; flex-direction:column; justify-content:center}
.float-card:nth-child(1){transform:translateY(14px) rotate(-.6deg)}
.float-card:nth-child(3){transform:translateY(14px) rotate(.6deg)}
.float-card__media{aspect-ratio:16/10; position:relative}
.float-card__body{padding:16px 18px 18px}
.float-card__body h3{font-size:17px}
.float-card__meta{display:flex; align-items:center; gap:8px; margin-top:8px; font-size:13px; color:var(--muted)}
.float-card__quote{padding:22px; font-size:15px; color:var(--ink-70); line-height:1.55}

/* ============================================================
   MEDIA PLACEHOLDERS (gradientes en vez de fotos)
   ============================================================ */
.ph{position:relative; overflow:hidden; background:#dfe4ee}
.ph::after{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px);
  background-size:14px 14px; opacity:.5;
}
.ph--1{background:linear-gradient(135deg,#4F6BF6 0%,#8E5CF7 100%)}
.ph--2{background:linear-gradient(135deg,#F7A23B 0%,#F55E7A 100%)}
.ph--3{background:linear-gradient(135deg,#12B981 0%,#0EA5C9 100%)}
.ph--4{background:linear-gradient(135deg,#8B5CF6 0%,#EC4899 100%)}
.ph--5{background:linear-gradient(135deg,#0F6FF0 0%,#22C3E6 100%)}
.ph--6{background:linear-gradient(135deg,#F43F5E 0%,#F59E0B 100%)}
.ph--7{background:linear-gradient(135deg,#1E1B4B 0%,#4338CA 100%)}
.ph--8{background:linear-gradient(135deg,#059669 0%,#84CC16 100%)}
.ph__ico{position:absolute; inset:0; display:grid; place-items:center; z-index:1}
.ph__ico svg{width:38%; max-width:78px; height:auto; opacity:.9; color:rgba(255,255,255,.92)}

/* ============================================================
   SUB-NAV DE ANCLAS
   ============================================================ */
.anchors{padding-top:132px; padding-bottom:8px}
.anchors__row{
  display:flex; gap:8px; overflow-x:auto; padding-bottom:6px;
  scrollbar-width:none; justify-content:center; flex-wrap:wrap;
}
.anchors__row::-webkit-scrollbar{display:none}
.anchors__row a{
  border:1px solid var(--line-2); border-radius:var(--r-pill); padding:9px 16px;
  font-size:14px; font-weight:500; color:var(--ink-70); background:#fff; white-space:nowrap;
  transition:background .16s ease,color .16s ease,border-color .16s ease;
}
.anchors__row a:hover{background:var(--ink); color:#fff; border-color:var(--ink)}

/* ============================================================
   STRIP DE CONFIANZA
   ============================================================ */
.trust{padding-block:clamp(40px,5vw,64px); text-align:center}
.trust p{font-size:14.5px; color:var(--muted)}
.trust__row{
  margin-top:22px; display:flex; flex-wrap:wrap; gap:12px 34px; justify-content:center; align-items:center;
}
.trust__row span{
  font-family:var(--font-h); font-weight:600; font-size:17px; letter-spacing:-.02em;
  color:var(--muted); opacity:1;
}

/* ============================================================
   BENTO CATEGORIAS
   ============================================================ */
.bento{margin-top:52px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px}
.bento__cell{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-xl);
  padding:24px; display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.bento__cell:hover{transform:translateY(-3px); box-shadow:var(--sh-card)}
.bento__cell--wide{grid-column:span 2}
.bento__icons{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:20px}
.tile{
  width:52px; height:52px; border-radius:var(--r-md); background:#fff; display:grid; place-items:center;
  box-shadow:0 1px 2px rgba(5,4,20,.06), 0 6px 14px rgba(5,4,20,.05);
}
.tile svg{width:24px;height:24px}
.tile--solo{margin-bottom:18px; background:var(--blue-100); box-shadow:none}
.bento__cell h3{margin-bottom:8px}
.bento__cell p{font-size:14.5px; color:var(--muted); line-height:1.55}
.bento__stat{font-family:var(--font-h); font-size:34px; font-weight:600; letter-spacing:-.03em; margin-bottom:4px}
.bento__count{
  display:inline-block; align-self:flex-start; margin-bottom:10px; font-size:12px; font-weight:600; letter-spacing:.04em;
  text-transform:uppercase; color:var(--blue); background:var(--blue-100); padding:5px 11px; border-radius:var(--r-pill);
}
.bento__link{display:inline-flex; align-items:center; align-self:flex-start; gap:6px; margin-top:auto; padding-top:14px; font-size:14px; font-weight:500; color:var(--blue)}
.bento__link svg{width:12px;height:12px}
a.bento__cell{color:inherit}
a.bento__cell:hover .bento__link{gap:9px}
.geo-chips{display:flex; flex-wrap:wrap; gap:7px; margin:16px 0 0; padding:0; list-style:none}
.geo-chip{
  font-size:12.5px; color:var(--ink-70); background:#fff; border:1px solid var(--line-2);
  border-radius:var(--r-pill); padding:5px 11px;
}
a.geo-chip{transition:background .16s ease, color .16s ease, border-color .16s ease}
a.geo-chip:hover{background:var(--ink); color:#fff; border-color:var(--ink)}
.bento__cell--geo{background:transparent; border-style:dashed}
.bento__cell--geo h3{font-size:16px; margin-bottom:14px; color:var(--muted)}
.bento__cell--geo:hover{transform:none; box-shadow:none}

/* ---- grilla de servicios ---- */
.svc{margin:44px 0 0; padding:0; list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:12px}
.svc li{display:flex}
.svc__item{flex:1}
.svc__item{
  display:flex; align-items:center; gap:12px; min-width:0;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:12px 14px;
  transition:box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.svc__item:hover{box-shadow:var(--sh-card); transform:translateY(-2px); border-color:var(--line-2)}
.svc__ico{
  width:38px;height:38px;border-radius:var(--r-sm); flex:none; display:grid; place-items:center;
  background:var(--blue-100); color:var(--blue);
  transition:background .18s ease, color .18s ease;
}
.svc__item:hover .svc__ico{background:var(--blue); color:#fff}
.svc__ico svg{width:20px;height:20px}
.svc__txt{
  flex:1; min-width:0; display:flex; align-items:center; justify-content:space-between; gap:10px;
  font-size:14.5px; font-weight:500; line-height:1.3;
}
.svc__n{flex:none; font-size:12.5px; font-weight:600; color:var(--muted)}

/* ---- guías por ocasión ---- */
.guias{margin:44px 0 0; padding:0; list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:18px}
.guias li{display:flex}
.guia{flex:1}
.guia{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-xl); padding:24px;
  display:flex; flex-direction:column; transition:box-shadow .2s ease, transform .2s ease;
}
.guia:hover{box-shadow:var(--sh-card); transform:translateY(-3px)}
.guia__ico{
  width:46px;height:46px;border-radius:var(--r-md); display:grid; place-items:center;
  background:var(--blue-100); color:var(--blue); margin-bottom:18px;
  transition:background .18s ease, color .18s ease;
}
.guia:hover .guia__ico{background:var(--blue); color:#fff}
.guia__ico svg{width:24px;height:24px}
.guia h3{font-size:17px; margin-bottom:8px}
.guia p{font-size:14px; color:var(--muted); line-height:1.55}
.guia__link{margin-top:auto; padding-top:16px; display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:500; color:var(--blue)}
.guia__link svg{width:12px;height:12px}

/* ============================================================
   RAILS / TARJETAS DE PROVEEDOR
   ============================================================ */
.rail{margin-top:40px; position:relative}
.rail__track{
  display:grid; grid-auto-flow:column; grid-auto-columns:minmax(275px,1fr);
  gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:6px;
  scrollbar-width:none;
}
.rail__track::-webkit-scrollbar{display:none}
.rail__track > *{scroll-snap-align:start}
.rail__nav{display:flex; gap:8px}
.rail__nav--center{justify-content:center; margin-top:26px}
.head-actions{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
.rail__btn{
  width:40px;height:40px;border-radius:50%; border:1px solid var(--line-2); background:#fff;
  display:grid; place-items:center; cursor:pointer; transition:background .16s ease,color .16s ease;
}
.rail__btn:hover{background:var(--ink); color:#fff; border-color:var(--ink)}
.rail__btn svg{width:14px;height:14px}

.pcard{
  position:relative; border-radius:var(--r-lg); overflow:hidden; background:#111;
  aspect-ratio:4/5; display:block; box-shadow:var(--sh-card);
  transition:transform .22s ease, box-shadow .22s ease;
}
.pcard:hover{transform:translateY(-4px); box-shadow:var(--sh-float)}
.pcard__media{position:absolute; inset:0}
.pcard__scrim{position:absolute; inset:0; z-index:2; background:linear-gradient(180deg, rgba(5,4,20,0) 38%, rgba(5,4,20,.72) 100%)}
.pcard__top{position:absolute; z-index:3; top:14px; left:14px; right:14px; display:flex; justify-content:space-between; gap:8px}
.tag{
  background:rgba(255,255,255,.92); color:var(--ink); border-radius:var(--r-pill);
  padding:6px 12px; font-size:11.5px; font-weight:600; letter-spacing:.02em; text-transform:uppercase;
  backdrop-filter:blur(6px);
}
.tag--premium{background:var(--blue); color:#fff}
.tag--rating{display:inline-flex; align-items:center; gap:5px; text-transform:none; letter-spacing:0; font-size:12.5px}
.tag--rating svg{width:12px;height:12px;color:#F5A524}
.pcard__body{position:absolute; z-index:3; left:16px; right:16px; bottom:16px; color:#fff}
.pcard__body h3{color:#fff; font-size:19px}
.pcard__body p{margin-top:5px; font-size:13.5px; color:rgba(255,255,255,.78)}

/* tarjetas chicas: ultimos en unirse */
.mini{display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:40px}
.mini__card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:16px;
  display:flex; gap:14px; align-items:center; min-width:0;
  transition:box-shadow .2s ease, transform .2s ease;
}
.mini__card:hover{box-shadow:var(--sh-card); transform:translateY(-2px)}
.mini__av{width:48px;height:48px;border-radius:var(--r-md); flex:none}
.mini__txt{flex:1; min-width:0}
.mini__card h3{font-size:15.5px; overflow-wrap:anywhere}
.mini__card .mini__cat{display:block; margin-top:3px; font-size:12.5px; color:var(--muted); line-height:1.4}
.mini__new{flex:none; align-self:flex-start; font-size:11px; font-weight:600; color:var(--blue); background:var(--blue-100); padding:4px 9px; border-radius:var(--r-pill)}

/* ============================================================
   PROMOS
   ============================================================ */
.promos{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px}
.promo{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-xl); overflow:hidden;
  display:flex; flex-direction:column; transition:box-shadow .2s ease, transform .2s ease;
}
.promo:hover{box-shadow:var(--sh-card); transform:translateY(-3px)}
.promo__media{aspect-ratio:16/9; position:relative}
.promo__off{
  position:absolute; z-index:2; top:14px; left:14px; background:#fff; color:var(--ink);
  border-radius:var(--r-pill); padding:7px 14px; font-family:var(--font-h); font-weight:600; font-size:14px;
}
.promo__body{padding:20px 20px 22px; display:flex; flex-direction:column; gap:10px; flex:1}
.promo__cat{font-size:12px; font-weight:600; color:var(--blue); text-transform:uppercase; letter-spacing:.04em}
.promo__body p{font-size:14.5px; color:var(--muted); line-height:1.55}
.promo__foot{
  margin-top:auto; padding-top:16px; display:flex; align-items:center; justify-content:space-between; gap:12px;
  border-top:1px solid var(--line);
}
.promo__until{font-size:12.5px; color:var(--muted); display:inline-flex; align-items:center; gap:6px}
.promo__until svg{width:13px;height:13px}

/* ============================================================
   BLOG
   ============================================================ */
.posts{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:44px}
.post{
  border-radius:var(--r-xl); overflow:hidden; background:#fff; border:1px solid var(--line);
  display:flex; flex-direction:column; transition:box-shadow .2s ease, transform .2s ease;
}
.post:hover{box-shadow:var(--sh-card); transform:translateY(-3px)}
.post__media{aspect-ratio:16/10; position:relative}
.post__tag{position:absolute; z-index:2; top:12px; left:12px}
.post__body{padding:18px 18px 20px; display:flex; flex-direction:column; gap:9px; flex:1}
.post__body h3{font-size:17px}
.post__body p{font-size:14px; color:var(--muted); line-height:1.55}
.post__more{margin-top:auto; padding-top:12px; font-size:14px; font-weight:500; color:var(--blue); display:inline-flex; align-items:center; gap:6px}
.post__more svg{width:12px;height:12px}

/* ============================================================
   RESENAS
   ============================================================ */
.reviews{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:44px}
.review{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-xl); padding:26px;
  display:flex; flex-direction:column; gap:16px;
}
.review__stars{display:flex; gap:3px; color:#F5A524}
.review__stars svg{width:16px;height:16px}
.review p{font-size:15.5px; line-height:1.6; color:var(--ink-70)}
.review__who{display:flex; align-items:center; gap:12px; margin-top:auto; padding-top:8px}
.review__av{width:42px;height:42px;border-radius:50%; flex:none; display:grid; place-items:center; color:#fff; font-weight:600; font-family:var(--font-h)}
.review__who strong{display:block; font-size:14.5px; font-weight:600}
.review__who span{font-size:13px; color:var(--muted)}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news{
  border-radius:var(--r-xl); overflow:hidden; position:relative; color:#fff;
  background:linear-gradient(135deg,#0A2ADE 0%,#0335FC 45%,#4C7BFF 100%);
  padding:clamp(38px,5vw,60px);
  display:grid; grid-template-columns:1.1fr .9fr; gap:36px; align-items:center;
}
.news__deco{
  position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(52% 70% at 88% 20%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 72%);
}
.news > *:not(.news__deco){position:relative; z-index:2}
.news h2{color:#fff}
.news p{margin-top:14px; color:rgba(255,255,255,.82); font-size:16px; max-width:440px}
.news__form{display:flex; gap:10px; flex-wrap:wrap}
.news__form input{
  flex:1; min-width:220px; border:1px solid rgba(255,255,255,.34); background:rgba(255,255,255,.14);
  color:#fff; border-radius:var(--r-pill); padding:14px 20px; font-size:15px; font-family:var(--font-b);
}
.news__form input::placeholder{color:rgba(255,255,255,.72)}
.news__form input:focus{outline:none; border-color:#fff; background:rgba(255,255,255,.2)}
.news__note{margin-top:14px; font-size:12.5px; color:rgba(255,255,255,.68)}

/* ============================================================
   FAQ
   ============================================================ */
.divider{display:flex; align-items:center; gap:18px; color:var(--line-2)}
.divider::before,.divider::after{content:""; height:1px; background:var(--line); flex:1}
.divider svg{width:22px;height:22px;color:var(--blue)}
.seo-text{max-width:780px; margin-inline:auto; text-align:center}
.seo-text h2{margin-bottom:26px}
.seo-text p{color:var(--muted); font-size:16.5px; line-height:1.7; margin-bottom:18px; text-align:left}
.seo-text p strong{color:var(--ink); font-weight:600}
.seo-text a{color:var(--blue); font-weight:500}
.faq{max-width:820px; margin:44px auto 0}
.faq details{border:1px solid var(--line); border-radius:var(--r-lg); background:#fff; margin-bottom:12px; overflow:hidden}
.faq details[open]{border-color:var(--line-2); box-shadow:var(--sh-card)}
.faq summary{
  list-style:none; cursor:pointer; padding:20px 24px; display:flex; align-items:center; justify-content:space-between; gap:20px;
  font-family:var(--font-h); font-weight:600; font-size:17.5px; letter-spacing:-.02em;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary svg{width:16px;height:16px; flex:none; color:var(--muted); transition:transform .2s ease}
.faq details[open] summary svg{transform:rotate(45deg); color:var(--blue)}
.faq__a{padding:0 24px 22px; color:var(--muted); font-size:15.5px; line-height:1.65; max-width:660px}

/* ============================================================
   CTA PROVEEDORES
   ============================================================ */
.cta{
  position:relative; border-radius:var(--r-xl); overflow:hidden; color:#fff; text-align:center;
  padding:clamp(52px,7vw,92px) clamp(24px,4vw,64px);
  background:linear-gradient(135deg,#120F3A 0%,#1E1B54 55%,#0B2AC4 100%);
}
.cta__deco{position:absolute; inset:0; opacity:.35; background:
  radial-gradient(60% 60% at 15% 15%, rgba(3,53,252,.7) 0%, transparent 60%),
  radial-gradient(50% 50% at 85% 80%, rgba(140,92,247,.55) 0%, transparent 60%);}
.cta > *:not(.cta__deco){position:relative; z-index:2}
.cta h2{color:#fff; max-width:760px; margin-inline:auto}
.cta__sub{margin:18px auto 0; max-width:560px; color:rgba(255,255,255,.78); font-size:17px}
.cta__btns{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:30px}
.cta__perks{
  margin-top:44px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; text-align:left;
}
.perk{
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); border-radius:var(--r-lg);
  padding:20px; backdrop-filter:blur(6px);
}
.perk svg{width:24px;height:24px; color:#fff; margin-bottom:12px}
.perk h3{font-size:15.5px; color:#fff; line-height:1.35}
.perk p{margin-top:7px; font-size:13.5px; color:rgba(255,255,255,.7); line-height:1.5}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{padding-top:clamp(60px,7vw,96px); padding-bottom:32px}
.footer__grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.3fr; gap:36px}
.footer__about p{margin-top:16px; font-size:14px; color:var(--muted); line-height:1.6; max-width:280px}
.footer__social{display:flex; gap:10px; margin-top:20px}
.footer__social a{width:38px;height:38px;border-radius:50%; border:1px solid var(--line-2); display:grid; place-items:center; color:var(--muted)}
.footer__social a:hover{background:var(--ink); color:#fff; border-color:var(--ink)}
.footer__social svg{width:16px;height:16px}
.footer h4{font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); font-family:var(--font-b); margin-bottom:16px}
.footer ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px}
.footer ul a{font-size:14.5px; color:var(--ink-70)}
.footer ul a:hover{color:var(--blue)}
.footer__card{background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:22px}
.footer__card h3{font-size:16.5px}
.footer__card p{margin-top:8px; font-size:13.5px; color:var(--muted); line-height:1.55}
.footer__card .btn{width:100%; justify-content:center; margin-top:16px}
.footer__bottom{
  margin-top:44px; padding-top:24px; border-top:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13.5px; color:var(--muted);
}
.footer__bottom nav{display:flex; gap:20px}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .bento{grid-template-columns:repeat(2,1fr)}
  .posts{grid-template-columns:repeat(2,1fr)}
  .mini{grid-template-columns:repeat(2,1fr)}
  .svc{grid-template-columns:repeat(3,1fr)}
  .guias{grid-template-columns:repeat(2,1fr)}
  .cta__perks{grid-template-columns:repeat(2,1fr)}
  .footer__grid{grid-template-columns:repeat(3,1fr)}
  .footer__about{grid-column:span 3}
  .footer__card{grid-column:span 3}
}
@media (max-width:900px){
  .nav__links{display:none}
  .nav__burger{display:grid}
  .nav{padding-left:18px}
  .promos{grid-template-columns:1fr}
  .reviews{grid-template-columns:1fr}
  .news{grid-template-columns:1fr; gap:26px}
  .hero__cards{grid-template-columns:1fr; margin-bottom:-80px}
  .float-card:nth-child(n){transform:none}
  .anchors{padding-top:108px}
}
@media (max-width:900px){
  .svc{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .bento{grid-template-columns:1fr}
  .bento__cell--wide{grid-column:span 1}
  .svc{grid-template-columns:1fr}
  .guias{grid-template-columns:1fr}
  .geo-chip{padding:9px 14px}
  .posts{grid-template-columns:1fr}
  .mini{grid-template-columns:1fr}
  .cta__perks{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:repeat(2,1fr)}
  .footer__about,.footer__card{grid-column:span 2}
  .nav__login{display:none}
  .nav__right .btn--primary{display:none}
  .brand{font-size:17px}
  .sec-head--split{align-items:flex-start}
  .rail__nav{display:none}
  .hero{padding-top:124px}
}

/* ============================================================
   PAGINA DE RUBRO
   ============================================================ */
.rhero{
  position:relative; margin-top:-72px; padding:150px 0 clamp(44px,5vw,72px);
  background:linear-gradient(180deg,#1B3FE6 0%, #3159EF 30%, #6E96F3 70%, #C9DBFA 92%, #FFFFFF 100%);
  color:#fff; text-align:center;
}
.rhero__glow{
  position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(50% 42% at 22% 10%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 70%);
}
.rhero__inner{position:relative; z-index:2}
.rhero h1{color:#fff; font-size:clamp(32px,4.4vw,54px); text-wrap:balance; margin-top:18px}
.rhero__sub{margin:18px auto 0; max-width:600px; font-size:clamp(15.5px,1.3vw,18px); color:rgba(255,255,255,.86); line-height:1.55}
.rhero__q{margin-top:28px; font-size:14px; color:rgba(255,255,255,.8); font-weight:500}
.rhero .hero__chips{margin-top:12px}
.rhero__meta{margin-top:24px; font-size:13.5px; color:rgba(255,255,255,.76)}
.rhero__meta b{color:#fff; font-weight:600}

.crumbs{display:flex; flex-wrap:wrap; gap:8px; justify-content:center; font-size:13.5px; color:rgba(255,255,255,.72)}
.crumbs a{color:rgba(255,255,255,.86)}
.crumbs a:hover{color:#fff; text-decoration:underline}
.crumbs span[aria-current]{color:#fff}

/* estado vacio */
.vacio{
  max-width:640px; margin-inline:auto; text-align:center;
  background:var(--surface); border:1px dashed var(--line-2); border-radius:var(--r-xl);
  padding:clamp(36px,5vw,60px) clamp(24px,4vw,48px);
}
.vacio__ico{
  width:52px;height:52px;border-radius:var(--r-md); display:inline-grid; place-items:center;
  background:var(--blue-100); color:var(--blue); margin-bottom:20px;
}
.vacio__ico svg{width:26px;height:26px}
.vacio h2{font-size:clamp(22px,2.4vw,28px)}
.vacio p{margin-top:14px; color:var(--muted); font-size:15.5px; line-height:1.6}
.vacio__btns{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:26px}

/* bloques por ocasion */
.bloques{margin-top:44px; display:grid; grid-template-columns:repeat(2,1fr); gap:18px}
.bloque{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r-xl); padding:26px;
}
.bloque h3{font-size:18px; margin-bottom:10px}
.bloque p{font-size:15px; color:var(--muted); line-height:1.6}

/* paginacion */
.pagination{display:flex; justify-content:center; gap:8px; margin-top:36px}
.pagination .page-numbers{
  display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px;
  padding:0 12px; border:1px solid var(--line-2); border-radius:var(--r-pill);
  font-size:14px; font-weight:500; color:var(--ink-70); background:#fff;
}
.pagination .page-numbers.current,.pagination .page-numbers:hover{background:var(--ink); color:#fff; border-color:var(--ink)}

@media (max-width:900px){
  .bloques{grid-template-columns:1fr}
  .rhero{padding-top:124px}
}

/* prosa editable de las paginas de rubro */
.prosa{max-width:780px; margin-inline:auto}
.prosa h2{font-size:clamp(26px,3vw,38px); margin-bottom:22px; text-align:center}
.prosa h3{font-size:20px; margin:34px 0 10px}
.prosa p{color:var(--muted); font-size:16.5px; line-height:1.7; margin-bottom:18px}
.prosa p strong{color:var(--ink); font-weight:600}
.prosa a{color:var(--blue); font-weight:500}
.prosa ul{margin:0 0 18px; padding-left:20px; color:var(--muted); font-size:16px; line-height:1.7}
.prosa li{margin-bottom:6px}

/* ============================ FICHA DE PROVEEDOR ============================ */

/* iconos: mismo peso optico al lado del texto */
.ico{width:18px; height:18px; flex:0 0 18px}

/* estrellas del puntaje */
.estrellas{display:inline-flex; gap:2px; vertical-align:-2px}
.estrella{
  position:relative; width:15px; height:15px; display:inline-block;
  background:currentColor;
  background:color-mix(in srgb, currentColor 26%, transparent);
  -webkit-mask:var(--star) center/contain no-repeat; mask:var(--star) center/contain no-repeat;
}
.estrella__on{
  position:absolute; inset:0; display:block; background:currentColor;
  -webkit-mask:var(--star) center/contain no-repeat; mask:var(--star) center/contain no-repeat;
}
:root{--star:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.6l2.9 6 6.6.9-4.8 4.6 1.2 6.6L12 17.6 6.1 20.7l1.2-6.6L2.5 9.5l6.6-.9z'/%3E%3C/svg%3E")}

/* ---- cabecera ---- */
.fhero{position:relative; padding:34px 0 40px; background:var(--blue); color:#fff; overflow:hidden}
.fhero__glow{
  position:absolute; inset:-40% -10% auto -10%; height:120%;
  background:radial-gradient(60% 60% at 50% 0%, rgba(255,255,255,.28), transparent 70%);
  pointer-events:none;
}
.fhero > .container{position:relative}
.crumbs--light{color:rgba(255,255,255,.72)}
.crumbs--light a{color:rgba(255,255,255,.92); text-decoration:underline; text-underline-offset:2px}

.fhero__top{display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top:16px}
.fhero h1{font-size:clamp(30px,4.1vw,50px); color:#fff; margin:0}
.sello{
  display:inline-flex; align-items:center; gap:6px; padding:6px 13px 6px 10px;
  border-radius:var(--r-pill); background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.26); backdrop-filter:blur(6px);
  font-size:13px; font-weight:600; letter-spacing:.01em; white-space:nowrap;
}
.sello .ico{width:16px; height:16px; flex-basis:16px}

.fhero__sub{display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:12px; color:rgba(255,255,255,.86); font-size:16px}
.fhero__dato{display:inline-flex; align-items:center; gap:7px}
.fhero__sub .ico{opacity:.9}
.fhero__sep{width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.5); margin:0 2px}

.fhero__rating{display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:16px; color:#fff}
.fhero__nota{
  font-family:var(--font-h); font-weight:600; font-size:19px; line-height:1;
  padding:7px 12px; border-radius:12px; background:#fff; color:var(--blue-700);
}
.fhero__rating .estrellas{color:#FFC53D}
.fhero__votos{font-size:15px; color:rgba(255,255,255,.86)}
.fhero__votos a{color:#fff; text-decoration:underline; text-underline-offset:2px}

/* ---- chips ---- */
.fchips{list-style:none; display:flex; flex-wrap:wrap; gap:8px; margin:20px 0 0; padding:0}
.fchip{
  display:inline-flex; align-items:center; gap:7px; padding:8px 14px;
  border-radius:var(--r-pill); background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24); color:#fff;
  font-size:14px; line-height:1.2; white-space:nowrap;
}
.fchip .ico{width:16px; height:16px; flex-basis:16px; opacity:.92}
.fchip--ocasion{background:#fff; color:var(--blue-700); border-color:#fff; font-weight:600}

.fhero__btns{display:flex; flex-wrap:wrap; gap:10px; margin-top:24px}
.fhero__btns .btn{gap:8px}
.btn--wa{background:#1FA855; color:#fff; border:1px solid #1FA855}
.btn--wa:hover{background:#18904a; border-color:#18904a}
.btn--wa .ico{width:19px; height:19px; flex-basis:19px}

/* ---- carrusel ---- */
.carru{padding:26px 0 6px}
.carru__wrap{position:relative}
.carru__track{
  display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory;
  scroll-behavior:smooth; padding-bottom:6px; scrollbar-width:none;
  border-radius:var(--r-xl);
}
.carru__track::-webkit-scrollbar{display:none}
.carru__track:focus-visible{outline:3px solid var(--blue); outline-offset:4px}
.carru__slide{
  position:relative; flex:0 0 100%; margin:0; scroll-snap-align:start;
  border-radius:var(--r-xl); overflow:hidden; background:var(--surface);
}
@media (min-width:820px){ .carru__slide{flex-basis:calc(60% - 7px)} }
.carru__slide img{width:100%; height:clamp(240px,42vw,460px); object-fit:cover; display:block}
.carru__slide figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:38px 18px 14px;
  background:linear-gradient(transparent, rgba(5,4,20,.78));
  color:#fff; font-size:14px; line-height:1.35;
}
.carru__btn{
  position:absolute; top:calc(50% - 26px); width:46px; height:46px; z-index:2;
  display:grid; place-items:center; border:1px solid var(--line-2); border-radius:50%;
  background:#fff; color:var(--ink); cursor:pointer; box-shadow:var(--sh-float);
  transition:transform .16s ease, opacity .16s ease;
}
.carru__btn:hover{transform:scale(1.06)}
.carru__btn[disabled]{opacity:.32; cursor:default; transform:none}
.carru__btn .ico{width:20px; height:20px; flex-basis:20px}
.carru__btn--prev{left:-6px}
.carru__btn--prev .ico{transform:rotate(180deg)}
.carru__btn--next{right:-6px}
@media (max-width:820px){ .carru__btn{display:none} }
.carru__pie{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  margin-top:12px; color:var(--muted); font-size:13px; flex-wrap:wrap;
}
.carru__contador{
  font-family:var(--font-h); font-weight:600; color:var(--ink-70);
  background:var(--surface); border-radius:var(--r-pill); padding:4px 12px;
}
.carru__credito{display:inline-flex; align-items:center; gap:6px}
.carru__credito .ico{width:15px; height:15px; flex-basis:15px}

/* ---- columnas ---- */
.ficha__cols{display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:48px; align-items:start}
@media (max-width:940px){ .ficha__cols{grid-template-columns:1fr; gap:34px} }
.ficha__h2{
  display:flex; align-items:center; gap:10px;
  font-size:clamp(22px,2.2vw,28px); margin:40px 0 16px;
}
.ficha__h2 span{font-size:.82em; line-height:1}
.ficha__fuente{margin-top:12px; color:var(--muted); font-size:14px}

/* ---- que ofrece ---- */
.serv{list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:10px}
.serv__item{
  display:flex; align-items:flex-start; gap:12px; padding:14px 16px;
  border:1px solid var(--line); border-radius:var(--r-md); background:var(--surface-2);
  color:var(--ink-70); line-height:1.45;
}
.serv__ico{
  display:grid; place-items:center; width:32px; height:32px; flex:0 0 32px;
  border-radius:9px; background:var(--blue-100); color:var(--blue-700);
}

/* ---- temas de las opiniones ---- */
.temas{list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:8px}
.tema{
  display:inline-flex; align-items:center; gap:7px; padding:8px 14px;
  border-radius:var(--r-pill); background:var(--surface); border:1px solid var(--line);
  color:var(--ink-70); font-size:15px;
}
.tema__emoji{font-size:16px; line-height:1}

/* ---- preguntas ---- */
.avisa{
  margin-top:40px; padding:28px 30px 26px; border-radius:var(--r-lg);
  background:linear-gradient(180deg, var(--blue-100), var(--surface-2));
  border:1px solid var(--line-2);
}
.avisa .ficha__h2{margin-top:0}
.avisa__intro{color:var(--ink-70); margin-bottom:18px}
.avisa__lista{list-style:none; margin:0 0 22px; padding:0; display:grid; gap:12px; counter-reset:p}
.avisa__lista li{display:flex; align-items:flex-start; gap:12px; color:var(--ink-70); line-height:1.5}
.avisa__n{
  display:grid; place-items:center; width:24px; height:24px; flex:0 0 24px; margin-top:1px;
  border-radius:50%; background:var(--blue); color:#fff;
  font-family:var(--font-h); font-size:13px; font-weight:600;
}

/* ---- columna lateral ---- */
.ficha__aside{position:sticky; top:104px}
@media (max-width:940px){ .ficha__aside{position:static} }
.ficha__box{padding:24px 24px 20px; border-radius:var(--r-lg); border:1px solid var(--line); box-shadow:var(--sh-card); background:#fff}
.box__nota{
  display:flex; align-items:center; gap:12px; padding-bottom:18px; margin-bottom:18px;
  border-bottom:1px solid var(--line);
}
.box__valor{
  font-family:var(--font-h); font-weight:600; font-size:30px; line-height:1;
  color:var(--blue-700);
}
.box__nota .estrellas{color:#F5A524; display:block}
.box__nota small{display:block; margin-top:4px; color:var(--muted); font-size:13px}
.ficha__boxh{font-size:17px; margin:0 0 14px}
.datos{list-style:none; margin:0 0 20px; padding:0; display:grid; gap:14px}
.datos li{display:flex; align-items:flex-start; gap:12px}
.datos__ico{
  display:grid; place-items:center; width:32px; height:32px; flex:0 0 32px;
  border-radius:9px; background:var(--surface); color:var(--muted);
}
.datos b{display:block; font-size:12px; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); font-weight:600; margin-bottom:2px}
.datos span > a{color:var(--blue); text-decoration:underline; text-underline-offset:2px}
.datos li > span:last-child{color:var(--ink-70); font-size:15px; line-height:1.4; min-width:0; word-break:break-word}
.ficha__box .btn{width:100%; justify-content:center; gap:8px}
.ficha__nota-legal{margin-top:14px; color:var(--muted); font-size:12.5px; line-height:1.5}

/* ---- tarjeta del listado ---- */
.post__zona{display:inline-flex; align-items:center; gap:5px; margin-top:6px; color:var(--muted); font-size:14px}
.post__zona .ico{width:15px; height:15px; flex-basis:15px}
.post__nota{display:inline-flex; align-items:center; gap:6px; margin-top:10px; color:var(--ink-70); font-size:14px}
.post__nota .estrellas{color:#F5A524}
.post__nota b{font-family:var(--font-h); color:var(--blue-700)}
