.contato-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contato-info {
    flex: 1;
    min-width: 300px;
}

.contato-form {
    flex: 1;
    min-width: 300px;
}

.contato-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contato-email, .contato-telefones, .contato-redes {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contato-email h3, .contato-telefones h3, .contato-redes h3 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contato-email h3 i, .contato-telefones h3 i, .contato-redes h3 i {
    margin-right: 0.5rem;
}

.email-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.email-link:hover {
    color: #e64800;
    text-decoration: underline;
}

.telefones-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telefones-lista li {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.telefones-lista li span {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.telefone-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

.telefone-link:hover {
    color: #e64800;
    text-decoration: underline;
}

.redes-sociais {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.rede-social {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.rede-social i {
    font-size: 1.8rem;
    margin-right: 0.8rem;
    color: var(--primary-color);
}

.rede-social.instagram i {
    color: #C13584;
}

.rede-social:hover {
    color: var(--primary-color);
}

.rede-social.instagram:hover i {
    color: #E1306C;
}

/* Formulário de Contato */
.contato-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contato-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .contato-content {
        flex-direction: column;
    }
    
    .contato-info, .contato-form {
        width: 100%;
    }
    
    .telefones-lista li {
        margin-bottom: 1.5rem;
    }
}
