/* Estilos CSS */
.contact-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000 !important;
    cursor: pointer;
}


.span-contact {
    position: fixed;
    padding: 4px 6px 4px 6px;
    bottom: 55px;
    right: 105px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    cursor: pointer;
}

@media (max-width: 768px) {
    .span-contact {
        bottom: 105px;
        right: 10px;
    }
}

.contact-button i {
    margin-top: 16px;
}

.contact-popup {
    display: none; /* Oculto inicialmente */
    position: fixed;
    bottom: 100px;
    width: 300px;
    right: 40px;
    border: 3px solid #f1f1f1;
    z-index: 1001;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-popup input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-popup button {
    width: 100%;
    padding: 10px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}