/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 18 2026 | 17:09:54 */
.coluna-mapa-livre,
.coluna-mapa-livre .et_pb_code_inner,
.coluna-mapa-livre .et_pb_module {
    overflow: visible !important;
    position: relative !important;
    z-index: 10 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&display=swap');

.map-wrapper {
    position: relative;
    border-radius: 15px;
    min-height: 380px;
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-top: 60px;
    margin-left: 280px;
    margin-right: 0;
    width: auto;
}

.map-wrapper .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 15px;
}

.map-wrapper .map-container {
    position: absolute;
    top: 0;
    left: -260px;
    z-index: 2;
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
}

.map-wrapper .mapa {
    height: 100%;
    width: auto;
    filter: drop-shadow(15px 20px 30px rgba(0,0,0,0.5));
}

.map-wrapper .content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 30px 40px 30px 0;
    box-sizing: border-box;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.map-wrapper h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-top: 0; 
	margin-right: 1rem;
}

.map-wrapper h2 span.highlight {
    color: #00BF9F;
    border-bottom: none;
}

.map-wrapper .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 10px;
    width: 100%;
}

.map-wrapper .logo {
    width: 60%;
    height: auto;
}

.map-wrapper p {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 320px;
    text-align: justify;
    margin-right: 0;
    color: #000000;
    margin: 1rem;
}

@media (max-width: 980px) {
    .map-wrapper {
        margin: 40px 20px !important;
        min-height: auto;
        padding-bottom: 30px;
    }
    
    .map-wrapper .map-container {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        margin-bottom: -40px;
        transform: none;
        display: block;
    }

    .map-wrapper .mapa {
        width: 100%;
        height: auto;
    }
    
    .map-wrapper .content {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
        align-items: center;
    }
    
    .map-wrapper .footer-content {
        align-items: center;
    }
    
    .map-wrapper p {
        text-align: center;
        max-width: 100%;
    }
}