/* Contato */
.contato-page {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
}

.contato-page h1 {
    text-align: center;
    margin-bottom: 30px;
}

.contato-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.contato-form button {
    display: inline-block;
    background: #F09F53;
    color: #fff;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.contato-form button:hover {
    background: #e65c00;
}

.contato-sucesso {
    background: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.contato-erro {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}