/* buttons style */
.btn {
    width: 250px;
    height: 70px;
    background-color: var(--main-background-lo);
    backdrop-filter: blur(1px);
    border: 4.5px solid var(--main-red);
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 800;
    color: var(--main-red);
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s;
}

.btn:hover {
    color: var(--main-white);
    background-color: var(--main-red);
}

.btn.style2 {
    width: 407px;
    border: none;
    text-transform: none;
    background: linear-gradient(45deg, var(--main-red), var(--second-red));
    color: var(--main-white);
}

.btn-whats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 250px;
    height: 70px;
    text-transform: none;
    border-radius: 60px;
    font-family: 'Montserrat', sans-serif;
    color: var(--main-white);
    background: linear-gradient(45deg, var(--main-green), var(--second-green));
    border: 4px solid var(--main-white);
    transition: 0.4s;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
}

.btn-whats i {
    font-size: 35px;
}

.btn-whats:hover,
.btn.style2:hover {
    scale: 1.05;
}

.btnForm {
    width: 100%;
    height: 70px;
    background-color: transparent;
    border-radius: 5px;
    border: 4px solid var(--second-gray);
    color: var(--second-gray);
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 25px;
    transition: 0.3s;
}

.btnForm:hover {
    background-color: var(--second-gray);
    color: var(--main-white);
}

@media (max-width: 980px) {
    .btn.style2 {
        width: 100%;
        font-size: 20px;
    }

    .btn-whats {
        width: 210px;
        height: 60px;
        font-size: 18px;
    }
}