/* Seção de Contato */
.contact-section {
    padding: 4rem 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Informações de Contato */
.contact-info {
    padding: 1rem;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.contact-item i {
    color: #ff7b00;
    font-size: 1.5rem;
    width: 30px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-weight: bold;
    color: #666;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff7b00;
}

/* Redes Sociais */
.social-media {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    color: #ff7b00;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    color: #e67e22;
    transform: translateY(-3px);
}

/* Mapa */
.map-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Formulário de Contato */
.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff7b00;
    outline: none;
}

.form-submit {
    background-color: #ff7b00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #e67e22;
}