@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tinos', sans-serif;
}

/* ESTILIZANDO O HEADER */

#titulo {
    color: #1E96FC;
    font-weight: bold;
    align-items: center;
    margin-left: 28px;
}

.hamburger {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.nav {
    background-color: #181818;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    font-weight: bold;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.nav-list {
    align-items: center;
    list-style: none;
    margin-right: 28px;
    display: flex;
}

.nav-list a {
    text-decoration: none;
    color: #DDD;
    padding: 20px;
}

.nav-list a:hover {
    color: #fff;
}

/* FIM DO HEADER */

/* ESTILIZANDO A MAIN */
.main {
    width: 100%;
    background-color: #000;
    height: calc(100vh - 80px);
    background-image: url("imagens/banne\ portfolio\ -1920.png");
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.main h1 {
    color: white;
    font-size: 54px;
}

.main p {
    font-size: 24px;
    font-style: italic;
    color: #8ac8ff;
    margin-top: 10px;
    margin-bottom: 35px;
}

.projetos {
    cursor: pointer;
    background-color: white;
    border: 0;
    padding: 14px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.projetos:hover {
    transform: scale(1.1);
}

.main a {
    text-decoration: none;
    color: #181818;
}



/* FIM DA MAIN */

/* ESTILIZANDO O SOBRE */
.about {
    background-color: #000216;
    width: 100%;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: large;
    color: #ffffff;
}

.about div {
    max-width: 50%;
    padding-right: 40px;
}

.about p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.about img {
    max-width: 450px;
    border-radius: 8px;
}

.about div h1 {
    font-size: 32px;
    margin-bottom: 14px;
}

.techs {
    margin-top: 40px;
}

/* FIM DO SOBRE */

/*Responsivo para monitor menor e notebooks*/
@media screen and (max-width: 1366px) {
    .main {
        width: 100%;
        background-color: #000;
        height: calc(100vh - 80px);
        background-image: url("imagens/banne\ portfolio\ 1366.png");
        display: flex;
        align-items: center;
        padding-left: 10%;
    }
}

@media screen and (max-width: 1560px) {
    .main {
        background-image: url("imagens/banne\ portfolio\ 1530.png");

    }
}

/*Responsivo para celular*/
@media screen and (max-width: 500px) {
    .hamburger {
        display: block;
        font-size: 26px;
        background: none;
        border: none;
        color: white;

        /* aparece só no mobile */
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-list {
        display: none;
        /* escondido inicialmente */
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #111;
        padding: 10px;
        border-radius: 8px;
        width: 150px;
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
        /* aparece quando clicado */
    }

    #titulo {
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }

    .main {
        width: 100%;
        background-color: #000;
        height: calc(80vh - 80px);
        background-image: url("imagens/banne\ portfolio\ mobile.png");
        display: flex;
        align-items: center;
        background-repeat: no-repeat;
        padding-left: 10%;
    }

    .main h1 {
        color: white;
        font-size: 35px;

    }

    .main p {
        font-size: 22px;
        font-style: italic;
        color: #8ac8ff;
        margin-top: 10px;
        margin-bottom: 35px;
    }

    .about {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .about div {
        max-width: 100%;
        padding-right: 0 10px;
    }


    .about img {
        display: none;
        /* exibe imagem se quiser */
    }

    .about div h1 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .techs {

        margin-top: 60px;
    }


}