/* ================================
   CONTATO – WR CONSTRUTORA
================================ */

.contato-section {
    padding: 60px 0;
}

.contato-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ---------- COLUNA ESQUERDA ---------- */
.contato-info {
    flex: 1 1 350px;
}

.contato-info h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contato-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.contato-list i {
    color: #c5a253; /* dourado WR */
    font-size: 1.2rem;
    margin-right: 8px;
}

/* ---------- FORMULÁRIO ---------- */
.contato-form-box {
    flex: 1 1 450px;
}

.contato-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contato-form .form-label,
.contato-form label {
    font-weight: 600;
    margin-bottom: 5px;
}

.contato-form .form-control,
.contato-form select,
.contato-form textarea,
.contato-form input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.contato-form textarea {
    resize: none;
}

/* ---------- BOTÃO ---------- */
.btn-contato,
.contato-form button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.btn-contato:hover {
    background: #333;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
    }

    .contato-form {
        margin-top: 20px;
    }
}
