body {
    font-family: Arial, sans-serif;
}

.box-whats {
    width: auto;
    height: auto;
    position: fixed;
    z-index: 9998;
    bottom: 20px;
    right: 20px;
    display: block;
}

.box-whats img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.box-whats img:hover {
    transform: scale(1.1);
}

/*
#whatsBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}
*/

#formPopup.form-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ddd;
    z-index: 10001;
    background-color: white;
    width: 600px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 25px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.form-container {
    max-width: 100%;
    padding: 10px;
    background-color: white;
}

#formPopup .form-container h2 {
    margin-bottom: 0px;
}

.form-container input[type=text],
.form-container input[type=tel],
.form-container input[type=email] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 5px 0;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.form-container .btn {
    background-color: #fd8a23;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
    opacity: 0.8;
}

.form-container .cancel {
    background-color: red;
}

.form-container .btn:hover {
    opacity: 1;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    #formPopup.form-popup {
        width: 95%;
    }
}