
.contact-main-container {
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
font-family: sans-serif;
}
.contact-list {
list-style: none;
padding: 0;
margin: 0;
border-top: 1px solid #e0e0e0;
}
.contact-list li {
display: flex;
align-items: center;
border-bottom: 1px solid #e0e0e0;
font-size: 1.1rem;
transition: background-color 0.2s ease;
}
.contact-list li:hover {
background-color: #f9f9f9;
}
.contact-list a {
display: flex;
align-items: center;
width: 100%;
padding: 20px 10px;
text-decoration: none;
color: inherit;
}
.contact-list .icon { /* CORRIGIDO: Adicionado um espaço para a sintaxe correta */
font-size: 1.5rem;
color: #555;
width: 50px;
text-align: center;
margin-right: 15px;
}
.contact-list .label { /* CORRIGIDO: Adicionado um espaço */
font-weight: bold;
min-width: 100px;
color: #333;
}
.contact-list .info { /* CORRIGIDO: Adicionado um espaço */
color: #666;
}
.feedback-section {
margin-top: 50px;
}
.feedback-section label {
font-weight: bold;
font-size: 1.2rem;
color: #333;
display: block;
margin-bottom: 15px;
}
.feedback-section textarea {
width: 100%;
height: 150px;
border: 1px solid #e0e0e0;
border-radius: 5px;
padding: 15px;
font-size: 1rem;
resize: vertical;
box-sizing: border-box;
}
.feedback-section button {
display: inline-block;
background-color: #000;
color: #fff;
padding: 12px 25px;
border: none;
border-radius: 20px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
margin-top: 15px;
transition: background-color 0.3s ease;
}
.feedback-section button:hover {
background-color: #333;
} /* A CHAVE } FOI MOVIDA PARA CÁ, CORRIGINDO O ERRO */

/* AGORA O RESTO DO CÓDIGO FICA AQUI FORA, NO LUGAR CERTO */
.message {
padding: 15px;
margin-bottom: 10px;
border: 1px solid transparent;
border-radius: 4px;
color: #fff;
text-align: center;
font-weight: bold;
font-family: sans-serif;
}
.message.success {
background-color: #28a745;
border-color: #1e7e34;
}
.message.error {
background-color: #dc3545;
border-color: #b21f2d;
}
.form-field {
margin-bottom: 20px;
}
.form-field label {
display: block;
font-weight: bold;
margin-bottom: 8px;
color: #333;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
box-sizing: border-box;
transition: border-color 0.3s ease;
}
.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field textarea:focus {
border-color: #000;
outline: none;
}
.submit-btn {
width: 100%;
padding: 15px;
background-color: #000;
color: #fff;
border: none;
border-radius: 5px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.submit-btn:hover {
background-color: #333;
}

.btn-submit{
    padding: 12px 24px;
    color: #ffffff; 
    background-color: #333333;
    border: none;  
    border-radius: 8px; 
    font-size: 1rem; 
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #555555;
}

.contact-list{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #fdfdfd;
    color: #333;
}
