* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: rgba(255, 255, 255, 0.9);
}

/* From Uiverse.io by mrhyddenn */ 
button {
  background: #fff;
  border: none;
  padding: 10px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  color: black;
  margin-top: 40px;
}

span {
  display: inline-block;
  transform: skew(21deg);
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: #16C47F;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

button:hover {
  color: black;
}

button:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

@media (max-width: 750px){
    button{
        background: #16C47F;
    }
}



header {
    width: 100%;
    display: flex;
    padding: 1%;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: none;
    z-index: 99;

    ul {
        display: flex;
        gap: 60px;
        list-style-type: none;
        padding-block: 10px;
        padding-inline: 12px;
        border-radius: 15px;
        backdrop-filter: blur(20px);

    }
}


section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.home {
    background-color: rgb(24, 22, 22);
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 80vh;


    .welcomeContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 3%;
        padding-right: 3%;
        margin-top: 80px;
        margin-bottom: 100px;

        h1 {
            font-family: "Rubik Glitch", system-ui;
            font-weight: 400;
            font-style: normal;
            font-size: 15vw;
        }

        .headline {
            opacity: 0.8;
            font-size: 4vw;
        }

        .botoes {
            display: flex;
            gap: 20px;
        }
    }

    .headline {
        font-size: 4vw;
        padding-top: 50px;
        padding-bottom: 20px;
        text-align: center;
    }

}



.servicos {
    background-color: rgb(28, 26, 26);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-block: 48px;
    padding-inline: 4%;

}

.divCards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;

    .card{
        width: 44%;
        

        .iconServicos{
            height: 60px;
        }
    }

    h3 {
        font-size: 28px;
        padding: 20px 0px 8px;
    }

    p {
        opacity: 0.8;
    }
}


.trabalhos {
    background-color: rgb(24, 22, 22);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-block: 50px;
    padding-inline: 4%;
}

.tituloSecao {
    font-size: 50px;
    margin: 60px 0px 40px
}