@font-face {
    font-family: 'Mattone';
    src: url('../fonts/Mattone-Regular.woff2') format('woff2'),
        url('../fonts/Mattone-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Mattone';
    src: url('../fonts/Mattone-Bold.woff2') format('woff2'),
        url('../fonts/Mattone-Bold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mattone';
    src: url('../fonts/Mattone-Black.woff2') format('woff2'),
        url('../fonts/Mattone-Black.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Mattone';
    color: #010101;
    src: url('../fonts/Mattone-150.woff2') format('woff2'),
        url('../fonts/Mattone-150.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


html {
  box-sizing: border-box !important;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
:root {
  --black: #010101;
  --l-red: #ED2224;
  --l-white:#ffffff;
  --l-purple: #7A55A3;
  --l-blue-light: #6BCCE2;
  --l-yellow: #FCEE23;

}

body {
  font-family: 'Mattone', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  overflow: hidden;
  color: white; 
  background-color: var(--black);
  /* apagar overflow depois */
}

a {
  text-decoration: none;
  color: white;
}
.navbar {
    height: 7%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 100px 0 100px;
}
.videoembed {
    position: absolute;
    top: 0;
    z-index: -99;
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 95%;
    overflow: hidden;

}
.nav-socials {
    display: flex;
    align-content: center;
    justify-content: center;
}

.nav-socials a{
    margin-left: 19px;
}
.coming-soon {
    height: 100vh;
    position: relative;
    z-index: 3;
    overflow: hidden;
    
}
.banner-wrap {
    height: 6.5%;
    /* position: fixed;
    bottom: 0; */
    background-color: var(--l-yellow);
    display: flex;
    z-index: 1000;
    align-items: center;
}
.hero-wrap {
    height: 85%; 

}
.hero-top-wrap {
    height: 77%;
    padding: 65px  0 65px 95px;
}
.logo-white {
    display: flex;
    align-items: center;
    justify-content: center;
}



.social-link {
    display: flex;
    align-items: center;

}


.social-link svg path{
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.social-link svg:hover path {
    fill: white;
}


.hero-text {
    height: 53%;
}
.hero-contacts {
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    margin-bottom: 100px;
}
.hero-link {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 10px;
    
}
.hero-link a{
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.hero-link:hover a{
    color: var(--l-yellow);
}

.contact-icon svg {
    width: 17px;
}
.line-alight {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.line-alight p {
    width: 100%;
}
.line-alight:nth-of-type(3) p {
    font-weight: 400;
}

.line-alight:nth-of-type(4) p {
    font-weight: 600;
}
.line-alight:nth-of-type(5) p {
    font-weight: 400;
}
.line-alight:nth-of-type(6) p {
    font-weight: 300;
    font-size: 118px;
    line-height: 115px;
}
.hero-tittle {
    font-weight: 500;
    font-size: 100px;
    color: white;
    line-height: 98px;
}
.line-alight:nth-of-type(3) .line {
    background-color: white;
}
.line-alight:nth-of-type(4) .line {
    background-color: var(--l-purple);
}
.line-alight:nth-of-type(5) .line {
    background-color: var(--l-blue-light);
}
.line-alight:nth-of-type(6) .line {
    background-color: var(--l-yellow);
}
.line {
    height: 6px;
    width: 305%;
    background-color: var(--l-red);
    margin-left: 60px;
    overflow-x: hidden;
}
.marquee {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    overflow: hidden;
    --offset: 20vw;
    --item-font-size: 10vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
    
}
  
.marquee__inner {
    width: fit-content;
    display: flex;
    align-content: center;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 5s linear infinite;
}
  
.marquee span {
    white-space: nowrap;
    font-size: 30px;
    padding: 0 2vw;
    color: var(--black);
    font-weight: 400;
    text-transform: uppercase;
}
  .cnter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.line-soon {
    height: 5px;
    width: 300px;
    background-color: var(--black);
}
  
@keyframes marquee {
    0% {
      transform: translate3d(var(--move-initial), 0, 0);
    }
    100% {
      transform: translate3d(var(--move-final), 0, 0);
    }
}
.mask {
    overflow: hidden;

}
.bottom-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
}
.social-link svg {
    height: 28px;
    width: 100%;
    margin-left: 20px;
}
.logo-white img {
    height: 55px;
}

@media(max-width:1920px) {
    .hero-tittle {
        font-size: 90px;
        line-height: 88px;
    }
    .line-alight:nth-of-type(6) p {
        font-size: 112px;
        line-height: 107px;
    }
    .banner-wrap {
        height: 4%;
    }
    
    
}
@media(max-width:1600px) {
   
}
@media(max-width:1200px) {
    .navbar{
        padding: 85px 85px 0 85px;
    }
    .hero-tittle {
        font-size: 85px;
        line-height: 83px;
    }
    .line-alight:nth-of-type(6) p {
        font-size: 118px;
        line-height: 115px;
    }
    .hero-top-wrap {
       padding: 55px  0 55px 83px;
       height: 70%;
    }
    .hero-contacts {
        flex-wrap: wrap;
        padding: 0px 85px;
        margin-bottom: 85px;
    }
    

}

@media(max-width:920px) {
    .navbar{
        padding: 60px 60px 0 60px;
    }
    .hero-top-wrap {
        padding: 55px  0 55px 58px;
        height: 70%;
     }
    .hero-tittle {
        font-size: 74px;
        line-height: 72px;
    }
    .line-alight:nth-of-type(6) p {
        font-size: 95px;
        line-height: 92px;
    }
    .hero-contacts {
        gap:55px;
        padding: 0px 60px  0 60px; 
        margin-bottom: 60px;
    }
    .line {
        height: 6px;
        width: 205%;
        margin-left: 40px;
    }
 
}
@media(max-width:768px) {
    .navbar {
        padding: 50px 50px 0 50px;
    }
    .hero-top-wrap {
        padding: 55px  0 55px 48px;
        height: 65%;
     }
    .hero-tittle {
        font-size: 54px;
        line-height: 54px;
    }
    .line-alight:nth-of-type(6) p {
        font-size: 68px;
        line-height: 66px;
    }
    .hero-contacts {
        gap:50px;
        padding: 0px 60px  0 50px; 
        margin-bottom: 50px;
    }
    .hero-link {
        justify-content: flex-start;
        width: 100%;
    }
    .nav-socials a{
        margin-left: 16px;
    }
    .social-link svg {
        height: 25px;
    }
    .logo-white img {
        height: 55px;
    }
    .hero-link {
        font-size: 15px;
    }
    .hero-link span svg {
        height: 16px;
    }
    .line {
        height: 5px;
        padding-left: 15px;
    }
    .line-soon {
        height: 5px;
    }

    
}
@media(max-width:480px) {
    .navbar {
        padding: 50px 35px 0 35px;
    }
    .hero-top-wrap {
        padding: 35px  0 0px 22px;
        height: auto;
     }
    .hero-tittle {
        font-size: 38px;
        line-height: 38px;
    }
    .line-alight:nth-of-type(6) p {
        font-size: 47px;
        line-height: 45px;
    }
    .hero-contacts {
        gap:25px;
        padding: 70px 60px  0 35px; 
        margin-bottom: 40px;
    }
    .hero-link {
        justify-content: flex-start;
        width: 100%;
    }
    .social-link svg {
        height: 21px;
        width: 100%;
        margin-left: 8px;
    }
    .logo-white img {
        height: 37px;
    }
    .line {
        height: 5px;
        margin-left: 18px;
    }
    .line-soon {
        height: 13.5px;
        width: 150px;
    }
    .hero-link {
        font-size: 14px;
    }
    .hero-link span svg {
        height: 15px;
        width: 15px;
    }
    .hero-wrap {
        height: 78%; 
    
    }
    .line {
        height: 3.5px;
    }
    .line-soon {
        height: 4.5px;
    }
    .social-link svg:hover path {
        fill: var(--l-yellow);
    }
    .banner-wrap {
        height: 5%;
    }
    .hero-link:hover a{
        color: white;
    }
    .marquee span {
        font-size: 24px;
    }
    /* .videoembed {
        display: none;
    }
    .coming-soon {
        background-image: url(../images/layout/background-video-1.gif);
        background-position: top;
        background-size: cover;
    } */
    
}

