.conteudo {
    & .interface {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;

        & h2 {
            font-size: 3rem;
            text-align: center;

            & span {
                color: var(--azul);
            }
        }

        & p {
            font-size: 1.5rem;
            text-align: center;
        }

        & .container-turmas {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            width: 100%;

            & a {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                gap: .5rem;
                text-decoration: none;
                color: #000;
                padding: 1rem;
                border-radius: .5rem;
                border: 2px solid var(--cinza-borda);
                position: relative;
                transition: .2s ease all;

                & i {
                    position: absolute;
                    right: 1rem;
                    top: 1rem;
                    color: var(--cinza);
                }

                & #icone {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: static;
                    width: 4rem;
                    height: 4rem;
                    padding: 1rem;
                    font-size: 2rem;
                    background-color: var(--azul-opaco);
                    color: var(--azul);
                    border-radius: 50%;

                    &.color-1 {
                        color: #219ebc;
                        background: #8ecae676;
                    }

                    &.color-2 {
                        color: #f94144;
                        background: #f9c3c076;
                    }

                    &.color-3 {
                        color: #f3722c;
                        background: #f9cfa176;
                    }

                    &.color-4 {
                        color: #90be6d;
                        background: #c7e9b676;
                    }

                    &.color-5 {
                        color: #577590;
                        background: #a3c4dc76;
                    }
                }

                & h2 {
                    font-size: 2rem;
                }

                & .descricao {
                    color: var(--cinza);
                    font-size: 1.3rem;
                }

                & .tag {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: .3rem 1rem;
                    background: var(--azul-opaco);
                    color: var(--azul);
                    border-radius: 1rem;

                    & p {
                        font-size: .8rem;
                        font-weight: bold;
                    }
                }

                &:hover {
                    transform: scale(1.05);
                    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
                }
            }
        }
    }
}

/* Para celulares (largura máxima de 600px) */
@media screen and (max-width: 600px) {
    .conteudo {
        & .interface {
            & h2 {
                font-size: 2.5rem;
            }

            & p {
                font-size: 1.5rem;
            }

            & .container-turmas {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }
}

/* Para tablets (entre 601px e 1024px) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
    .conteudo {
        & .interface {
            & h2 {
                font-size: 2.5rem;
            }

            & p {
                font-size: 1.5rem;
            }

            & .container-turmas {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }
}