.paginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pagina-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #0A1A44;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(10, 26, 68, 0.06);
}

.pagina-btn:hover {
    background: #f0f4ff;
    border-color: #3B5BDB;
    color: #3B5BDB;
    box-shadow: 0 4px 12px rgba(59, 91, 219, 0.15);
    transform: translateY(-2px);
}

.pagina-btn:first-child,
.pagina-btn:last-child {
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 14px;
}

.pagina-btn.activa {
    background: #0A1A44;
    border-color: #0A1A44;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(10, 26, 68, 0.3);
    cursor: default;
    pointer-events: none;
}
