/* =========================================================
   TIENDA VIRTUAL DE ZAPATILLAS - ESTILOS PRINCIPALES
   Los colores se inyectan como variables CSS desde PHP (header.php)
   ========================================================= */

:root {
    --color-primario: #1a1a2e;
    --color-secundario: #ff6b35;
    --color-texto: #1a1a1a;
    --color-fondo: #ffffff;
    --nav-height: 64px;
    --radius: 14px;
    --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-texto);
    background: var(--color-fondo);
    padding-bottom: calc(var(--nav-height) + 12px);
    -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; position: relative; z-index: 1; }

/* ---------------- HEADER ---------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--color-fondo);
    box-shadow: var(--shadow-sm);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 42px; width: auto; object-fit: contain; }
.site-logo span { font-weight: 700; font-size: 18px; color: var(--color-primario); }
.header-icons { display: flex; align-items: center; gap: 16px; }
.header-icons a { position: relative; color: var(--color-primario); }
.icon-tienda-desktop { display: none; }
@media (min-width: 900px) { .icon-tienda-desktop { display: flex; } }

.btn-search-mobile-toggle {
    background: none; border: none; padding: 0; color: var(--color-primario); display: flex;
}
@media (min-width: 900px) { .btn-search-mobile-toggle { display: none; } }

/* Buscador centrado (PC) */
.header-search { display: none; flex: 1; max-width: 480px; margin: 0 24px; }
@media (min-width: 900px) { .header-search { display: flex; } }

.search-box { position: relative; width: 100%; }
.search-box input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border-radius: 999px;
    border: 1.5px solid #e5e5e5;
    font-size: 13.5px;
    font-family: inherit;
    background: #fafafa;
}
.search-box input:focus { outline: none; border-color: var(--color-secundario); background: #fff; }
.search-icon-btn {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; padding: 0; color: #999; display: flex;
}

/* Barra de búsqueda desplegable en móvil */
.header-search-mobile-bar { display: none; padding: 0 16px 12px; }
.header-search-mobile-bar.open { display: block; animation: slideDownSearch .2s ease; }
@keyframes slideDownSearch { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 900px) { .header-search-mobile-bar { display: none !important; } }
.badge-carrito {
    position: absolute;
    top: -8px; right: -10px;
    background: var(--color-secundario);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
}

/* ---------------- ICONOS SVG ---------------- */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.icon-sm { width: 18px; height: 18px; }

/* ---------------- SLIDER (sin flechas, sin texto) ---------------- */
.slider-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: #eee;
}
.slider-track {
    display: flex;
    transition: transform .5s ease;
}
.slider-slide {
    min-width: 100%;
    aspect-ratio: 16 / 7;
}
.slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-dots {
    position: absolute;
    bottom: 12px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 6px;
}
.slider-dots span {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.6);
    transition: all .3s;
}
.slider-dots span.active { background: #fff; width: 20px; border-radius: 4px; }

@media (max-width: 640px) {
    .slider-slide { aspect-ratio: auto; }
    .slider-slide img { height: auto; object-fit: contain; }
}

/* ---------------- SECCIONES ---------------- */
.section { padding: 32px 0; }
.section-title { font-size: 24px; font-weight: 700; color: var(--color-primario); margin: 0 0 4px; }
.section-subtitle { font-size: 14px; color: #777; margin: 0 0 20px; }

/* ---------------- CARRUSEL DE PRODUCTOS ---------------- */
.carrusel-productos {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.carrusel-productos::-webkit-scrollbar { display: none; }
.carrusel-productos .product-card { min-width: 180px; scroll-snap-align: start; }

.btn-ver-catalogo {
    width: auto;
    max-width: 260px;
    margin: 18px auto 0;
    padding: 12px 22px;
}

/* ---------------- GRID TIENDA ---------------- */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

/* ---------------- TARJETA DE PRODUCTO ---------------- */
.product-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:active { transform: scale(.97); }
.product-card .img-wrap { aspect-ratio: 1 / 1; overflow: hidden; background: #f4f4f4; }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-card .info { padding: 10px 12px 14px; }
.product-card .cat { font-size: 11px; color: var(--color-secundario); font-weight: 600; text-transform: uppercase; }
.product-card h3 { font-size: 14px; margin: 4px 0 6px; font-weight: 600; line-height: 1.3; color: #1a1a1a; }
.product-card .precio { font-weight: 700; color: var(--color-primario); font-size: 15px; }
.product-card .precio-oferta { color: var(--color-secundario); }
.product-card .precio-tachado { text-decoration: line-through; color: #aaa; font-weight: 400; font-size: 12px; margin-right: 6px; }

/* ---------------- CATEGORIAS INICIO ---------------- */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
}
.categoria-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--color-primario), var(--color-secundario));
    display: flex; align-items: flex-end;
}
.categoria-card img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.categoria-card span {
    position: relative; z-index: 2;
    color: #fff; font-weight: 700; font-size: 14px;
    padding: 10px; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ---------------- FILTROS TIENDA ---------------- */
.filtros-categorias {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 16px;
    scrollbar-width: none;
}
.filtros-categorias::-webkit-scrollbar { display: none; }
.filtro-chip {
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 999px;
    background: #f2f2f2;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    border: 1.5px solid transparent;
}
.filtro-chip.active {
    background: var(--color-primario);
    color: #fff;
}

/* ---------------- POPUP / MODAL DE PRODUCTO ---------------- */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,15,20,.6);
    backdrop-filter: blur(3px);
    z-index: 100;
    display: none;
    align-items: flex-end;
    justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-producto {
    background: #fff;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    animation: slideUp .32s cubic-bezier(.2,.9,.3,1);
    position: relative;
}
@media (min-width: 640px) {
    .modal-overlay { align-items: center; }
    .modal-producto { border-radius: 20px; max-height: 88vh; }
}
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
    border: none;
}
.modal-gallery { position: relative; aspect-ratio: 1/1; background: #f4f4f4; }
.modal-gallery img { width: 100%; height: 100%; object-fit: cover; }
.modal-gallery-thumbs { display: flex; gap: 8px; padding: 10px 16px; overflow-x: auto; }
.modal-gallery-thumbs img {
    width: 56px; height: 56px; object-fit: cover; border-radius: 8px;
    border: 2px solid transparent; cursor: pointer;
}
.modal-gallery-thumbs img.active { border-color: var(--color-secundario); }
.modal-body { padding: 6px 20px 24px; }
.modal-body h2 { font-size: 20px; margin: 4px 0 8px; color: var(--color-primario); }
.modal-precio { font-size: 22px; font-weight: 800; color: var(--color-secundario); margin-bottom: 10px; }
.modal-desc { font-size: 13.5px; color: #666; line-height: 1.6; margin-bottom: 16px; }

.variacion-grupo { margin-bottom: 16px; }
.variacion-grupo label.titulo {
    font-size: 13px; font-weight: 700; color: var(--color-primario);
    display: block; margin-bottom: 8px;
}
.variacion-grupo label.titulo .req { color: #e63946; font-size: 11px; font-weight: 600; margin-left: 4px; }
.opciones-lista { display: flex; flex-wrap: wrap; gap: 8px; }
.opcion-btn {
    border: 1.5px solid #ddd;
    background: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}
.opcion-btn.selected {
    border-color: var(--color-secundario);
    background: var(--color-secundario);
    color: #fff;
}
.opcion-color {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid #ddd; padding: 0;
}
.opcion-color.selected { border-color: var(--color-primario); box-shadow: 0 0 0 2px var(--color-primario); }

.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 18px; border-radius: 12px;
    font-weight: 700; font-size: 14.5px;
    border: none; width: 100%;
}
.btn-primary { background: var(--color-primario); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-secondary { background: #f2f2f2; color: var(--color-primario); }
.btn-outline { background: transparent; border: 1.5px solid var(--color-primario); color: var(--color-primario); }
.form-error { color: #e63946; font-size: 12.5px; margin-top: 6px; display: none; }

/* ---------------- CARRITO ---------------- */
.carrito-item {
    display: flex; gap: 12px;
    background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); padding: 12px; margin-bottom: 12px;
}
.carrito-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.carrito-item .detalle { flex: 1; }
.carrito-item h4 { margin: 0 0 4px; font-size: 14px; }
.carrito-item .variantes { font-size: 12px; color: #888; margin-bottom: 6px; }
.carrito-item .cant-control { display: flex; align-items: center; gap: 10px; }
.carrito-item .cant-control button {
    width: 26px; height: 26px; border-radius: 50%; border: 1px solid #ddd; background: #fff;
}
.carrito-item .quitar { color: #e63946; font-size: 12px; font-weight: 600; margin-top: 6px; background: none; border: none; padding: 0; }
.carrito-resumen {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm);
    padding: 18px; margin-top: 18px;
}
.carrito-resumen .linea { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.carrito-resumen .total { font-size: 18px; font-weight: 800; color: var(--color-primario); }
.metodo-pago {
    border: 1.5px solid #eee; border-radius: 12px; padding: 12px 14px; margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.metodo-pago.selected { border-color: var(--color-secundario); background: #fff8f5; }
.metodo-pago input { accent-color: var(--color-secundario); width: 18px; height: 18px; }
.yape-info { background: #f8f8fb; border-radius: 12px; padding: 14px; margin-top: 10px; text-align: center; display: none; }
.yape-info.show { display: block; }
.yape-info img { max-width: 180px; margin: 10px auto; border-radius: 10px; }
.carrito-vacio { text-align: center; padding: 60px 20px; color: #888; }
.carrito-vacio svg { width: 64px; height: 64px; margin: 0 auto 16px; opacity: .4; }

/* ---------------- NOSOTROS / RECLAMACIONES ---------------- */
.page-header { padding: 24px 0 8px; }
.contenido-editable { line-height: 1.8; font-size: 15px; color: #444; }
.contenido-editable img { border-radius: var(--radius); margin: 16px 0; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--color-primario); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 12px 14px; border-radius: 10px;
    border: 1.5px solid #e2e2e2; font-size: 14px; font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--color-secundario);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.alert-success { background: #e8f8ef; color: #1a7f4f; padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; }
.alert-error { background: #fdecec; color: #c0392b; padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; }

/* ---------------- MENU INFERIOR MOVIL (app-like) ---------------- */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    display: flex;
    z-index: 50;
    border-top: 1px solid #f0f0f0;
    padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav a {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px;
    color: #999;
    font-size: 10.5px;
    font-weight: 600;
    position: relative;
}
.bottom-nav a.active { color: var(--color-secundario); }
.bottom-nav a.active svg { stroke: var(--color-secundario); }
.bottom-nav .nav-badge {
    position: absolute; top: 2px; right: 22%;
    background: var(--color-secundario); color: #fff;
    font-size: 9px; font-weight: 700;
    border-radius: 50%; width: 15px; height: 15px;
    display: flex; align-items: center; justify-content: center;
}

@media (min-width: 900px) {
    .bottom-nav { display: none; }
    body { padding-bottom: 0; }
}

/* ---------------- FOOTER (desktop) ---------------- */
.site-footer {
    background: var(--color-primario);
    color: rgba(255,255,255,.85);
    padding: 32px 0 20px;
    margin-top: 40px;
    font-size: 13.5px;
    position: relative;
    z-index: 1;
}
.site-footer a { color: rgba(255,255,255,.85); }
.footer-cols { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
.footer-cols h4 { color: #fff; font-size: 14px; margin-bottom: 10px; }
.footer-cols p, .footer-cols a { display: block; margin-bottom: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    transition: background .2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,.2); }
.footer-bottom { text-align: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); font-size: 12px; opacity: .7; }
@media (max-width: 899px) { .site-footer { display: none; } }

/* ---------------- LOADER ---------------- */
.spinner {
    width: 20px; height: 20px; border: 2.5px solid rgba(255,255,255,.4);
    border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast {
    position: fixed; bottom: calc(var(--nav-height) + 16px); left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a; color: #fff; padding: 12px 20px; border-radius: 10px;
    font-size: 13.5px; z-index: 200; opacity: 0; pointer-events: none;
    transition: all .3s ease; display: flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-md);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   TEMA OSCURO (solo Inicio y Tienda) — fondo negro con rayos
   El popup de producto NO se ve afectado: mantiene su propio
   fondo blanco definido en .modal-producto.
   ========================================================= */
body.tema-oscuro {
    background: #0a0a0a;
    color: #f2f2f2;
}

/* Capa decorativa fija con los rayos animados, detrás de todo el contenido.
   Usamos z-index positivo (0) en vez de negativo: es más confiable entre
   navegadores. Por eso .container, .slider-wrap y .site-footer reciben
   z-index:1 explícito, para garantizar que el contenido real siempre
   quede por encima de esta capa. */
.fondo-rayos {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #0a0a0a;
}

/* Rayo SVG ramificado (con brillo real, no una simple línea) */
.bolt-svg {
    position: absolute;
    top: -5%;
    width: 46%;
    max-width: 220px;
    height: 110%;
    opacity: .8;
    filter: drop-shadow(0 0 10px rgba(255,50,30,.75)) drop-shadow(0 0 26px rgba(255,40,20,.4));
    animation: boltFlicker 4.5s ease-in-out infinite;
}
.bolt-izq { left: -4%; animation-delay: 0s; }
.bolt-der { right: -4%; transform: scaleX(-1); animation-delay: 1.8s; }

.bolt-path {
    fill: none;
    stroke: #ff2d1f;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.bolt-trunk { stroke-width: 5; }
.bolt-branch { stroke-width: 2.6; opacity: .8; }
.bolt-path-core {
    fill: none;
    stroke: #ffe8c2;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .85;
}

@keyframes boltFlicker {
    0%   { opacity: .5; }
    6%   { opacity: 1; }
    9%   { opacity: .35; }
    13%  { opacity: .9; }
    17%  { opacity: .5; }
    45%  { opacity: .55; }
    50%  { opacity: 1; }
    54%  { opacity: .4; }
    100% { opacity: .5; }
}
@media (prefers-reduced-motion: reduce) {
    .bolt-svg { animation: none; opacity: .6; }
}

/* Ajustes de contraste para elementos que quedan directamente sobre el fondo negro */
body.tema-oscuro .site-header {
    background: #0a0a0a;
    box-shadow: 0 2px 24px rgba(255,40,40,.08);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
body.tema-oscuro .site-logo span { color: #fff; }
body.tema-oscuro .header-icons a,
body.tema-oscuro .btn-search-mobile-toggle,
body.tema-oscuro .icon-tienda-desktop { color: #fff; }
body.tema-oscuro .search-box input {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: #fff;
}
body.tema-oscuro .search-box input::placeholder { color: rgba(255,255,255,.4); }
body.tema-oscuro .search-icon-btn { color: rgba(255,255,255,.65); }
body.tema-oscuro .header-search-mobile-bar { background: #0a0a0a; }

body.tema-oscuro .section-title,
body.tema-oscuro .page-header .section-title { color: #fff; }
body.tema-oscuro .section-subtitle,
body.tema-oscuro .page-header .section-subtitle { color: rgba(255,255,255,.55); }

body.tema-oscuro .filtro-chip { background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); }
body.tema-oscuro .filtro-chip.active { background: #ff2d2d; color: #fff; }

body.tema-oscuro .carrito-vacio { color: rgba(255,255,255,.6); }

/* Botones outline (ej. "Ver catálogo completo") sobre fondo negro */
body.tema-oscuro .btn-outline {
    border-color: rgba(255,255,255,.85);
    color: #fff;
    background: rgba(255,255,255,.05);
}
body.tema-oscuro .btn-outline:hover,
body.tema-oscuro .btn-outline:active {
    background: #ff2d2d;
    border-color: #ff2d2d;
    color: #fff;
}

/* =========================================================
   INICIO ESTILO "LINK HUB" (logo + botones)
   ========================================================= */
.inicio-linkhub {
    max-width: 480px;
    padding-top: 36px;
    padding-bottom: 48px;
}

.linkhub-logo {
    text-align: center;
    margin-bottom: 20px;
}
.linkhub-imagen-hero {
    display: block;
    width: 62%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 18px;
    /* Sin marco: sin borde, sin fondo, sin sombra, sin recorte circular */
}
.linkhub-nombre {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
}
.linkhub-subtitulo {
    color: rgba(255,255,255,.6);
    font-size: 13.5px;
    margin: 0 0 16px;
}

@media (min-width: 640px) {
    .linkhub-imagen-hero { max-width: 320px; }
}

.linkhub-botones {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.linkhub-boton {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 999px;
    padding: 14px 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,.35);
    transition: transform .15s ease, box-shadow .15s ease;
}
.linkhub-boton:active { transform: scale(.97); }
.linkhub-boton-icono {
    width: 34px; height: 34px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #f2f2f2;
    color: var(--color-primario);
    overflow: hidden;
}
.linkhub-boton-icono img { width: 100%; height: 100%; object-fit: cover; }
.linkhub-boton-texto {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 14.5px;
    color: #1a1a1a;
    margin-right: 34px; /* compensa el ícono para centrar visualmente el texto */
}

@media (min-width: 640px) {
    .inicio-linkhub { padding-top: 60px; }
}
