/* hardware.css - Estilos específicos de la página Hardware/TPV */

.encabezado-oferta {
    font-family: Georgia, serif;
    font-size: 60px;
    color: #FFFFFF;
    text-transform: capitalize;
    line-height: 1.05; /* Ajuste general más compacto */
}

.color-destacado {
    color: #f3c37d; 
    font-weight: bold;
}

/* --- MÓVIL --- */
@media (max-width: 600px) {
    .encabezado-oferta {
        font-size: 42px;      /* más pequeño para evitar corte */
        line-height: 1;       /* líneas pegadas */
        margin-bottom: 0;     /* elimina espacio extra inferior */
    }
}

/* Contenedor */
.jarv-pills {
    --bg: #0a1020;
    /* fondo (tu azul oscuro) */
    --pill-bg: rgba(255, 255, 255, 0.04);
    --pill-br: rgba(120, 160, 255, 0.25);
    --pill-tx: #eaf0ff;
    /* texto */
    --pill-tx-dim: #cdd6ff;
    /* texto tenue */
    --ring: #7aa2ff;
    /* foco/hover */
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    margin: 0 0 24px 0;
}

/* Lista fluida */
.pill-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 16px);
    padding: 0;
    margin: 0;
}

/* Píldora base */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--pill-bg);
    border: 1px solid var(--pill-br);
    color: var(--pill-tx);
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .2px;
    transition: border-color .2s ease, transform .15s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(2px);
    -webkit-tap-highlight-color: transparent;
}

/* Hover / focus accesible */
.pill:hover {
    border-color: var(--ring);
    background: rgba(122, 162, 255, 0.10);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.pill:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 162, 255, 0.35), var(--shadow);
}

/* Estados activos (opcional) */
.pill[aria-current="true"],
.pill.active {
    border-color: var(--ring);
    background: rgba(122, 162, 255, 0.14);
    color: var(--pill-tx);
}

/* Ajustes responsivos */
@media (max-width: 520px) {
    .pill {
        padding: 11px 16px;
    }
}