html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #0F0F0F;
    font-family: 'Nunito Sans', sans-serif;
}

.produtos.box .produtos a, .works.box .works.item {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.video.box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 1;
    z-index: -1;
}

.display.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/ruido-n.webp);
}

.video.box video {
    width: 100%;
    height: 100%;
    background-color: #000;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s;
}

.container {
    display: table;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.header.bar {
    position: fixed;
    top: 0;
    width: 100%;
    /* background: rgba(0, 0, 0, .8); */
    /* backdrop-filter: blur(10px); */
    box-sizing: border-box;
    transition: background .3s;
    z-index: 10;
}

.header.bar.scrolled {
    background: rgba(0, 0, 0, .8);
    backdrop-filter: blur(10px);
}

.header.bar.active {
    background: #fff;
}

.header.bar .container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 45px 0;
    color: #fff;
    align-items: center;
    transition: padding .2s;
}

.header.bar.scrolled .container {
    padding: 20px 0;
}

.header.bar.active .container {
    color: #222;
}

.header.bar .logo img {
    display: flex;
    width: 281px;
    height: 36px;
}

.header.bar .logo img.b {
    display: none;
}

.header.bar.active .logo img.a {
    display: none;
}

.header.bar.active .logo img.b {
    display: block;
}

.header.bar .pre {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.header.bar .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header.bar .menu a {
    color: #fff;
}

.header.bar .menu .btn {
    /* margin: 0 50px;
    padding: 10px 20px;
    letter-spacing: .5px;
    transition: background .3s, border .2s;
    border-bottom: 1px solid transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 600; */
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .1);
    transition: background .3s;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    gap: 8px;
}

.header.bar.scrolled .menu .btn {
    backdrop-filter: unset;
}

.header.bar .menu .btn

.header.bar .menu .btn:hover {
    background: rgba(255, 255, 255, .17);
}

.header.bar .menu .btn:active {
    background: rgba(255, 255, 255, .1);
}

.header.bar .menu .btn svg {
    width: 18px;
    height: 18px;
}

.header.bar .mobile.btn {
    display: none;
}

.header.bar .mobile.btn, .header.bar .mobile.btn img {
    width: 36px;
    height: 36px;
}

.body.box {
    height: 100vh;
    display: flex;
    align-items: center;
}

.body.box .aesthetic.box {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.body.box .aesthetic img {
    position: relative;
    left: calc(100vh - 100px);
    height: calc(100vh - 142px);
    transform: rotate(0deg);
    transform-origin: 50% 100%;
    animation-name: animateAesthetic;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

@keyframes animateAesthetic {
    0% {
        transform: rotate(-10deg)
    }

    50% {
        transform: rotate(-80deg)
    }

    100% {
        transform: rotate(-10deg)
    }
}

.body.box .info.box {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    line-height: 50px;
    margin-top: 80px;
}

.body.box .info.box .btn {
    background: #2726EE;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    padding: 5px 0;
    padding-bottom: 4px;
    border-radius: 40px;
    margin-top: 20px;
    cursor: pointer;
    animation-name: btnOrc;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    color: #fff;
    width: 300px;
}

.body.box .info.box .btn.secondary {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
    color: #000;
    animation: none;
    padding: 6px 0;
}

.body.box .info.box .btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp.btn {
    position: fixed;
    bottom: 14px;
    right: 14px;
    padding: 12px;
    background: #25d366;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 20px -5px rgba(0,0,0,0.4);
    transition: opacity 250ms;
    display: flex;
    z-index: 10;
}

.whatsapp.btn svg {
    position: relative;
    top: -1px;
    width: 36px;
    height: 36px;
    color: #fff;
}

.show {
    opacity: 1;
}

.hide {
    pointer-events: none;
    opacity: 0;
}

.mobile.btn object {
    pointer-events: none;
}

@keyframes btnOrc {
    0% {
        background: #2726EE
    }

    50% {
        background: #5655e5
    }

    100% {
        background: #2726EE
    }
}