@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;800&display=swap');

:root {
    --principal: #148BB3;
    --secundaria: #54AECC;
    --background: #2A4058;
    --backgroundHeader: #333333;
    --backgroundHeaderSecundaria: #2c2c2c;
    --backgroundHover: #666666;
    --letra: #ffffff;
    --letraEscura: #000000;
}
body{
    background-color: #fcfcfc;
}



/* TELA PRINCIPAL */
.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;
    height: 100vh;
    -webkit-backdrop-filter: blur(150px) saturate(500%) brightness(40%) contrast(80%);
    backdrop-filter: blur(150px) saturate(500%) brightness(40%) contrast(80%);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.titulo {
    transition: all 0.3s;
    font-weight: bold;
    font-size: 80px;
    text-align: center;
}

.paragrafoPrincipal {
    font-size: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.575);
    padding: 30px 0px;
    text-align: center;
    margin-bottom: 30vh;
}


.flecha{
    transition: all 0.3s;
    width: 60px;
    margin-bottom: 4vh;
}
.flecha:hover {
    transition: all 0.3s;
    text-shadow: 8px 8px 0px rgba(0, 0, 0, 0.575);
    transform: scale(1.05);
}

/* FINAL TELA PRINCIPAL */



/* CONTEÚDO */
.divConteudo{
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.txtINTRODUCAO{
    width: 50%;
    text-align: center;
    font-size: 1.1vw;
    line-height: 140%;
}

.tituloBRANCO{
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 2vw;
}

.tituloROXO{
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 2vw;
    color: white;
}

.conteudoRoxo{
    width: 100%;
    padding: 100px 0;
    background-color: #6248FF;
    color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.conteudoRoxo p{
    color: white;
}

.conteudoBranco{
    width: 100%;
    padding: 90px 0;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}


p {
    margin: 15px 0px 10px 0px;
    text-align: center;
    font-size: 1.3vw;
}

span{
    font-weight: bold;
}

#imagens {
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    margin: 40px auto;
    border-radius: 10px;
    height: auto;
    width: 80%;

    border-radius: 33px;
    background: url(<path-to-image>), lightgray 50% / cover no-repeat;
    box-shadow: 0px 10px 17.5px 0px rgba(0, 0, 0, 0.50);
}


/* FINAL CONTEÚDO */


/* responsivo */
@media (max-width: 800px) {
    * {
      font-size: 14px; /* Tamanho de fonte menor para telas menores */
    }
    
    .conteudo h2, .conteudoDentro h2 {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    * {
        font-size: 14px;
    }

    .conteudo h2, .conteudoDentro h2 {
        padding: 10px;
    }
    
    .conteudo, .conteudoDentro {
        padding: 20px;
        margin: 30px 10px;
    }

    .padding-conteudo {
        margin: 5px;
    }
}


@media(max-width: 1000px) {
    .divConteudo{
        padding: 0;
    }
    .txtINTRODUCAO{
        width: 70%;
    }
    .txtINTRODUCAO h2{
        font-size: 4vw;
    }
    .txtINTRODUCAO p{
        font-size: 3vw;
        line-height: normal;
    }
    li{
        line-height: normal;
    }

}