/* ===== PAGINACIÓN ===== */

.paginacion {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.paginacion a,
.paginacion span {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.paginacion a {
    background: #ffcb05;
    color: #000;
    transition: background .2s, transform .1s;
}

.paginacion a:hover {
    background: #f2b807;
    transform: translateY(-2px);
}

.paginacion .actual {
    background: #2a75bb;
    color: #fff;
    cursor: default;
}
