/**
 * Plugin Apoio19 Contato Mapa - Stylesheet
 */

.apoio19-contato-mapa__container {
    position: relative;
    width: 100%;
    background-color: #08080a;
    box-sizing: border-box;
    padding: 60px 40px 60px 60px;
    font-family: inherit;
    overflow: hidden;
}

.apoio19-contato-mapa__container * {
    box-sizing: border-box;
}

.apoio19-contato-mapa__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
}

/* COLUNA ESQUERDA: TÍTULO CONTORNO E CONTATOS (Z-INDEX AUMENTADO) */
.apoio19-contato-mapa__left-side {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

/* Título em Contorno Transparente Apenas com Borda (Outline) */
.apoio19-contato-mapa__outline-title {
    font-size: 5.5rem;
    font-weight: 900;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.25);
    text-stroke-width: 1.5px;
    text-stroke-color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 45px 0;
    line-height: 1;
}

/* Lista de Blocos de Contato */
.apoio19-contato-mapa__contact-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.apoio19-contato-mapa__item-heading {
    color: #ff5500;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
}

.apoio19-contato-mapa__item-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.45;
    margin: 0;
    font-weight: 400;
}

.apoio19-contato-mapa__item-text a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.apoio19-contato-mapa__item-text a:hover {
    color: #ff5500;
}

/* COLUNA DIREITA: GLOBO 3D INTERATIVO */
.apoio19-contato-mapa__right-side {
    flex: 0 0 55%;
    max-width: 55%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.apoio19-contato-mapa__globe-container {
    width: 100%;
    height: 580px;
    position: relative;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apoio19-contato-mapa__globe-container:active {
    cursor: grabbing;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .apoio19-contato-mapa__wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .apoio19-contato-mapa__left-side {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .apoio19-contato-mapa__right-side {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .apoio19-contato-mapa__outline-title {
        font-size: 4rem;
        margin-bottom: 30px;
    }
    .apoio19-contato-mapa__globe-container {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .apoio19-contato-mapa__container {
        padding: 40px 20px;
    }
    .apoio19-contato-mapa__outline-title {
        font-size: 2.8rem;
    }
    .apoio19-contato-mapa__item-heading {
        font-size: 1.1rem;
    }
    .apoio19-contato-mapa__globe-container {
        height: 380px;
    }
}
