.contact-section {
    display: flex;
    min-height: 100vh;
    background-color: var(--color-green); 
    color: white;
    position: relative;
}

.contact-form-side {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-map {
    flex: 1;
    position: relative;
    min-height: 600px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #222;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 0.5s ease;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) opacity(0.5);
    transition: opacity 0.5s ease;
}

.map-placeholder:hover iframe {
    opacity: 1;
}

.map-info-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.map-info-card:hover {
    transform: translateY(-5px);
}

.map-info-card svg {
    flex-shrink: 0;
}

.map-info-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-gold-light);
}

.map-info-card p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.map-info-card small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 5px;
}

.form-wrapper { width: 100%; max-width: 500px; }

.form-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.form-row { display: flex; gap: 45px; }

.minimal-form .input-group { margin-bottom: 25px; flex: 1; }

.minimal-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.minimal-form input, .minimal-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-family: var(--font-body);
    box-sizing: border-box;
    appearance: none; 
    -webkit-appearance: none;
}

.minimal-form textarea { height: 120px; resize: none; }

.minimal-form .btn-submit {
    width: 100%;
    background-color: var(--color-gold-light); 
    color: var(--color-green);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    box-sizing: border-box;
    appearance: none; 
    -webkit-appearance: none;
}

.btn-submit:hover { transform: scale(1.02); }

.contact-info-side {
    flex: 1;
    position: relative;
    background-color: #333;
}

.map-bg { width: 100%; height: 100%; }

.map-bg iframe {
    filter: grayscale(1) invert(0.9) opacity(0.5); 
}

.map-overlay-info {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item i { font-size: 1.8rem; color: white; }

.info-item strong { display: block; font-size: 1.1rem; margin-bottom: 5px; }

.info-item p { opacity: 0.8; line-height: 1.5; }

.main-footer {
    background-color: var(--color-green);
    padding: 40px 8%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    display: flex;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-logo { font-family: var(--font-heading); font-size: 1.2rem; color: white; letter-spacing: 2px; }

.footer-social { display: flex; gap: 20px; font-size: 1.3rem; }

@media (max-width: 992px) {
    .contact-section { flex-direction: column; }
    .map-overlay-info { position: relative; top: 0; left: 0; transform: none; padding: 40px 8%; }
    .contact-map { min-height: 400px; }
    .map-info-card { max-width: 100%; }
    .form-row { flex-direction: column; gap: 0; }
}
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
    .form-wrapper {
        width: 70%;
        max-width: 500px;
    }
}



.section-divider-contato {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-100%) rotate(180deg);
    z-index: 10;
}
.section-divider-contato svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80%;
}

.section-divider-contato .wave-path {
    fill: var(--color-green);
}