
/* Estilo del banner */
.banner {
    position: relative;
    margin: 0;
    margin-top: 92px;
    width: 100%;
    height: 90vh;
    /* height: 500px; */
    background-image: url('../cobertura-img/img.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Con pseudo elemento  */
.banner::before {
    position: absolute;
    content: "";
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    /* Con atajo inset son las 4 medidas  */
    inset: 0;
    background-color: #00000053;
}

/* Contenedor de partículas */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Texto centrado */
.banner-text {
    position: relative;
    color: #fff;
    font-weight: bold;
    text-shadow: 3px 4px 4px #5C0F8B;
    z-index: 2;
    text-align: center;
    font-size: 4.3rem;
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); */
}

/* RESPONSIVE  */

@media (max-width: 600px) {
    .banner {
        position: relative;
        width: 100%;
        height: 70vh;
        /* height: 500px; */
        background-image: url('../cobertura-img/map4.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .banner-text {
        position: relative;
        color: #fff;
        text-shadow: 2px 3px 2px #5C0F8B;
        z-index: 2;
        text-align: center;
        font-size: 2.6rem;
        /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); */
    }
  }


  @media (max-width: 420px) {
    .banner {
        position: relative;
        width: 100%;
        height: 60vh;
        /* height: 500px; */
        background-image: url('../cobertura-img/mapa5.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .banner-text {
        position: relative;
        color: #fff;
        text-shadow: 2px 3px 2px #5C0F8B;
        z-index: 2;
        text-align: center;
        font-size: 2.4rem;
        /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); */
    }
  }

/* RESPONSIVE  */
#mapa-container {
    padding: 0 20px;
}
#mapa { 
  	height: 600px;
}
.leaflet-control-layers {
    border: 0 !important;
    background: transparent !important;
}
.leaflet-control-layers-toggle {
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 1px 5px rgb(0 0 0 / 40%) !important;
  	background-image: url(../images/capas.png) !important;
}
.leaflet-control-layers-list {
    padding: 0 0.8em 0.8em 0.8em;
    border-radius: 3px;
    background-color: white;
    box-shadow: 0 1px 5px rgb(0 0 0 / 40%) !important;
}
.leaflet-control-layers-overlays input {
    margin-top: 0.8em;
}
.leaflet-control-layers-base input {
    margin-top: 0.8em;
}
.layer-color-circle {
    border-radius: 50%;
    behavior: url(PIE.htc);
    width: 1em;
    height: 1em;
    border: 1px solid #adabaa;
    display: inline-block;
    margin-right: 4px;
}
#layer-garantizada {
    background: #89B972;
}
#layer-no-garantizada {
    background: #F6E5A3;
}
#layer-2g {
    background: #6692B6;
}
#layer-3g {
    background: #64E3EC;
}
#layer-4g {
    background: #6271B0;
}
