.principal {
    background-image: url('../src/images/footer/giphy.gif');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

.blur {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    -webkit-backdrop-filter: blur(150px) saturate(500%) brightness(40%) contrast(80%);
    backdrop-filter: blur(150px) saturate(500%) brightness(40%) contrast(80%);
}

.container {
    height: 50vw;
    max-height: 80vh;
    width: 80vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-radius: 30px;
    border-radius: 30px;
    background: rgba(48, 48, 48, 0.60);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.texto{
    max-width: 50%;
    height: 85%;
    margin-left: 6%;
    color: #FFF;
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 110.319%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.texto h1{
    color: #FFF;
    font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 6vw;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    word-wrap: normal;
}

.texto p{
    font-size: 1.4vw;
    margin-top: 6%;
    line-height: normal;
}

.colaboradores {
    width: 30%;
    height: auto;
    background-color: #9271EE;
    border-radius: 30px;
    margin-left: 9%;
    flex-shrink: 0;
    filter: drop-shadow(0px 20px 55.599998474121094px rgba(0, 0, 0, 0.51));
}

span{
    font-weight: bold;
    text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.1);
}

@media(max-width: 700px){
    .texto h1{
        font-size: 6vw;
        text-align: center;
    }

    .texto p{
        font-size: 0.9rem;
        text-align: center;
    }

    .container{
        height: 0;
        width: 60vw;
        max-height: auto;
        flex-direction: column;
        position: absolute;
        max-height: 80vh;
        height: max-content;
    }

    .texto {
        margin: 30px;
    }

    .colaboradores{
        width: 30vw;
        height: auto;
        margin-left: 0;
        margin-bottom: 10%;
    }
}