.seccion_parrafo {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    .parrafo {
        width: 50%;
        max-width: 1200px;
        height: auto;
        min-width: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-family: "Montserrat", sans-serif;
        padding: 50px 0;
        line-height: 1.5em;

        .parrafo_tittle {
            font-size: 1.2em;
            letter-spacing: .25em;
            font-weight: 600;
            color: var(--blanco);
        }
        .parrafo_description {
            font-size: 1em;
            font-weight: 400;
            color: var(--gris_claro);
            text-align: justify;
        }
    }

}

.aviso_legal {
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    z-index: 999;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    .parrafo_legal {
        width: 80%;
        max-width: 1200px;
        min-width: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-family: "Montserrat", sans-serif;
        padding: 50px 0;
        line-height: 1.5em;

        .tittle_legal {
            font-size: 3.2em;
            font-weight: 600;
            padding-bottom: 20px;
        }
        .subtittle_legal {
            font-size: 1.8em;
            font-weight: 600;
            padding-bottom: 20px;
        }
        .description_legal {
            font-size: 1em;
            font-weight: 400;
            color: var(--gris_claro);
            text-align: justify;
        }
    }

}




