@media (max-width: 1080px) {
    body {
        padding-top: 92px;
    }

    .cabecalho {
        padding: 30px;
        align-items: center;
        justify-content: space-between;
    }

    .cabecalho .logo {
        margin-left: 0;
    }

    .cabecalho .menu {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        width: 100%;
        height: calc(100vh - 92px);
        background-color: rgba(0, 0, 0, 0.95);
    }

    .cabecalho .menu.aberto {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cabecalho .menu.aberto ul {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .cabecalho .menu.aberto ul a {
        font-size: 2rem;
    }

    i#burguer {
        display: block;
        cursor: pointer;
        color: var(--cor-texto-branco);
        font-size: 2.5rem;
        z-index: 1001;
    }

    .home {
        grid-template-columns: 1fr;
        grid-template-areas:
            'foto'
            'info';

        text-align: center;
        align-items: center;
        gap: 30px;
        padding: 50px 15px;
    }

    .home .informacoes {
        text-align: center;
        align-items: center;
    }

    .sobre {
        display: block;
        padding: 0 40px;
        align-content: space-around;
    }

    .sobre .descricao p {
        /* font-size: 17px; */
        text-align:justify;
        line-height: 1.6;
    }

    .projetos .container-projetos {
        padding: 0 30px;
    }

    .projetos .projeto {
        max-height: none;
    }

    .projetos .projeto:hover {
        transform: none;
    }

    .projetos .projeto h3 {
        position: static;
        opacity: 1;
        background-color: transparent;
        padding: 15px 15px 10px;
        text-align: center;
    }

    .projetos .projeto:hover h3 {
        opacity: 1;
    }

    .projetos .projeto .informacoes-projeto {
        position: static;
        opacity: 1;
        height: auto;
        background-color: var(--cor-fundo-projeto-hover);
        padding: 0 15px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .projetos .links-projeto {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .projetos .btn-projeto {
        width: 90%;
        text-align: center;
    }

    .tela {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
        scroll-margin-top: 92px;
    }
}

@media (max-width: 425px) {
    .home .informacoes h1 {
        font-size: 30px;
    }

    .home .informacoes p {
        font-size: 16px;
    }

    .home .container-foto .foto {
        max-width: 320px;
    }

    .projetos {
        padding: 30px;
    }
}
