.botton_pri {
    background: linear-gradient(90deg, #009de0, #006c9b);
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s;
}

.botton_pri:hover {
    filter: brightness(1.1);
}



.botton_sec {
    background-color: #ccc; /* gris claro */
    color: #333; 
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.botton_sec:hover {
    background-color: #aaa; /* hover más oscuro */
}
