/* Estilos para os modais */
.ece-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.ece-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    position: relative;
}

.ece-close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.ece-close-modal:hover {
    color: #000;
}

/* Estilos para os formulários */
.ece-contact-form {
    margin-top: 20px;
}

.ece-contact-form .form-group {
    margin-bottom: 15px;
}

.ece-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.ece-contact-form input,
.ece-contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.ece-contact-form textarea {
    height: 100px;
    resize: vertical;
}

.ece-submit-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.ece-submit-button:hover {
    background-color: #0056b3;
}

/* Estilos para o chat */
.ece-chat-redirect {
    text-align: center;
    padding: 20px;
}

.ece-chat-redirect p {
    margin-bottom: 20px;
}

.ece-chat-embed {
    width: 100%;
    height: 500px;
    border: none;
}

/* Novos estilos adicionados */
.ece-contact-buttons-container {}

.ece-contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
}

.ece-contact-button {
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    background-color: #ddd;
    color: #555;
}

.ece-contact-button:hover {
    background-color: #eee;
    border: 1px solid #ccc;
}

.ece-contact-button i {
    font-size: 1.2em;
}

.ece-whatsapp-direct-button {
    font-size: 1.2em;
    background: #25D366;
    color: white;
    border: 1px solid #37b666;
    padding: 1.3em;
}

.ece-whatsapp-direct-button i {
    font-size: 1.8em;
}

.ece-whatsapp-direct-button:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}


.ece-contact-form-link {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #555;
}

.ece-form-text {
    margin: 0;
}

.ece-open-form-button {
    display: inline-block;
    color: #2196F3;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ece-open-form-button:hover {
    color: #126cb5;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .ece-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .ece-contact-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}