/* ========== BOTONES ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* <-- centrado horizontal */
    gap: 0.5rem;
    background-color: var(--color-primario);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 0.4rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none; /* opcional */
}

.btn-primary:hover {
    transform: translateY(-2px);
}

