.container-contato {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.contato-wrapper {
    display: flex;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contato-info { flex: 1; }
.contato-form { flex: 1.5; }

.campo { margin-bottom: 20px; }
.campo label { display: block; margin-bottom: 8px; font-weight: bold; color: #333; }
.campo input, .campo select, .campo textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.btn-enviar {
    background: #25D366; /* Cor do WhatsApp */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-enviar:hover { background: #128C7E; }

@media (max-width: 768px) {
    .contato-wrapper { flex-direction: column; padding: 20px; }
}