/* ============================================
   Herramientas públicas · soportereal.com/herramientas
   Menú hub — look NAVY
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Noto Sans', system-ui, -apple-system, sans-serif;
    background: #eef3fa;
    color: #1e293b;
    min-height: 100vh;
}

/* ── Header ── */
.hh-header {
    background: linear-gradient(135deg, #1a4d80, #143d66);
    color: #fff;
    box-shadow: 0 2px 10px rgba(20,61,102,0.25);
}
.hh-header-in {
    max-width: 920px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.hh-brand { display: flex; align-items: center; gap: 14px; }
.hh-brand > i { font-size: 30px; opacity: 0.92; }
.hh-brand h1 { font-size: 22px; font-weight: 800; letter-spacing: 0.2px; }
.hh-brand span { font-size: 12.5px; color: rgba(255,255,255,0.78); }
.hh-home {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.14);
    color: #fff; text-decoration: none;
    padding: 8px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 600;
    transition: background .15s;
}
.hh-home:hover { background: rgba(255,255,255,0.26); }

/* ── Main ── */
.hh-main {
    max-width: 920px;
    margin: 0 auto;
    padding: 24px 20px 48px;
}
.hh-intro {
    display: flex; align-items: center; gap: 9px;
    background: #e3edf8;
    border: 1px solid #cbd9ea;
    color: #143d66;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 22px;
}
.hh-intro i { font-size: 16px; }

/* ── Grid de tarjetas ── */
.hh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 16px;
}
.hh-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #cbd9ea;
    border-radius: 14px;
    padding: 18px 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(20,61,102,0.06);
    transition: transform .12s, box-shadow .15s, border-color .15s;
}
.hh-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(20,61,102,0.16);
    border-color: var(--c, #2563eb);
}
.hh-card-ico {
    flex: 0 0 auto;
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--c, #2563eb) 14%, #fff);
    color: var(--c, #2563eb);
    font-size: 26px;
}
.hh-card-body { flex: 1; min-width: 0; }
.hh-card-body h3 {
    font-size: 15.5px; font-weight: 700; color: #143d66;
    margin-bottom: 4px;
}
.hh-card-body p {
    font-size: 12.8px; color: #64748b; line-height: 1.45;
}
.hh-ext { font-size: 11px; color: #94a3b8; }
.hh-arrow {
    flex: 0 0 auto;
    font-size: 18px; color: #94a3b8;
    transition: transform .15s, color .15s;
}
.hh-card:hover .hh-arrow { color: var(--c, #2563eb); transform: translateX(3px); }

/* ── Responsive ── */
@media (max-width: 640px) {
    .hh-grid { grid-template-columns: 1fr; }
    .hh-brand h1 { font-size: 19px; }
    .hh-home span { display: none; }
}
