.container-movile {
    display: none;
    flex-direction: column;
    width: 90%;
    height: auto;
    margin: 0 auto;
}

.container-movile button {
    background-color: #40041c;
    color: #fbf0d8;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #fbf0d8;
    min-height: 40px;
    width: 100%;
    margin: 5px 0;
    padding: 1.5rem 1rem;
    border-radius: 10px;
}

.container-movile button:focus { 
    background-color: #550525;
}

.container-mapa {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    width: 80%;
    height: auto;
}

.container-mapa .mapa {
    width: 100%;
    height: auto;
}

.container-mapa .content-btns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.container-mapa .content-btns .dot { 
    position: absolute;
    width: 3vw;
    height: 3vw;
    border-radius: 100%;
    cursor: pointer;
}

#DotMapa1 { top: -0.5%; left: 5.5%; }
#DotMapa2 { top: 6.2%; left: 54.5%;}
#DotMapa3 { top: 31%; left: 73%;}
#DotMapa4 { top: 78%; left: 0%;}
#DotMapa5 { top: 87%; left: 58%;}

.modal-map {
    position: fixed;
    top: 200vh;
    opacity: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.6s all;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

.modal-map.active {
    top: 0;
    opacity: 1;
}

.btn-close-modal { 
    position: absolute;
    top: 20px;
    right: 30px;
    color: #000;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.card-map{
    position: relative;
    padding: 3rem 1rem 2rem;
    width: 70vw;
    height: auto;
    background-size: contain;
    margin: auto;
}

.card-bg { 
    background-image: url("/sites/default/files/2025-12/ico03.png"), url(https://idartesencasa.gov.co/sites/default/files/2025-12/fondo01.jpg) ; 
    background-position-x: left, center;
    background-size: 25% auto, cover;
    background-position-y: bottom, center;
    background-repeat:no-repeat
    
}


.card-map-body{
    position: relative;
    left: 10%;
    width: 80%;
    border-radius: 2vw;
    box-sizing: border-box;
    color: rgb(33, 37, 41);
}

.card-map-body h4{ 
    padding: 0;
    margin: 0 0 1.5rem;
    text-align:center
}

.card-map-body a{
	    color: var(--rojo2);
}

.danzing{
    position: absolute;
    width: 50%;
    bottom: 2%;
    right: 0%;
}

.pulse {
    animation: pulse-animation 2s infinite;
}



@media (max-width: 768px) and (orientation: portrait) {

    .container-movile {
        display: flex;
    }

    .container-mapa{
        display: none;
    }

    .btn-close-modal { 
        top: 20px;
        right: 20px;
    }

    
    .card-map{ 
        width: 94vw;
    }

    .card-map-body {
        padding: 4vw;
        left: 0%;
        width: 100%;
        z-index: 1;
    } 

}


@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}