
/* ===========================================
PARA BOTONES DE IR PAGINA, IR ADMINISTRADOR DE PAGINA
==============================================*/
.modern-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #986CE3FF 0%, #670C59FF 100%);
    color: white;670C59FF
    text-decoration: none;
    border-radius: 16px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.modern-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    color: white;
}

.modern-button:hover::before {
    left: 100%;
}

.modern-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(185, 126, 234, 0.6);
    color:white;
}

.modern-button:active {
    transform: translateY(0px);
}

.modern-button .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}



