html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Poppins', sans-serif;
    padding: 20px 0;
    border: 20px;
    color: black;
    background-color: white;
}

h1{
    font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 700;
}

h2{
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 600;
}

h3{
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 500;
    color: #aaa;
}

p, a, li{
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
}

a{
    text-decoration: none;
    color: white;
}

section{
    margin-bottom: 40px;
}


/*Topo*/

.topo {
    text-align: center;
}

/*Banner*/

.banner{
    margin-top: 30px;
    text-align: center;
    background-color: #eeeeee;
}

.bannerBotao{
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 18px;
    background-color: #007BFF;
    transition: all 0.3s ease;
}

.bannerBotao:hover{
    transform: scale(1.2);
    background-color: #0056cc;
}

/*os meus serviços*/

.servico{
    padding: 30px 20px;

}

.icones{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.icones figure{
    align-items: center;
}

.icones svg{
    margin-top: 10px;
    stroke: #1e3b5c;
}

.icones figcaption{
    font-size: 1.5rem;
    text-align: center;
}

/*O que eu faço*/

.oQueFaco{
    padding: 30px 20px;
    background-color: #eeeeee;
}

.lista li{
    list-style: none;
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
}

.lista li::before{
    content: "✔";
    color:#007BFF;
    font-weight: bold;
    margin-right: 8px;
    display: inline-block;
    width: 16px;
}

/*O meu trabalho*/

.trabalho {
    padding: 0 20px;
    padding-bottom: 15px;
}

.trabalho h2{
    padding-top: 30px;
}

.imagensSite{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.imagensSite .mobile img{
    max-width: auto;
    max-height: 500px;
    margin-top: 15px;
    margin-bottom: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
    border-radius: 15px;
}

.imagensSite .desktop img{
    max-width: 300px;
    max-height: auto;
    margin-top: 20px;
    margin-bottom: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
    border-radius: 15px;
}

.imagensSite figcaption{
    font-size: 1.3rem;
    text-align: center;
}

.descricaoSite h3{
    text-align: center;
    padding-top: 10px;
}

.descricaoSite p{
    text-align: center;
}

.trabalho .siteBotao{
    margin: 20px 80px;
    display: flex;
    justify-content: space-around;
    padding: 6px 18px;
    border-radius: 18px;
    background-color: #007BFF;
    transition: all 0.3s ease;
}

.siteBotao:hover{
    transform: scale(1.2);
    background-color: #0056cc;
}

/*Final*/

.final{
    padding: 0 20px;
    text-align: center;
}

.box{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: #007BFF;
    color: white;
    padding: 5px 40px;
    border-radius: 18px;
}

.box h2{
    margin-bottom: 10px;
}

.box .finalBotao{
    color: #007BFF;
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 18px;
    border-radius: 18px;
    background-color: white;
    transition: all 0.3s ease;
}

.box .finalBotao:hover{
    transform: scale(1.2);
    background-color: #eeeeee;
}

div.finalBotao a{
    color: #007BFF;
    font-weight: 600;
}

div.finalBotao a:hover{
    color: #0056cc;
}

/*Footer*/

.footer{
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    background-color: #eeeeee;
}

.footer .logoRedesSociais{
    display: grid;
}

@media (min-width: 1024px){
    h1{ 
        font-size: 4.8rem;
        line-height: 1.2;
    }
    h2{
        font-size: 3.2rem;
        line-height: 1.3;
    }
    h3{
        font-size: 2.4rem;
        line-height: 1.4;
    }
    p, a, li{
        font-size: 1.6rem;
        line-height: 1.7;
    }
    section{
    margin-bottom: 60px;
    }

    /*Banner*/
    .banner{
        padding: 50px 0;
    }

    /*os meus serviços*/

    .icones{
        display: flex;
        flex-wrap:nowrap;
        flex-direction:row;
        justify-content:space-between;
        align-items: center;
        text-align: center;
        padding: 0 80px;
    }
    .icones svg{
        width: 120px;
        height: 120px;
    }

    /*O meu trabalho*/

    .imagensSite{
        align-items:end;
        justify-content:space-between;
        padding: 0 30px;
    }
    .imagensSite .mobile img{
        max-width: auto;
        max-height: 600px;
        margin-top: 15px;
        margin-bottom: 8px;
    }
    .imagensSite .desktop img{
        max-width: 800px;
        max-height: auto;
        margin-top: 20px;
        margin-bottom: 8px;
    }
    .imagensSite figcaption{
        font-size: 1.6rem;
    }
    .descricaoSite h3{
        padding-top: 20px;
    }
    .descricaoSite p{
        padding: 0 32px;
    }
    .trabalho .siteBotao{
    margin: 20px 450px;
    }

    /*Final*/
    .box .finalBotao{
    margin: 0 370px;
    }
    .box{
        padding-bottom: 20px;
    }
    .box p{
        margin-bottom: 20px;
    }

    /*Footer*/

    .footer{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }
    .botaoTopo svg{
        width: 50px;
        height: auto;
    }
}