* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

:root {
    --cor1: #ed4c07;
    --cor2: #c1343a;
    --cor3: #433bab;
    --cor4: #262986;
    --cor5: #0d103d;
}

body {
    font-family: sans-serif;
    overflow-x: hidden;
    text-align: center;
    background-color: var(--cor5);
}

/* ABAIXO - MENU  */

ul {
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

nav {
    height: 80px;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

span.logo {
    display: inline-block;
    width: 80px;
    height: 80px;
    padding-top: 18px;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
}

nav ul li a {
    color: rgb(255, 255, 255);
    font-size: 17px;
    padding: 7px 13px;
    text-transform: uppercase;
}

a.active,
a:hover {
    background: var(--cor1);
    transition: 0.8s;
}

.hamburger {
    display: none;
    background-color: rgb(255, 255, 255);
    height: 35px;
    width: 35px;
}

/* ABAIXO - BANNER  */

/* ABAIXO - BANNER  */

.banner {
    height: calc(100vh - 80px);
    background-image: url(../image/home.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--cor3);
}

.txtbanner {
    margin: 0;
    color: var(--cor3);
    font-size: 30px;
    /*background-color: rgba(0, 0, 0, 0.8);
  height: calc(100vh - 80px);
  padding-top: calc(25% - 80px);*/
    padding: 20px;
}

.txtbanner p {
    font-size: 35px;
}

.design {
    font-weight: 700;
}

/* ABAIXO - ME */

.me {
    max-width: 1200px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: var(--cor4);
    height: auto;
    padding: 50px;
    color: white;
    font-size: 20px;
}

/* ABAIXO - SERVIÇOS */

.servicos {
    display: flex;
    max-width: 1200px;
    min-width: 300px;
    flex-wrap: wrap;
    background-color: var(--cor4);
    margin: auto;
}

.serv-titulo {
    max-width: 1200px;
    margin: auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cor4);
    font-size: 25px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
}

.serv-card {
    width: 50%;
    min-width: 300px;
    padding: 5px;
    margin: auto;
    color: white;
}

.serv-card h1 {
    font-size: 20px;
    font-weight: 400;
}

.serv-card p {
    color: white;
    font-weight: lighter;
}

.serv-card img {
    width: 100%;
    filter: grayscale(1);
}

.serv-card img:hover {
    filter: grayscale(0);
    cursor: pointer;
    transition: 0.5s;
}

/* ABAIXO - TOOLKIT */

.toolkit-cards {
    max-width: 1200px;
    margin: auto;
    background-color: var(--cor4);
    min-width: 300px;
    margin-bottom: 30px;
}

.toolkit-card {
    width: 250px;
    height: 150px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}

.toolkit-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modo,
.autodesk,
.web,
.adobe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.autodesk div,
.web div,
.adobe div {
    margin: 15px;
}

/* heavy haul */

.botao {
    background-color: var(--cor1);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    display: inline-block;
    width: 200px;
    padding: 15px;
    border-radius: 60px;
    margin-bottom: 50px;
}

a.botao:hover {
    background-color: var(--cor4);
}

.ken img {
    max-width: 1000px;
    width: 100%;
}

/* abaixo findme */

.titulo-encontrar {
    font-size: 25px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
}

#containerfindme a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: inline-block;
    width: 120px;
    height: 40px;
    background-color: var(--cor1);
    line-height: 40px;
    margin: 8px;
    margin-bottom: 70px;
    border-radius: 40px;
}

#containerfindme a:hover {
    background-color: var(--cor4);
}

/* ABAIXO - VIDEO*/

.video {
    width: 100%;
    max-width: 960px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 20px;
}

/* ABAIXO - FOOTER */
footer {
    width: 100%;
    line-height: 80px;
    background-color: var(--cor5);
    color: white;
    text-align: center;
    font-size: 15px;
    flex-wrap: wrap;
}

/* ABAIXO - RESPONSIVIDADE */

@media (max-width: 767px) {
    .banner {
        height: calc(100vh - 80px);
        background-image: url(../image/home-cel.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: var(--cor5);
    }

    .txtbanner {
        padding-top: 80px;
        background-color: rgba(0, 0, 0, 0);
        color: white;
    }

    ul {
        position: fixed;
        width: 100%;
        height: 0;
        background: var(--cor5);
        text-align: center;
    }

    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    .hamburger {
        display: block;
        float: right;
        margin-right: 20px;
        margin-top: 30px;
        cursor: pointer;
    }

    button:focus ~ ul {
        height: 100%;
    }
}
