.button {
    border-style: none;
    height: 40px;
    padding: 6px 12px;
    background-color: var(--rosa-medio);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.button.blue {
    background-color: var(--azul-medio);
}

.button.red {
    background-color: #ff4949;
}

.button.green {
    background-color: #13ce66;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button.green:hover {
    background-color: #0fa858;
}

.button.red:hover {
    background-color: #e04141;
}

.button.blue:hover {
    background-color: #1a8fd8;
}

@media (max-width: 480px) {
    .button.mobile {
        color: transparent;
        font-size: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        position: fixed;
        top: 90vh;
        left: 80vw;
    }
    .button.mobile::before {
        content: "+";
        color: black;
        font-size: 2rem;
        width: 100%;
        height: 100%;
    }
}