* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}

::-webkit-scrollbar {
    width: 6px;
    background: #F4F4F4;
}

::-webkit-scrollbar-thumb {
    background: #7510F7;
}

h1, h2, h3, a, p, label, input, button, textarea, span {
    font-family: 'Roboto';
    letter-spacing: 2px;
}

.main-color {
    background: #7510F7;
}

.second-color {
    background: #FFFFFF;
}

.text-color {
    color: #FFFFFF;
}

span {
    color: #121212;
    font-weight: 700;
}

.cabecalho {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-c {
    color: #121212;
    font-weight: 400;
    margin-top: 50px;
}

.cabecalho > h1 {
    font-size: 100px;
}

#ondas {
    width: 100%;
}

.sobre {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.sobre > h2 {
    margin-top: 50px;
    font-weight: 400;
    font-size: 28px;
}

.sobre > p {
    margin: 100px 15px 0 15px;
    line-height: 1.5;
    font-size: 18px;
    width: 80%;
}

.servicos {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    margin: -50px 50px 0 50px;
    width: 400px;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
    z-index: 1;
}

.icon-servico {
    transition: .3s ease-in-out;
}

.card:hover .icon-servico {
    transform: rotateY(180deg);
}

.card h3 {
    color: #7510F7;
}

.card p {
    color: #121212;
    width: 80%;
    line-height: 1.5;
}

.portfolio {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio h2 {
    color: #7510F7;
}

#works {
    width: 50px;
    margin-bottom: 20px;
    transition: transform .3s ease-in-out;
    cursor: pointer;
}

#works:hover {
    transform: rotate(90deg);
}

.portfolio > h2 {
    margin-bottom: 55px;
}

.main-box-image {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.box-image {
    background: #7510F7;
    width: 350px;
    height: 250px;
    margin: 25px;
    border-radius: 12px;
    border: 1px solid #7510F7;
}

.box-image img {
    width: 350px;
    height: 250px;
    border-radius: 12px;
    transition: all .4s ease-in-out;
}

.text-img {
    font-family: 'Roboto';
    letter-spacing: 2px;
    font-size: 18px;
    color: #FFFFFF;
    position: relative;
    margin-top: -160px;
    font-weight: 700;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.box-image:hover img{
    opacity: 0;
}

.box-image:hover .text-img {
    opacity: 1;
}

.see-more {
    text-align: center;
    margin: 80px;
    width: 250px;
    color: #7510F7;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #7510F7;
    padding: 10px;
    border-radius: 30px;
    background: transparent;
    transition: all .2s ease-in-out;
}

.see-more:hover {
    background: #7510F7;
    color: #FFFFFF;
}

.projects {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projects > h2 {
    margin: 30px;
}

.main-project-box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    line-height: 1.5;
}

.box-project-item {
    width: 350px;
    height: 360px;
    background: #FFFFFF;
    margin: 50px;
    border-radius: 12px;
    padding: 20px;
}

.box-project-item p {
    margin: 15px;
}

.box-project-item a {
    text-decoration: none;
    color: #727272;
}

.box-project-item > span {
    color: #727272;
}

.box-project-item a:hover {
    color: #7510F7;
    font-weight: 500;
}

.contato {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contato > h2 {
    color: #7510F7;
    margin-bottom: 50px;
}

.contato form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contato form label, input, textarea {
    width: 50%;
    margin: 20px;
    font-size: 18px;
    color: #7510F7;
    font-weight: 500;
}

.contato form input {
    border-radius: 20px;
    border: 1px solid #7510F7;
    height: 20px;
    outline: none;
    padding: 10px;
    text-align: center;
    color: #7510F7;
}

.contato form textarea {
    outline: none;
    border: none;
    resize: none;
    height: 200px;
    border: 1px solid #7510F7;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
}

.contato form button {
    outline: none;
    border: 1px solid #7510F7;
    width: 200px;
    height: 40px;
    border-radius: 20px;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #7510F7;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.contato form button:hover {
    color: #FFFFFF;
    background: #7510F7;
}

.rodape {
    height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.rodape a img {
    width: 35px;
    margin: 10px;
}
