/* css/contato.css */

/* Classe para ocultar elementos */
.hidden {
    display: none !important;
}

/* Estilos para a seção de contato inicial */
#contato-info-wrapper {
    text-align: center;
    transition: opacity 0.5s ease;
}

#show-form-btn {
    margin-top: 20px;
}

/* Estilos para o formulário */
#contato-form-wrapper {
    background-color: var(--cor-surface);
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--sombra-card);
}

#contato-form-wrapper h2 {
    text-align: center;
    margin-top: 0;
}

#orcamento-form .form-group {
    margin-bottom: 15px;
}

#orcamento-form input,
#orcamento-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--cor-borda);
    border-radius: 5px;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    box-sizing: border-box;
}

#orcamento-form button {
    margin-right: 10px;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover {
    background-color: #5a6268;
}

/* Estilos para a mensagem de sucesso */
#success-message-wrapper {
    text-align: center;
    padding: 40px;
}

.success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-content h2 {
    margin-bottom: 10px;
}
