.floating_btn {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

.contact_icon .text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}

div#popup-form h2 {
    font-size: 1.2rem;
    font-weight: 700;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.amo-button-holder{
    display:none!important;
}

.popup {
    position: fixed;
    bottom: 20px;
    right: -400px; 
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    transition: right 0.5s ease; 
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.popup.show {
    right: 20px;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form select,
#contact-form button {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
}

#contact-form button {
    background-color: #25d366;
    color: white;
    border: none;
    cursor: pointer;
    transition: .3s;
}

#contact-form h2{
    text-align: center
}

#contact-form label{
    font-size: .9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

#contact-form button{
    font-weight: 600;
}

#contact-form button:hover {
    background-color: #128c7e;
}

#contact-form select{
    background: #fff;
}

/* Estilo específico para o select de DDI */
#ddi {
    background-color: #f8f9fa;
    font-size: 0.85rem;
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
    .popup {
        width: 280px;
        right: -300px;
        padding: 15px;
    }
    
    .popup.show {
        right: 10px;
    }
    
    #contact-form h2 {
        font-size: 1.1rem;
    }
    
    #contact-form input,
    #contact-form select,
    #contact-form button {
        font-size: 0.85rem;
        padding: 8px;
    }
}