/* ============================
   CATEGORÍAS VERTICALES AMIGABLES
   ============================ */

.categoria-barra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 18px;
    background: var(--color-primario);
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
    transition: transform 0.15s ease;
}

.categoria-barra:hover {
    transform: translateY(-2px);
}

.categoria-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.categoria-thumb img {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.categoria-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.categoria-nombre {
    flex: 1;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.categoria-ir {
    font-size: 1.4rem;
    opacity: 0.8;
    margin-left: 8px;
}
