.btn-gradient {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(to top, #4669e2 0%, #5a7df5 100%);
    border: 1px solid white;
    color: white;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    background: linear-gradient(to top, #3a5bd9 0%, #4e6cec 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-gradient:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Efecto opcional de brillo al pasar el mouse */
.btn-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
                rgba(255, 255, 255, 0.2) 0%, 
                rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-gradient:hover::after {
    opacity: 1;
}