#wff-whatsapp-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.3); */
    z-index: 9999;
    transition: background-color 0.3s ease;
}

#wff-whatsapp-button:hover {
    background-color: #019788;
}

#wff-whatsapp-button svg {
    display: block;
    margin: auto;
}

#wff-form-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    font-family: Arial, sans-serif;
}

#wff-form-header {
    background: #019788; /* Cor do Header ajustada */
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px 10px 0 0;
}

.wff-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    flex-shrink: 0;
}

.wff-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wff-header-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
}

.wff-header-subtitle {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
    line-height: 1.2;
}

#wff-form {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#wff-form input, #wff-form textarea {
    border: none;
    padding: 15px;
    border-radius: 20px;
    background: #f5f5f5;
    outline: none;
    font-size: 15px; /* Mantido em 15px */
}

#wff-form textarea {
    resize: none;
    height: 60px;
}

/* Container para campo de telefone com bandeira */
.wff-phone-container {
    position: relative;
}

.wff-phone-container input[type="tel"] {
    padding-left: 45px !important; /* Espaço para a bandeira à esquerda */
}

.wff-country-flag {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
}

#wff-form button {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease; /* Adicionado para transição suave */
}

#wff-form button:hover {
    background-color: #019788; /* Cor de hover do botão ajustada */
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    #wff-form-container {
        width: 95%;
        max-width: none;
    }
    
    #wff-form {
        padding: 15px;
    }
    
    #wff-form input, #wff-form textarea {
        font-size: 14px; /* Ajustado para mobile */
        padding: 15px;
    }
    
    .wff-header-icon {
        width: 35px;
        height: 35px;
    }
}

/* Overlay para fechar o formulário */
#wff-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

