@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}
body{
    background-color: #fbf497;
    color: black;
}
.header{
    justify-content: center;
    height: 140px;
    width: 100%;
    background-color: #ff9428;
    display: flex;
}
.nav-bar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    width: 100%;
    max-width: 1600px;
    align-items: center;
}
.grid-nav{
    display: grid;
    grid-template-columns: repeat(5, 4fr);
    margin: 10px;
}

/* seção inicio */

.inicio{
    display: flex;
    justify-content: center;
}
.container-inicio{
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 100px;
}
.left{
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.right{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.title{
    font-size: 3rem;
    margin-bottom: 10px;
}
.subtitle{
    font-size: 1.2rem;
}

/* Seção informações */

.informacoes{
    display: flex;
    justify-content: center;
}

.container{
    width: 100%;
    max-width: 1600px;
}

.praticas{
    width: 100%;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #fcde76;
}
.praticas p{
    font-size: 4rem;
}
.lista-praticas .subtitle{
    margin-left: 100px;
    margin-bottom: 50px;
}

/* Seção rodapé */

.rodape{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    background-color: #ff9428;
    margin-top: 20px;
}

.footer{
    width: 100%;
}
.social{
    display: flex;
}

.social img{
    width: 40px;
    height: 40px;
    margin-inline: 15px;
}

.textos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .header{
        height: 200px;
    }
    .nav-bar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .logo{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo img{
        width: 250px;
        height: 48px;
        align-self: center;
        margin-bottom: 10px;
    }
    
    .grid-nav {
        display: flex;
        flex-direction: row;
    }
    .grid-nav dd{
        margin-inline: 15px;
    }

    .inicio {
        margin-top: 20px;
    }

    .container-inicio {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
    }
    .container{
        width: 100%;
        min-width: 100%;
    }
    .left, .right {
        width: 100%;
        height: auto;
        padding: 1rem;
    }

    .title {
        font-size: 1.8rem;
        text-align: center;
    }

    .subtitle {
        font-size: 1rem;
        text-align: justify;
    }

    .lista-praticas .subtitle {
        margin-left: 0;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .praticas p {
        font-size: 2rem;
        padding: 10px;
    }

    .rodape {
        margin-top: 30px;
        flex-direction: column;
        text-align: center;
        height: 250px;
        padding: 20px 0;
    }

    .social {
        justify-content: center;
        margin-bottom: 20px;
    }

    .social img {
        width: 30px;
        height: 30px;
    }

    .textos h5 {
        font-size: 0.9rem;
    }
}
