/* ============================================================
   Design Tokens — B&W + Neon
   ============================================================ */
:root {
  --primario:       #0A0A0A;
  --primario-hover: #1A1A1A;
  --acento:         #C8FF00;
  --acento-hover:   #AADC00;
  --wa:             #25D366;
  --wa-hover:       #1EBE5A;

  --fondo:     #F2F1EE;
  --fondo-alt: #E8E7E2;
  --card:      #FFFFFF;
  --texto:     #0A0A0A;
  --texto-md:  #3A3A3A;
  --texto-sm:  #6E6E6E;
  --borde:     #DDDCD7;
  --borde-md:  #C4C3BC;

  --sombra-sm: 0 1px 3px rgba(0,0,0,.07);
  --sombra:    0 4px 12px rgba(0,0,0,.09);
  --sombra-lg: 0 8px 24px rgba(0,0,0,.12);

  /* Estilo industrial: sin bordes redondeados */
  --radio:    0px;
  --radio-sm: 0px;
  --radio-lg: 0px;

  --ancho-max: 1400px;
  --header-h:  108px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem; line-height: 1.6;
  color: var(--texto); background: var(--fondo);
  -webkit-font-smoothing: antialiased;
}
a       { color: inherit; text-decoration: none; }
img     { display: block; max-width: 100%; height: auto; }
button  { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   Contenedor
   ============================================================ */
.container { width: 100%; max-width: var(--ancho-max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ============================================================
   Header
   ============================================================ */
.header {
  background: var(--primario);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.header-top { display: flex; align-items: center; gap: .875rem; padding: .875rem 0; }

.header-logo {
  display: flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 800; font-size: 1rem;
  letter-spacing: .04em; text-transform: uppercase; flex-shrink: 0;
}
.header-logo img { height: 38px; width: auto; }
.header-logo-icon {
  width: 32px; height: 32px;
  background: var(--acento);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}

.header-search { flex: 1; min-width: 0; position: relative; }
.header-search form { display: flex; }
.search-icon {
  position: absolute; left: .75rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.4); pointer-events: none;
  width: 15px; height: 15px;
}
.search-input {
  width: 100%;
  padding: .6rem 1rem .6rem 2.4rem;
  border: 1.5px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.07);
  color: #fff; font-size: .875rem;
  transition: background .2s, border-color .2s;
}
.search-input::placeholder { color: rgba(255,255,255,.38); }
.search-input:focus { outline: none; background: rgba(255,255,255,.12); border-color: var(--acento); }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: .4rem; flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.75); }
@media (min-width: 1024px) { .hamburger { display: none; } }

.header-nav { border-top: 1px solid rgba(255,255,255,.07); overflow-x: auto; scrollbar-width: none; }
.header-nav::-webkit-scrollbar { display: none; }
.header-nav-inner { display: flex; padding: 0; white-space: nowrap; }
.header-nav-inner a {
  color: rgba(255,255,255,.55);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .55rem 1rem;
  border-right: 1px solid rgba(255,255,255,.05);
  transition: color .15s, background .15s;
}
.header-nav-inner a:hover  { color: #fff; background: rgba(255,255,255,.04); }
.header-nav-inner a.activo { color: var(--acento); background: rgba(200,255,0,.05); }

@media (min-width: 1024px) {
  .header-nav { overflow: visible; }
  .header-nav-inner { flex-wrap: wrap; }
}

/* ============================================================
   Drawer móvil
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer-overlay.abierto { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; top: 0; left: 0;
  height: 100dvh; width: min(300px, 85vw);
  background: var(--card); z-index: 400;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: var(--sombra-lg);
}
.drawer.abierto { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--primario); color: #fff; flex-shrink: 0;
}
.drawer-titulo { font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.drawer-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 1rem; transition: color .15s;
}
.drawer-close:hover { color: var(--acento); }

.drawer-nav { overflow-y: auto; flex: 1; padding: .5rem 0; }
.drawer-nav a {
  display: block; padding: .75rem 1.25rem;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--texto-md);
  border-left: 3px solid transparent;
  transition: background .12s;
}
.drawer-nav a:hover   { background: var(--fondo); color: var(--texto); }
.drawer-nav a.activo  {
  background: var(--fondo-alt);
  border-left-color: var(--acento);
  color: var(--primario); font-weight: 800;
}
.drawer-sep { height: 1px; background: var(--borde); margin: .4rem 1.25rem; }

/* ============================================================
   Main
   ============================================================ */
.main { padding: 2rem 0 4rem; }
@media (min-width: 768px) { .main { padding: 3rem 0 5rem; } }

.layout-catalogo { display: block; }
@media (min-width: 1024px) {
  .layout-catalogo { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; }
}

/* ============================================================
   Sidebar
   ============================================================ */
.aside-cats { display: none; }
@media (min-width: 1024px) {
  .aside-cats {
    display: block; background: var(--card);
    border: 1px solid var(--borde);
    overflow: hidden;
    position: sticky; top: calc(var(--header-h) + 1rem);
  }
}
.aside-header {
  background: var(--primario); color: #fff;
  padding: .75rem 1rem;
  font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.aside-nav { padding: .35rem 0; }
.aside-nav a {
  display: block; padding: .55rem 1rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--texto-md);
  border-left: 3px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
}
.aside-nav a:hover  { background: var(--fondo); color: var(--texto); }
.aside-nav a.activo {
  background: var(--fondo-alt);
  border-left-color: var(--acento);
  color: var(--primario); font-weight: 800;
}
.aside-sep { height: 1px; background: var(--borde); margin: .3rem 0; }

/* ============================================================
   Hero editorial (home)
   ============================================================ */
.hero-editorial { display: grid; }
@media (min-width: 768px) {
  .hero-editorial { grid-template-columns: 1fr 1fr; min-height: 78vh; }
}

.hero-left {
  background: var(--fondo);
  padding: 3.5rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.75rem;
}
@media (min-width: 768px) { .hero-left { padding: 5rem 3.5rem; } }
@media (min-width: 1200px) { .hero-left { padding: 6rem 5rem; } }

.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--texto-sm);
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--texto-sm); flex-shrink: 0;
}

.hero-heading {
  font-family: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: .92; letter-spacing: .01em; color: var(--texto);
}

.hero-subtitulo {
  font-size: clamp(.88rem, 1.4vw, 1rem);
  color: var(--texto-md); line-height: 1.7; max-width: 360px;
}

.btn-neon {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--acento); color: #000;
  padding: .85rem 2rem;
  font-weight: 800; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
  align-self: flex-start;
  transition: background .15s, transform .1s;
}
.btn-neon:hover { background: var(--acento-hover); transform: translateY(-1px); }

.hero-right {
  background: #0A0A0A;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  min-height: 320px;
}
@media (min-width: 768px) { .hero-right { min-height: auto; } }

.hero-reel-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: #111; display: block;
}
.hero-reel-item img {
  width: 100%; height: 100%; object-fit: cover; opacity: .6;
  transition: opacity .35s, transform .45s;
}
.hero-reel-item:hover img { opacity: .9; transform: scale(1.06); }
.hero-reel-item:hover::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--acento);
}
.hero-reel-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #333;
}

/* ============================================================
   Filtros chips (home)
   ============================================================ */
.filtros-home {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--borde);
  margin-bottom: 2rem;
}
.filtros-label {
  font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--texto-sm); margin-bottom: .85rem;
}
.filtros-chips {
  display: flex; gap: .4rem;
  overflow-x: auto; padding-bottom: .35rem; scrollbar-width: none;
}
.filtros-chips::-webkit-scrollbar { display: none; }
.filtro-chip {
  display: inline-flex; align-items: center;
  padding: .45rem 1rem;
  border: 1.5px solid var(--borde-md);
  font-size: .72rem; font-weight: 700;
  color: var(--texto-md); white-space: nowrap;
  background: transparent;
  letter-spacing: .07em; text-transform: uppercase;
  transition: border-color .12s, color .12s, background .12s;
}
.filtro-chip:hover { border-color: var(--texto); color: var(--texto); }
.filtro-chip.activo { background: var(--primario); border-color: var(--primario); color: var(--acento); }

/* ============================================================
   Secciones (otras páginas)
   ============================================================ */
.seccion { margin-bottom: 2.5rem; }
.seccion-header {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 2px solid var(--texto);
}
.seccion-titulo {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--texto);
}
.seccion-link {
  font-size: .68rem; color: var(--texto-sm); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.seccion-link:hover { color: var(--texto); text-decoration: underline; }

.page-header {
  margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 2px solid var(--texto);
}
.page-header h1 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: .95; letter-spacing: .02em; color: var(--texto);
}
.page-header .conteo {
  font-size: .68rem; color: var(--texto-sm); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-top: .4rem;
}

.breadcrumb {
  display: flex; align-items: center; gap: .35rem; flex-wrap: wrap;
  font-size: .68rem; color: var(--texto-sm);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.breadcrumb a { color: var(--texto); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--borde-md); }

/* ============================================================
   Grilla de categorías
   ============================================================ */
.cats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem;
}
@media (min-width: 480px)  { .cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .cats-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .cats-grid { grid-template-columns: repeat(5, 1fr); } }

.cat-card {
  display: flex; align-items: center; gap: .5rem;
  background: var(--card); border: 1px solid var(--borde);
  padding: .85rem 1rem;
  font-weight: 700; font-size: .75rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--texto);
  transition: border-color .12s, background .12s, color .12s;
}
.cat-card:hover { background: var(--primario); color: var(--acento); border-color: var(--primario); }

/* ============================================================
   Grilla de productos
   ============================================================ */
.productos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--borde); border: 1px solid var(--borde);
}
@media (min-width: 480px)  { .productos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .productos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .productos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .productos-grid { grid-template-columns: repeat(5, 1fr); } }

/* ============================================================
   Tarjeta de producto
   ============================================================ */
.card {
  background: var(--card);
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow .18s;
}
.card:hover { box-shadow: inset 0 0 0 2px var(--texto); z-index: 1; }

.card-link { position: static; }
.card-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }

.card-img-wrap {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--fondo); position: relative; flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.05); }
.card-sin-imagen {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--borde);
}

.card-badge {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--acento); color: #000;
  font-size: .6rem; font-weight: 800;
  padding: .18rem .5rem;
  text-transform: uppercase; letter-spacing: .07em; z-index: 2;
}

.card-body {
  padding: .85rem;
  display: flex; flex-direction: column; gap: .3rem; flex: 1;
}
.card-categoria {
  font-size: .62rem; color: var(--texto-sm);
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.card-nombre {
  font-size: .875rem; font-weight: 600; color: var(--texto); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-precio {
  font-size: 1.1rem; font-weight: 800; color: var(--texto);
  margin-top: .1rem; letter-spacing: -.01em;
}
.card-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  background: var(--wa); color: #fff;
  padding: .55rem .75rem;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: auto;
  transition: background .15s;
  position: relative; z-index: 2;
}
.card-wa-btn:hover { background: var(--wa-hover); }
.card-wa-btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================================
   Detalle de producto
   ============================================================ */
.detalle { display: grid; gap: 2rem; }
@media (min-width: 768px) { .detalle { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } }
@media (min-width: 1024px) { .detalle { grid-template-columns: 55% 1fr; } }

.detalle-galeria { display: flex; flex-direction: column; gap: .5rem; }
.detalle-img-wrap { background: var(--fondo); border: 1px solid var(--borde); overflow: hidden; }
.detalle-img-principal { width: 100%; aspect-ratio: 1; object-fit: contain; display: block; padding: 1.25rem; }

.detalle-miniaturas { display: flex; gap: .35rem; overflow-x: auto; padding-bottom: .25rem; }
.detalle-miniatura {
  width: 70px; height: 70px; object-fit: cover;
  border: 2px solid var(--borde); flex-shrink: 0; cursor: pointer;
  transition: border-color .12s;
}
.detalle-miniatura:hover  { border-color: var(--texto); }
.detalle-miniatura.activa { border-color: var(--acento); box-shadow: 0 0 0 2px var(--acento); }
@media (min-width: 768px) { .detalle-miniatura { width: 78px; height: 78px; } }

.detalle-info { display: flex; flex-direction: column; gap: 1.25rem; }
.detalle-cat a {
  font-size: .65rem; color: var(--texto-sm);
  font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
}
.detalle-cat a:hover { color: var(--texto); text-decoration: underline; }
.detalle-nombre {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: .95; letter-spacing: .01em; color: var(--texto);
}
.detalle-precio-label {
  font-size: .62rem; color: var(--texto-sm);
  font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .15rem;
}
.detalle-precio {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--texto); letter-spacing: -.02em;
}
.detalle-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.detalle-tag {
  background: var(--fondo-alt); border: 1px solid var(--borde);
  padding: .2rem .75rem;
  font-size: .7rem; font-weight: 600; color: var(--texto-md); letter-spacing: .03em;
}
.detalle-tag strong { color: var(--texto); }
.detalle-descripcion {
  font-size: .9rem; color: var(--texto-md);
  line-height: 1.7; white-space: pre-line;
  padding: 1rem 1.1rem;
  background: var(--fondo); border: 1px solid var(--borde);
  border-left: 3px solid var(--texto);
}

.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--wa); color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 800; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(37,211,102,.22);
  transition: background .15s, transform .1s;
}
.btn-wa:hover { background: var(--wa-hover); transform: translateY(-1px); }
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   Filtros de búsqueda (search)
   ============================================================ */
.filtros-bar {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.filtros-label { font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--texto-sm); }
.filtro-select {
  padding: .5rem .85rem;
  border: 1.5px solid var(--borde-md);
  background: var(--card); font-size: .75rem;
  font-weight: 600; color: var(--texto);
  letter-spacing: .03em; text-transform: uppercase;
  cursor: pointer; transition: border-color .15s;
}
.filtro-select:focus { outline: none; border-color: var(--texto); }

/* ============================================================
   Paginación
   ============================================================ */
.paginacion {
  display: flex; justify-content: center; align-items: center;
  gap: .25rem; margin-top: 3rem; flex-wrap: wrap;
}
.paginacion a, .paginacion span {
  display: flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .5rem;
  border: 1.5px solid var(--borde-md);
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  transition: background .12s, border-color .12s, color .12s;
}
.paginacion a       { background: var(--card); color: var(--texto); }
.paginacion a:hover { background: var(--primario); color: var(--acento); border-color: var(--primario); }
.paginacion .actual { background: var(--primario); color: var(--acento); border-color: var(--primario); }

/* ============================================================
   Sin resultados
   ============================================================ */
.sin-resultados { text-align: center; padding: 4rem 1.5rem; color: var(--texto-sm); }
.sin-resultados-ico { font-size: 2.5rem; margin-bottom: .75rem; }
.sin-resultados h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .03em; color: var(--texto-md); margin-bottom: .4rem;
}
.sin-resultados p { font-size: .875rem; }
.btn-primario {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--primario); color: var(--acento);
  padding: .65rem 1.5rem;
  font-weight: 800; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .15s; margin-top: 1.25rem;
}
.btn-primario:hover { background: var(--primario-hover); }

/* ============================================================
   WhatsApp flotante
   ============================================================ */
.wa-flotante {
  position: fixed; bottom: 1.5rem; right: 1.25rem;
  background: var(--wa); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 150; transition: transform .15s, box-shadow .15s;
}
.wa-flotante:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,.5); }
.wa-flotante svg { width: 28px; height: 28px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--primario); color: rgba(255,255,255,.6);
  padding: 3.5rem 0 0; margin-top: 3rem; font-size: .875rem;
}
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-marca { display: flex; align-items: center; gap: .6rem; margin-bottom: .85rem; }
.footer-marca-nombre { font-size: .85rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.footer-icon {
  width: 30px; height: 30px; background: var(--acento);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.footer-desc { line-height: 1.65; margin-bottom: 1.1rem; max-width: 300px; }
.footer-titulo { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: .85rem; }
.footer-nav { display: flex; flex-direction: column; gap: .45rem; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 500; transition: color .12s; }
.footer-nav a:hover { color: var(--acento); }
.footer-dato { display: flex; align-items: flex-start; gap: .5rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; line-height: 1.5; }
.footer-dato a { color: rgba(255,255,255,.55); }
.footer-dato a:hover { color: var(--acento); }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--wa); color: #fff;
  padding: .6rem 1.1rem;
  font-weight: 700; font-size: .75rem; letter-spacing: .07em; text-transform: uppercase;
  margin-top: .65rem; transition: background .15s;
}
.footer-wa-btn:hover { background: var(--wa-hover); }
.footer-wa-btn svg { width: 14px; height: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0; text-align: center;
  font-size: .68rem; color: rgba(255,255,255,.28);
}
