<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* 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  */</pre></body></html>