#modulo-alerta-2   {
    padding: 90px 0;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 400px;
    margin: 20px 0;
}

#modulo-alerta-2  .contenedor-titulo-form{
    display: flex;
    background-color: #FFFFFF;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    background: none;
}

#modulo-alerta-2   video {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    object-position: center center;
    object-fit: cover;
    width: 100%;
    height: 250px;
    z-index: 0;
    -webkit-transform: translateZ(0);
}

#modulo-alerta-2   .titulo {
    font-size: 38px;
    line-height: 1.2em;
    z-index: 1;
    font-weight: bold;
    padding-bottom: 20px;
    padding-left: 40%;
    filter: drop-shadow(0px 4px 6px #000000);
}

#modulo-alerta-2   .mensaje {
    font-size: 26px;
    line-height: 1.2em;
    z-index: 1;
    text-align: center;
    width: 90%;
    margin-bottom: 15px;
    font-weight: 700;
    filter: drop-shadow(0px 4px 6px #000000);
}

#modulo-alerta-2   .mensajeFijo {
    font-size: 1.3em;
    line-height: 1.1em;
    z-index: 1;
    width: 100%;
    margin-bottom: 15px;
    font-style: italic;
}

#modulo-alerta-2   .parte-izq {
    width: 50%;
    z-index: 1;
}

#modulo-alerta-2   .parte-der {
    width: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modulo-alerta-2  .der-mensaje-btn{
    width: 60%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255,255,255,0.6);
    border-radius: 8px;
    box-shadow: 0 2px 2px #C8C8C8;
}

#modulo-alerta-2  .contenedor-titulo-form .parte-der button{
    background-color: #F6F6F6;
    color: var(--color1);
    border: none;
    margin-bottom: 10px;
    box-shadow: 0 1.91772px 0.639241px -1.27848px rgba(0, 0, 0, 0.2), 0 1.27848px 1.27848px rgba(0, 0, 0, 0.14), 0 0.639241px 3.1962px rgba(0, 0, 0, 0.12);
    width: 90%;
    padding: 10px;
}

#modulo-alerta-2   .botonValorar {
    width: 100%;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    display: inline-block;
    color: black;
}

#modulo-alerta-2   .botonValorar:hover {
    filter: brightness(140%);
}

@media only screen and (max-width: 1024px){
    #modulo-alerta-2   .titulo{
        font-size: 3em;
    }
    #modulo-alerta-2  .der-mensaje-btn{
        width: 90%;
    }

    #modulo-alerta-2   .mensaje{
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 800px){
    #modulo-alerta-2   .titulo{
        font-size: 2em;
    }
    #modulo-alerta-2   .mensaje{
        font-size: 1em;
    }
}

@media (max-width: 600px) {
    #modulo-alerta-2   video {
        width: auto;
        min-height: 100%;
    }

    #modulo-alerta-2   .parte-der, #modulo-alerta-2   .parte-izq {
        width: 100%;
    }

    #modulo-alerta-2   .titulo {
        padding-bottom: 50px;
        font-size: 3em;
    }
}

@media only screen and (max-width: 480px){
    #modulo-alerta-2  .contenedor-titulo-form{
        flex-direction: column;
    }

    #modulo-alerta-2   .titulo{
        font-size: 1.5em;
        margin-left: -15%;
        width: 100%;
    }

    #modulo-alerta-2  .der-mensaje-btn{
        padding: 5px;
    }
}