@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;
    text-decoration: solid;
}

.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;

}

.conteudoBRANCO, .conteudoROXO{
    width: 50%;
    height: max-content;
    padding: 60px 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.conteudoROXO{
    background-color: #6248FF;
    color: white;
}

.conteudoBRANCO{
    color: black;
}

.conteudoBRANCO h2, .conteudoROXO h2{
    text-align: center;
    font-family: Montserrat;
    font-size: 2.7vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 60px;
}

.conteudoBRANCO p, .conteudoROXO p{
    text-align: center;
    font-family: Montserrat;
    font-size: 1.35vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 50px;
}

.conteudoBRANCO img, .conteudoROXO img{
    max-width: 70%;
    box-shadow: 0px 6px 13px rgb(0,0,0,0.5);
    border-radius: 20px;
    margin-bottom: 50px;
}

.esquerdaDireita {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 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;
    }
}