/* Estilos para a página de contato */
.contato-form {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #4b0082; /* Borda roxo escuro */
}
.contato-form input,
.contato-form textarea {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}
.contato-form button {
    background: #f833ac;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}
.contato-form button:hover {
    background: #c0267a;
}