/* ----------------------------
   Formulário de Contacto
----------------------------- */
.wpcf-form {
    max-width: 500px;
    margin: 1em 0;
    font-family: inherit;
    font-size: 14px;
}

.wpcf-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.wpcf-row label {
    width: 100px; /* largura fixa para labels */
    margin-right: 10px;
    text-align: right;
    color: #D8613C;
}

.wpcf-form input,
.wpcf-form textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    flex: 1;
}

.wpcf-form input:focus,
.wpcf-form textarea:focus {
    border-color: #D8613C;
    box-shadow: 0 0 5px rgba(216, 97, 60, 0.5);
    outline: none;
}

.wpcf-form button {
    background-color: #D8613C;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.wpcf-form button:hover {
    background-color: #c75531; /* ligeiro escurecimento ao passar o rato */
}

.wpcf-error,
.wpcf-success {
    font-family: inherit;
    font-size: 12px;
    margin-bottom: 10px;
}

.wpcf-error {
    color: red;
    font-weight: bold;
}

.wpcf-success {
    color: green;
    font-weight: normal;
}

