.container-cobertura {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 50px;
    gap: 50px;
    min-height: 1000px;
}

.container-cobertura .container-presentacion-seccion {
    /* background-image: url("../img/pexels-shottrotter-566061.webp"); */
    background-image: url("../img/convoy.jpeg");
}

.container-presentacion-seccion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Centrar verticalmente */
    align-items: center;
    /* Centrar horizontalmente */
    color: white;
    gap: 30px;
    width: 100%;
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container-presentacion-seccion p {
    max-width: 572px;
}


.txt-cobertura {
    display: flex;
    /* Activar flexbox */
    flex-direction: column;
    /* Alinear los elementos en columna */
    justify-content: center;
    /* Centrar verticalmente */
    align-items: center;
    /* Centrar horizontalmente */
    text-align: center;
    max-width: 850px;
    min-height: 180px;
    padding: 20px;
    color: #002b5c;
}

.txt-cobertura a {
    color: #002b5c;
}

.txt-cobertura h2 {
    width: 100%;
}

.txt-cobertura p {

    width: 85%;
    max-width: 720px;
    margin-top:15px;
}

.container-cobertura-inf-mapa {
    background-color: #ffffff;
    display: flex;
    padding: 30px;
    width: 90%;
    max-width: 1200px;
    height: 700px;
    border-radius: 25px;
    gap: 40px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}

.menu-cobertura {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 320px;
    gap: 20px;
    height: 100%;
    color: #002b5c;
}

.container-selector-estado {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    min-height: 100px;
}

.container-selector-estado label {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.container-selector-estado select {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    color: #002b5c;
}

.container-selector-estado select:hover {
    filter: brightness(0.9);
}

.container-destinos {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: whitesmoke;
    overflow-y: auto;
}

.container-destinos p {
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 10px;
}


.container-inf-cobertura {
    width: 80%;
    height: 100%;
    overflow: hidden;
}

#map {
    height: 100%;
    /* Ajusta el tamaño del mapa */
    width: 100%;
    border-radius: 10px;
    z-index: 0;
}

.div-txt-resultados {
    display: flex;
    /* Activar flexbox */
    flex-direction: column;
    /* Alinear los elementos en columna */
    justify-content: center;
    /* Centrar verticalmente */
    width: 100%;
    height: 30px;
}


@media screen and (max-width:600px) {

    .container-cobertura-inf-mapa {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .container-selector-estado label {
        margin-bottom: 10px;
    }

    .menu-cobertura {
        width: 100%;
        min-height: 200px;
        gap: 0px;
    }

    .container-inf-cobertura {
        width: 100%;
        max-height: 400px;
    }

}
