@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;700&family=Roboto:wght@900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}
body{
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}
header{
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    background-color: white;
    z-index: 3;
}
header img#logo{
    width: 125px;
    height: 75px;
    object-fit: cover;
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
}
header nav#menu ul{
    float: right;
    margin-right: 20px;
}
header nav#menu ul li{
    list-style: none;
    display: inline-block;
    margin-top: 30px;
    margin-right: 30px;
    font-weight: 900;
}
header nav#menu ul li a{
    text-decoration: none;
    color: #2185D5;
}
header nav#menu ul li a:hover{
    color: #3A4750;
    text-decoration: underline;
}
.checkbtn{
    font-size: 30px;
    color: #2185D5;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
main section{
    scroll-margin-top: -50px;
}
main .titulo{
    margin-bottom: 10px;
    color: #2185D5;
    text-align: center;
}
main .paragrafo-centralizado{
    margin-left: 300px;
    margin-right: 300px;
    text-align: center;
    font-weight: 600;
}
main #inicio{
    position: relative;
}
main #inicio div{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)),
        url(team_working.jpeg);
    background-size: cover;
}
main #inicio h1{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
}
main #servicos{
    text-align: center;
    padding:100px 300px;
    scroll-margin-top: 50px;
}
main #servicos p{
    margin-bottom: 50px;
    font-weight: 600;
}
main #servicos .servico{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
main #servicos .servico div{
    margin: 15px;
}
main #servicos .servico img{
    width: 400px;
}
main #servicos .servico h3{
    margin-bottom: 10px;
    color: #2185D5;
}
main #servicos .servico p{
    font-weight: 600;
    text-align: justify;
}
main #servicos .reverse{
    display: flex;
    flex-direction: row-reverse;
}
main #portfolio{
    background-color: azure;
    padding: 200px 30px;
}
main #portfolio .trabalhos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 2vw;
    padding: 0 7vw;
    padding-top: 30px;
}
main #portfolio .trabalho{
    width: 350px;
    height: 350px;
    transition: transform .2s linear;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
main #portfolio .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    opacity: 0;
}
main #portfolio div h4, main #portfolio div h6{
    color: white;
}
main #portfolio .trabalho img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
main #portfolio .trabalho:hover, main #portfolio .overlay:hover{
    transform: scale(1.1);
    opacity: 1;
    cursor: pointer;
}
main #pacotes{
    margin-top: 25px;
    padding: 200px 10px;
}
main #pacotes .pacotes{
    display: flex;
    justify-content: space-evenly;
    padding: 35px;
}
main #pacotes .pacotes div.pacote{
    background-color: rgba(33,133,213,0.1);
    margin-top: 30px;
    line-height: 35px;
    padding: 30px;
    border-radius: 3px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
main #pacotes .pacotes h5, main #pacotes .pacotes h1{
    text-align: center;
}
main #pacotes .pacotes h1{
    margin-bottom: 30px;
}    
main #pacotes .pacotes p{
    font-size: 15px;
    font-weight: 600;
}
main #pacotes .pacotes i{
    color: #2185D5;
    margin-right: 10px;
    font-size: 20px;
}
main #pacotes div.botao-aderir{
    text-align: center;
    margin-top: 25px;
}
main #pacotes button{
    width: 100px;
    padding: 10px;
    color: white;
    background-color: #2185D5;
    font-weight: 900;
    font-size: 21px;
    border-style: none;
    transition: all 0.2s ease;
}
main #pacotes button:hover{
    cursor: pointer;
    transform: scale(1.1);
}
main #colaboradores{
    background-color: azure;
    padding: 200px 50px;
}
main #colaboradores .colaboradores{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 50px;
}
main #colaboradores .colaboradores .colaborador{
    background-color: #ffffff;
    width: calc(65% / 3);
    padding: 20px;
    margin: 0;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
}
main #colaboradores .colaboradores .colaborador:hover{
    transform: translateY(-15px);
}
main #colaboradores .colaboradores .colaborador .info-colaborador{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
main #colaboradores .colaboradores .colaborador .info-colaborador .imagem-colaborador{
    height: 130px;
    width: 130px;
    margin-bottom: 15px;
    background: #2185D5;
    padding: 3px;
    border-radius: 50%;
}
main #colaboradores .colaboradores .colaborador .info-colaborador .imagem-colaborador img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}
main #colaboradores .colaboradores .colaborador .info-colaborador .nome-colaborador{
    font-size: 20px;
    font-weight: 600;
}
main #colaboradores .colaboradores .colaborador .info-colaborador .cargo-colaborador{
    font-size: 20px;
    color: #2185D5;
    font-weight: 600;
}
.media-icons{
    display: flex;
    margin-top: 10px;
}
.media-icons a{
    height: 35px;
    width: 35px;
    color: #fff;
    background-color: #2185D5;
    border-radius: 50%;
    font-size: 20px;
    padding: 2px;
    margin: 0 4px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
.media-icons a:hover{
    border-color: #2185D5;
    color: #2185D5;
    background-color: #fff;
}
footer{
    background-color: #637882;
    color: #fff;
    font-weight: 600;
}
footer .flex{
    display: flex;
    align-items: center;
}
footer img{
    width: 700px;
    height: 450px;
    object-fit: cover;
    margin-left: 55px;
}
footer div.blocos{
    display: flex;
    gap: 5vw;
}
footer h2{
    margin-bottom: 15px;
}
footer a{
    color: #3A4750;
    display: block;
    text-decoration: none;
    line-height: 25px;
}
footer a:hover{
    text-decoration: underline;
}
footer .media-icons a{
    padding-left: 5px;
    margin-top: 200px;
}
footer p{
    text-align: center;
    padding-bottom: 30px;
    margin-top: 10px;
}
@media (max-width:952px) {
    nav ul li a{
        font-size: 16px;
    }
}
@media (max-width: 858px){
    .checkbtn{
      display: block;
    }
    ul{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #2c3e50;
      top: 80px;
      left: -100%;
      text-align: center;
      transition: all .5s;
      display: flex;
      flex-direction: column;
    }
    nav ul li{
      margin: 50px 0;
      line-height: 30px;
    }
    nav ul li a{
      font-size: 20px;
    }
    nav ul li a:hover, nav ul li a.active{
      background: none;
      color: #0082e6;
    }
    #check:checked ~ ul{
      left: 0;
    }
  }