/*
 * pages/contact.css
 * =================
 * Migrado em: 2026-02-10
 */

.contact-map {
    width: 100%;
    height: 400px;
    margin-top: 0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-section {
    padding: 60px 0;
    background-color: var(--bg-light, #f8f9fa);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header .sub-headline {
    color: var(--secondary-color, #023e8a);
}

.contact-header h1 {
    font-size: 2.2rem;
}

.contact-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color, #0077b6);
    margin: 15px auto;
}

.contact-desc {
    max-width: 600px;
    margin: 10px auto 0;
    color: #777;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-col {
    flex: 1;
    min-width: 300px;
}

.contact-form-col {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-msg-box {
    display: none;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 20px;
}