/* Contato Styles */
.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.formulario-container, .info-contato {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h2 {
    color: #064233;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #064233;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.campo-form {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #0a5c42;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #064233;
}

textarea {
    resize: vertical;
}

.campo-form:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.botoes-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enviar {
    background: #064233;
    color: white;
    flex: 1;
}

.btn-enviar:hover {
    background: #043728;
    transform: translateY(-2px);
}

.btn-limpar {
    background: #0a5c42;
    color: white;
    flex: 1;
}

.btn-limpar:hover {
    background: #064233;
    transform: translateY(-2px);
}

.canal-contato {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #e8f0ec;
    border-radius: 10px;
    transition: transform 0.3s;
}

.canal-contato:hover {
    transform: translateX(5px);
}

.canal-contato h3 {
    color: #064233;
    margin-bottom: 0.5rem;
}

.canal-contato p {
    color: #2d5a4a;
    margin: 0.3rem 0;
}

.horario-atendimento {
    background: linear-gradient(135deg, #064233, #043728);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.horario-atendimento h3 {
    color: white;
    margin-bottom: 1rem;
}

.horario-atendimento p {
    color: rgba(255,255,255,0.9);
    margin: 0.5rem 0;
}

@media (max-width: 968px) {
    .contato-container {
        grid-template-columns: 1fr;
    }
    
    .botoes-form {
        flex-direction: column;
    }
    
    button {
        width: 100%;
    }
}