#map {
    height: 100vh;
}

.leaflet-popup-content {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 13px;
}

.leaflet-popup-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

.popup-title {
    text-transform:uppercase;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.popup-info {
    font-size: 13px;
}

.popup-info_Pantallas {
    font-weight: bold;
}

#info-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    /* Esto pone los elementos en columnas (uno abajo del otro) */
    align-items: center;
    z-index: 1000;

    background-image: url('../img/fondo-medio-publicidad.jpg');
    /* Cambia esta URL */
    background-size: cover;
    /* Ajusta la imagen al tamaño del box */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
    /* Evita que la imagen se repita */
}

.titulo {
    font-size: 40px;
    color: #ffffff;
    margin: 0;
    font-family: Arial, sans-serif;
    margin-top: 10px;
    text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.3);
}

.subTitulo {
    font-size: 30px;
    color: #ffffff;
    margin: 0;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.3);
}

#info-box-bottom-left {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 1);
    /* Fondo blanco con transparencia */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    /* Ajusta el ancho según necesites */

}

.info-titulo {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    /* Sombra para resaltar el texto */
}

.subTitulo_2 {
    font-size: 30px;
    color: #fe9a02;
    margin: 0;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgb(0, 0, 0, 0.1);
}


/* Celulares */

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

    #info-box {
        background-color: #fe9a02;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
        width: 90%;
        max-width: 300px;
        padding: 10px;
        text-align: center;
    }

    #info-box-bottom-left {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        width: 90%;
        max-width: 300px;
        padding: 10px;
        text-align: center;
    }

    .titulo,
    .info-titulo {
        font-size: 20px;
        /* Reduce el tamaño del título */
    }

    .subTitulo,
    .subTitulo_2 {
        font-size: 15px;
        /* Reduce el tamaño del texto de información */
    }
}




/* Código para ocultar la marca de agua, pero no es recomendado.

 .leaflet-control-attribution {
     display: none !important;
 }

*/