/* ============================================================
   DISEÑO WEB — CSS (colorido + paquetes destacados + iconos)
   Guía de uso en comentarios: dónde va cada clase y para qué sirve
   Paleta y tokens globales
============================================================ */
:root{
  --bg-body:#f4fafd;
  --text:#1a1a1a;
  --text-dim:#5c5c6a;

  /* Paleta corporativa */
  --violet-800:#4c1d95;
  --violet-700:#5b2cff;
  --violet-600:#7c4dff;
  --violet-400:#a58bff;
  --fuchsia-500:#d946ef;
  --blue-500:#3b82f6;
  --green-500:#22c55e;
  --amber-500:#f59e0b;

  /* Alias de acento para gradientes/bordes */
  --accent-800:var(--violet-800);
  --accent-700:var(--violet-700);
  --accent-600:var(--violet-600);
  --accent-400:var(--violet-400);

  /* Marca para CTAs del hero (estaba sin definir) */
  --about-brand: var(--green-500);

  /* Superficies y elevación */
  --gray-section:#fff;
  --radius-2xl:1.25rem;
  --shadow-soft:0 14px 35px rgba(20, 20, 41, .12);
  --shadow-smooth:0 8px 20px rgba(20,20,41,.08);
}

/* Box model y tipografía base del documento */
*{ box-sizing:border-box; }
html,body{
  margin:0;
  padding:0;
  font-family:ui-sans-serif,system-ui,Segoe UI,Roboto,Inter,Arial;
  background:var(--bg-body);
  color:var(--text);
  line-height:1.55;
}


/* ============================== */
/* HERO DISEÑO WEB — RESPONSIVE   */
/* Soporta .fondo_nosotros + glows */
/* ============================== */

:root{
  --maxw: 1120px;              /* ya lo usas en otros bloques */
  --hero-padY: clamp(64px, 8vw, 120px);
  --hero-gap: clamp(12px, 2vw, 18px);
  --ink: #0b1020;
  --muted: #5b677a;
}



/* Capas glow decorativas (ya las tienes en el HTML) */
.ah-bg{ position:absolute; inset:0; pointer-events:none; }
.ah-glow{ position:absolute; filter:blur(60px); opacity:.35; }
.ah-g1{ width:700px; height:700px; left:-120px; top:-140px; background:radial-gradient(closest-side,#81bd0033,transparent); }
.ah-g2{ width:560px; height:560px; right:10%; top:10%; background:radial-gradient(closest-side,#b19eef55,transparent); }
.ah-g3{ width:520px; height:520px; right:-120px; bottom:-160px; background:radial-gradient(closest-side,#ff9ffc44,transparent); }



/* Tipos */
.ah-kicker{
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.85;
  margin:0;
  font-size: .85rem;
}
.ah-title{
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: .1rem 0 .2rem;
}
.ah-sub{
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
}


/* Iconito check con anim suave */
.icon-check{
  width: 20px; height: 20px; color:#1a1d2b;
}
.tick-circle{ stroke: currentColor; stroke-opacity:.25; stroke-width:2; fill:none; }
.tick-mark{
  stroke: currentColor; stroke-width:3; fill:none;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: tickIn .8s ease forwards .15s;
}
@keyframes tickIn{ to { stroke-dashoffset: 0; } }

/* Botones (aprovecha tus clases existentes) */
.ah-ctas{
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.ah-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 1.15rem; border-radius:999px; font-weight:800; text-decoration:none;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.ah-primary{
  color:#0b1020;
  background: linear-gradient(90deg, #eaffc4 0%, #b8ff6b 50%, #d9f99d 100%);
  box-shadow: 0 10px 28px rgba(129,189,0,.28);
}
.ah-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 38px rgba(129,189,0,.35); }
.ah-outline{
  background:#fff; color:#0b1020; border:1.5px solid rgba(0,0,0,.18);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.ah-outline:hover{ transform: translateY(-2px); background: rgba(0,0,0,.03); }

/* ============================== */
/* Breakpoints                    */
/* ============================== */

/* Tablet y abajo */
@media (max-width: 900px){
  .fondo_nosotros{
    padding: calc(var(--hero-padY) + 8px) 14px var(--hero-padY);
    min-height: auto;
  }
  .sh-bullets li{
    font-weight: 600;
    padding: .5rem .75rem;
  }
}

/* Móvil medio */
@media (max-width: 640px){
  .ah-sub{ max-width: 60ch; }
  .sh-bullets{ gap: .45rem .6rem; }
  .sh-bullets li{ font-size: .95rem; }
  .ah-ctas .ah-btn{ width: 100%; }
  /* Glows más sutiles para ahorrar GPU */
  .ah-glow{ filter: blur(44px); opacity:.28; }
}

/* Móvil pequeño */
@media (max-width: 380px){
  .ah-title{ font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .sh-bullets li{ padding: .45rem .65rem; }
}

/* Accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce){
  .tick-mark{ animation: none !important; }
  .ah-btn{ transition: none !important; }
  .ah-glow{ filter: none; }
}




/* ============================== */
/* HERO DISEÑO WEB — RESPONSIVE   */
/* Soporta .fondo_nosotros + glows */
/* ============================== */

:root{
  --maxw: 1120px;              /* ya lo usas en otros bloques */
  --hero-padY: clamp(64px, 8vw, 120px);
  --hero-gap: clamp(12px, 2vw, 18px);
  --ink: #0b1020;
  --muted: #5b677a;
}

/* Contenedor base del hero */
.fondo_nosotros{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1400px 480px at 80% 0%, rgba(231,221,233,.15), transparent 10%),
    linear-gradient(180deg, #73cef8 0%, #ffffff 100%);
  color: var(--ink);
  /* Si tu header es fijo, evita solaparlo con este padding-top */
  padding: calc(var(--hero-padY) + 16px) 16px var(--hero-padY);
  min-height: clamp(420px, 60vh, 760px);
  
 
}

/* Capas glow decorativas (ya las tienes en el HTML) */
.ah-bg{ position:absolute; inset:0; pointer-events:none; }
.ah-glow{ position:absolute; filter:blur(60px); opacity:.35; }
.ah-g1{ width:700px; height:700px; left:-120px; top:-140px; background:radial-gradient(closest-side,#81bd0033,transparent); }
.ah-g2{ width:560px; height:560px; right:10%; top:10%; background:radial-gradient(closest-side,#b19eef55,transparent); }
.ah-g3{ width:520px; height:520px; right:-120px; bottom:-160px; background:radial-gradient(closest-side,#ff9ffc44,transparent); }

/* Wrapper interno y layout */
.fondo_nosotros__inner{
  width: min(100%, var(--maxw));
  margin-inline: auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: var(--hero-gap);
}

/* Tipos */
.ah-kicker{
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.85;
  margin:0;
  font-size: .85rem;
}
.ah-title{
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  margin: .1rem 0 .2rem;
}
.ah-sub{
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
}


/* Iconito check con anim suave */
.icon-check{
  width: 20px; height: 20px; color:#1a1d2b;
}
.tick-circle{ stroke: currentColor; stroke-opacity:.25; stroke-width:2; fill:none; }
.tick-mark{
  stroke: currentColor; stroke-width:3; fill:none;
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: tickIn .8s ease forwards .15s;
}
@keyframes tickIn{ to { stroke-dashoffset: 0; } }

/* Botones (aprovecha tus clases existentes) */
.ah-ctas{
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
}
.ah-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 1.15rem; border-radius:999px; font-weight:800; text-decoration:none;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.ah-primary{
  color:#0b1020;
  background: linear-gradient(90deg, #eaffc4 0%, #b8ff6b 50%, #d9f99d 100%);
  box-shadow: 0 10px 28px rgba(129,189,0,.28);
}
.ah-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 38px rgba(129,189,0,.35); }
.ah-outline{
  background:#fff; color:#0b1020; border:1.5px solid rgba(0,0,0,.18);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.ah-outline:hover{ transform: translateY(-2px); background: rgba(0,0,0,.03); }

/* ============================== */
/* Breakpoints                    */
/* ============================== */

/* Tablet y abajo */
@media (max-width: 900px){
  .fondo_nosotros{
    padding: calc(var(--hero-padY) + 8px) 14px var(--hero-padY);
    min-height: auto;
  }
  .sh-bullets li{
    font-weight: 600;
    padding: .5rem .75rem;
  }
}

/* Móvil medio */
@media (max-width: 640px){
  .ah-sub{ max-width: 60ch; }
  .sh-bullets{ gap: .45rem .6rem; }
  .sh-bullets li{ font-size: .95rem; }
  .ah-ctas .ah-btn{ width: 100%; }
  /* Glows más sutiles para ahorrar GPU */
  .ah-glow{ filter: blur(44px); opacity:.28; }
}

/* Móvil pequeño */
@media (max-width: 380px){
  .ah-title{ font-size: clamp(1.8rem, 7vw, 2.2rem); }
  .sh-bullets li{ padding: .45rem .65rem; }
}

/* Accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce){
  .tick-mark{ animation: none !important; }
  .ah-btn{ transition: none !important; }
  .ah-glow{ filter: none; }
}








/* ===========================
   UTILIDADES (aplícalas en cualquier bloque)
=========================== */
.u-center{ text-align:center; }                 /* centra texto */
.u-muted{ color:var(--text-dim); }              /* copy secundario */
.u-pill{
  border-radius:999px; padding:.35rem .7rem;
  display:inline-block; font-weight:600;
} /* chips/categorías */


/* ===========================
   SECCIONES GENERALES
   Dónde va: cualquier <section> del layout
=========================== */
section{ padding: clamp(56px, 8vw, 96px) 24px; }

/* Títulos de sección con subrayado degradado */
h2{
  font-size:clamp(1.65rem,4.2vw,2.5rem);
  line-height:1.1;
  margin:0 0 1.1rem;
  color:var(--accent-800);
  position:relative; display:inline-block; padding-bottom:.35rem;
}
h2::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:6px; border-radius:6px;
  background:linear-gradient(90deg, var(--accent-700), var(--fuchsia-500), var(--blue-500));
  opacity:.35;
}

/* Subtítulos/encabezados de items dentro de tarjetas o bloques */
h3{ font-size:1.15rem; margin:.2rem 0 .5rem; color:#222; }

/* Variante de sección con fondo gris alterno */
.dw-section-alt{ background:var(--gray-section); }

/* Lead/intro bajo el h2 */
.dw-lead{ font-size:1.08rem; color:var(--text-dim); max-width:70ch; }


/* ===========================
   GRID + CARDS (servicios/beneficios)
   Estructura:
   <section>
     <div class="dw-wrap">
       <div class="dw-grid dw-grid--3">
         <article class="dw-card">...</article>
         ...
       </div>
     </div>
   </section>
=========================== */
.dw-grid{ display:grid; gap:22px; }                      /* grid base */
.dw-grid--3{ grid-template-columns:repeat(1,minmax(0,1fr)); } /* 1 col en móvil */
@media (min-width:780px){
  .dw-grid--3{ grid-template-columns:repeat(3,minmax(0,1fr)); } /* 3 cols en desktop */
}

/* Tarjetas blancas (servicios/planes) */
.dw-card,.dw-serv,.dw-plan{
  background:#fff;
  border:1px solid #ececf3;
  border-radius:18px;
  padding:20px;
  box-shadow:var(--shadow-smooth);
  transition:transform .18s ease;
}
.dw-card:hover,.dw-serv:hover,.dw-plan:hover{ transform:translateY(-3px); }

/* Borde-acento sutil en cards (degradado violeta) */
.dw-card, .dw-serv, .dw-plan{
  border-image:linear-gradient(180deg, rgba(124,77,255,.35), rgba(124,77,255,0)) 1;
}

/* Listas con icono a la izquierda (checklist) */
.dw-mini{
  list-style:none; margin:.6rem 0 0; padding:0;
  display:grid; gap:.5rem;
  color:var(--text-dim); font-size:.98rem;
}
.dw-mini li{
  display:grid; grid-template-columns:24px 1fr;
  align-items:start; gap:.55rem;
}
.dw-ico{ width:22px; height:22px; display:inline-block; }


/* ===========================
   PROCESO / PASOS (opcional)
   Dónde va: si muestras metodología en 3 pasos
   *Estaba marcado para eliminar; déjalo si lo usas, o bórralo.*
=========================== */
/* .dw-steps{ display:grid; grid-template-columns:repeat(1,minmax(0,1fr)); gap:18px; list-style:none; margin:0; padding:0 }
@media (min-width:900px){ .dw-steps{ grid-template-columns:repeat(3,minmax(0,1fr)); } }
.dw-step{ position:relative; padding:18px 18px 18px 64px }
.dw-k{ position:absolute; left:18px; top:18px; width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  background:linear-gradient(135deg,var(--accent-700),var(--accent-400)); color:#fff; font-weight:800 } */


/* ===========================
   PROYECTOS / THUMB (opcional)
   *Marcado para eliminar si no hay portafolio.*
=========================== */
/* .dw-thumb{
  height:140px; border-radius:12px;
  background:linear-gradient(135deg, rgba(124,77,255,.25), rgba(165,139,255,.05));
  margin-bottom:.6rem;
} */


/* ===========================
   PAQUETES DESTACADOS / PRICING
   Estructura:
   <div class="dw-plans">
     <article class="dw-plan dw-plan--popular">...</article>
     ...
   </div>
=========================== */
.dw-plans{ display:grid; gap:22px; }
@media (min-width:980px){ .dw-plans{ grid-template-columns:1.1fr 1.2fr 1.1fr; } }

.dw-plan{ position:relative; padding:22px; }

/* Etiqueta flotante para “Más vendido”, etc. */
.dw-tag{
  position:absolute; top:-12px; left:16px;
  background:linear-gradient(135deg,var(--amber-500),var(--fuchsia-500));
  color:#fff; font-weight:800;
  padding:.35rem .6rem; border-radius:10px;
  box-shadow:var(--shadow-smooth); font-size:.8rem;
}

/* Plan destacado con borde y sombra extra */
.dw-plan--popular{
  border:2px solid color-mix(in oklab, var(--accent-700) 55%, #fff 45%);
  box-shadow:0 18px 45px rgba(91,44,255,.22);
}

.dw-price{ font-size:1.8rem; font-weight:900; margin:.2rem 0 .6rem; color:var(--accent-800); }

.dw-cta-row{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:.9rem; }

/* Badge para ahorros o perks */
.dw-badge{
  background:rgba(124,77,255,.1);
  color:var(--accent-700);
  padding:.3rem .55rem; border-radius:999px;
  font-weight:700; font-size:.8rem;
  border:1px solid rgba(124,77,255,.25);
}


/* ===========================
   CTA FINAL (bloque oscuro translúcido)
   Dónde va: al final de página antes del footer
=========================== */
.dw-cta{
  background:conic-gradient(from 180deg at 80% 10%,
    rgba(124,77,255,.2), rgba(217,70,239,.2), rgba(59,130,246,.2), rgba(124,77,255,.2));
  color:#fff;
}
.dw-cta .dw-wrap{
  background:rgba(10,10,16,.75);
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:32px;
  backdrop-filter: blur(4px);
}
.dw-cta h2{ color:#fff; }
.dw-cta p{ color:#e9e9f4; }
.dw-cta .dw-btn--ghost{
  border:1.5px solid rgba(255,255,255,.6);
  color:#fff;
}


/* ===========================
   FAQ / Acordeón (opcional)
   *Si ya usas otro componente, elimina este bloque.*
=========================== */
/* .dw-acc{ border:1px solid #e2e2ea; border-radius:14px; padding:14px; background:#fff; margin-bottom:10px }
.dw-acc summary{ cursor:pointer; font-weight:700; list-style:none }
.dw-acc[open] summary{ color:var(--accent-700) }
.dw-acc__content{ padding-top:10px; color:var(--text-dim); font-size:1rem } */


/* ===========================
   ANIMACIÓN SCROLL (reveal simple)
   Cómo va: añade [data-anim] al bloque y, con JS, pon .is-in al entrar en viewport
=========================== */
[data-anim]{ opacity:0; transform:translateY(12px); transition:opacity .5s ease, transform .5s ease; }
[data-anim].is-in{ opacity:1; transform:none; }



/* Contenedor reutilizable para centrar contenido dentro de cada sección */
.dw-wrap{
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 16px; /* sangría lateral en móvil */
}

/* Soporte si alguna sección viene con .container o anidada directamente */
section > .dw-wrap,
section > .container{
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 16px;
}

/* Encabezados centrados y con ancho legible */
section > .dw-wrap > h2,
section > .dw-wrap > .dw-lead{
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Separación vertical extra entre tarjetas en móvil */
.dw-grid{ row-gap: 24px; }

/* (Reafirmamos las 3 columnas en ≥780px cuando se combine con otras utilidades) */
@media (min-width: 780px){
  .dw-grid.dw-grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===========================
   BOTONES GENÉRICOS (fuera del hero)
=========================== */
.dw-btn{
  display:inline-block;
  padding:.8rem 1rem;
  border-radius:999px;
  font-weight:750;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
}
.dw-btn--primary{
  background: var(--accent-700);
  color:#fff;
  box-shadow: var(--shadow-soft);
}
.dw-btn--primary:hover{ transform: translateY(-2px); }
.dw-btn--ghost{
  background: transparent;
  color: var(--accent-700);
  border:1.5px solid color-mix(in oklab, var(--accent-700) 55%, #fff 45%);
}

/* ===== ANIMACIÓN SCROLL-REVEAL ===== */
[data-anim]{ opacity:0; transform:translateY(12px); transition:opacity .5s ease, transform .5s ease; }
[data-anim].is-in{ opacity:1; transform:none; }


/* ===== ICONO CHECK (animación por trazo) ===== */
/* Estructura esperada:
  <svg class="icon-check ...">
    <circle class="tick-circle" ... pathLength="100"/>
    <path   class="tick-mark"  ... pathLength="100"/>
  </svg>
*/
.icon-check .tick-circle,
.icon-check .tick-mark{
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* “línea por dibujar” */
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.icon-check .tick-circle{ opacity:.30; }

/* Activa al entrar en viewport (cuando el contenedor o el propio SVG tiene .is-in) */
.is-in .icon-check .tick-circle,
.icon-check.is-in .tick-circle{
  animation: tick-draw 900ms ease forwards;
}
.is-in .icon-check .tick-mark,
.icon-check.is-in .tick-mark{
  animation: tick-draw 700ms ease 200ms forwards, tick-pop 240ms ease 700ms forwards;
}

@keyframes tick-draw{ to{ stroke-dashoffset:0; } }
@keyframes tick-pop{ 0%{ transform:scale(.9); } 100%{ transform:scale(1); } }

/* Accesibilidad: sin animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce){
  .icon-check .tick-circle, .icon-check .tick-mark{
    animation:none !important;
    stroke-dasharray:0;
    stroke-dashoffset:0;
  }
}





/* ===========================
   AJUSTES RESPONSIVE EXTRA
=========================== */
@media (max-width: 520px){
  .about-hero{ padding: 3rem 1rem; }
  .ah-ctas{ gap:.6rem; }
  .ah-btn{ padding:.8rem 1rem; }
}

@media (min-width: 600px) and (max-width: 979px){
  section{ padding: clamp(64px, 10vw, 100px) 24px; }
  .dw-lead{ font-size:1.05rem; }
}

@media (min-width: 1280px){
  .dw-wrap{ max-width: 1280px; }
}



/* ============================== */
/* BLOQUE INTERLINKS */
/* ============================== */

.dw-interlinks {
  /*background: #fff;*/
  color: #1a1d2b;
  padding: clamp(60px, 8vw, 100px) 16px;
  position: relative;
}

.dw-interlinks__title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .6rem;
}

.dw-interlinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.dw-linkcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  padding: 1.4rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.dw-linkcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(0,0,0,.08);
}

.dw-linkcard__icon {
  font-size: 1.8rem;
  margin-bottom: .6rem;
  line-height: 1;
}

.dw-linkcard h3 {
  margin: 0 0 .3rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b1020;
}

.dw-linkcard p {
  margin: 0;
  color: #5b677a;
  font-size: .95rem;
  line-height: 1.45;
}

.dw-linkcard--cta {
  background: linear-gradient(90deg, #81bd00, #a200bd);
  color: #fff;
  box-shadow: 0 12px 28px rgba(162,0,189,.25);
}

.dw-linkcard--cta h3,
.dw-linkcard--cta p {
  color: #fff;
}
.dw-linkcard--cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(162,0,189,.35);
}


/* =========================================
   PROVINCIAS — bloque con buscador + chips
   ========================================= */
.dw-provincias{
  background:#fff;
  color:#1a1d2b;
  padding: clamp(48px, 7vw, 88px) 16px;
  position: relative;
}
.dw-provs__head{ text-align:center; max-width:900px; margin:0 auto 1rem; }
.dw-provs__head h2{ margin:0 0 .35rem; font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.dw-provs__head .dw-lead{ color:#5b677a; margin:0; }

.dw-provs__search{
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem;
  max-width: 520px;
  position: relative;
}
.dw-provs__input{
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 999px;
  padding: .75rem 1rem;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.dw-provs__input:focus{
  outline: 3px solid #d9f99d; /* verde claro */
  outline-offset: 0;
}
.dw-provs__clear{
  position: absolute;
  right: 10px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 999px;
  border: 0; background: rgba(0,0,0,.06); color:#333;
  font-size: 18px; line-height: 1; cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.dw-provs__clear:hover{ transform: translateY(-50%) scale(1.06); background: rgba(0,0,0,.1); }

.dw-provs__destacadas{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .8rem;
  margin: 1.2rem auto 0;
  max-width: 1100px;
}
.prov-chip{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  padding: .6rem .9rem;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  color: #1a1d2b;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease, background .2s ease;
}
.prov-chip:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
  border-color: rgba(129,189,0,.35);
  background: linear-gradient(90deg, #eaffc4, #d9f99d);
}
.prov-chip__dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(90deg, #81bd00, #a200bd);
  display: inline-block;
}
.prov-chip__arrow{ font-weight: 900; transform: translateX(0); transition: transform .2s ease; }
.prov-chip:hover .prov-chip__arrow{ transform: translateX(3px); }

.prov-chip--xl{
  padding: .9rem 1.1rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  background:
    radial-gradient(600px 220px at 100% 0%, rgba(177,158,239,.14), transparent 60%),
    #fff;
}

/* “Ver todas” */
.dw-provs__all{
  margin-top: 1.2rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: .6rem .8rem 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.dw-provs__summary{
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  padding: .6rem .9rem;
  border-radius: 12px;
  border: 1.5px solid #e0e0ea;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
  user-select: none;
}
.dw-provs__summary::-webkit-details-marker{ display:none }
.dw-provs__all[open] .dw-provs__summary{
  border-color: rgba(129,189,0,.35);
}

.dw-provs__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .6rem;
  margin-top: .9rem;
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce){
  .prov-chip, .dw-provs__clear{ transition: none !important; }
}
