/* reset by rafaux */
* { margin: 0px; padding: 0px; border: 0px; font-weight: normal; font-size: 100%; list-style: none; line-height: 1; outline: 0px; background: none; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-font-smoothing: antialiased; -ms-font-smoothing: antialiased; -o-font-smoothing: antialiased; font-smoothing: antialiased; }

/* var */
:root { --black: #000; --fonttitle: 'Bebas Neue Pro'; }

/* global class */
.container { display: block; width: auto; max-width: 1260px; height: auto; margin: 0px auto; }

/* base */
a { text-decoration: none; transition: all .5s ease; }
body { background: #fff; font: normal 13px 'Poppins', sans-serif; overflow-x: hidden; }
body#int { background-color: var(--black); }
input, textarea, select, button { font: normal 13px 'Poppins', sans-serif; appearance: none; -webkit-appearance: none; border-radius: 0px; cursor: pointer; }
input[type=submit], button { transition: all .5s ease; }

/* top */
#top { display: none; position: fixed; z-index: 1000; top: 22px; left: 20px; width: auto; }
#top span { position: relative; display: inline-block; width: 50px; height: 50px; background-color: var(--black); border-radius: 100%; cursor: pointer; }
#top span b { position: absolute; z-index: 2; top: 17px; left: 15px; width: 20px; height: 20px; border-top: 1px solid #fff; }
#top span b::before { position: absolute; top: 5px; left: 0px; width: 100%; height: 1px; background-color: #fff; content: ''; }
#top span b::after { position: absolute; top: 11px; left: 0px; width: 100%; height: 1px; background-color: #fff; content: ''; }
#top nav { display: none; position: absolute; top: 0px; left: 0px; width: auto; height: 50px; padding: 0px 40px 0px 60px; background-color: #000; border-radius: 25px; }
#top nav ul { display: flex; height: 46px; justify-content: space-between; align-items: center; gap: 20px; }
#top nav ul a { font-weight: bold; font-size: 11px; color: #fff; text-transform: uppercase; }
#top nav ul li { position: relative; }
#top nav ul li ul { display: none !important; position: absolute; top: 30px; left: -18px; display: block; width: 160px; height: auto; padding: 0px 20px 20px 0px; background-color: var(--black); flex-direction: column; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; align-items: flex-start; }
#top nav ul li ul::before { position: absolute; top: -20px; left: 0px; width: 100%; height: 20px; background-color: transparent; content: ''; }
#top nav ul li:hover ul li { display: block !important; }
#top nav ul li ul li a { display: block; padding: 10px 0px; }

/* header */
#header { position: absolute; z-index: 20; top: 0px; left: 0px; width: 100%; height: auto; padding: 40px; display: flex; justify-content: space-between; align-items: center; transition: all .5s ease; }
#header .left { display: flex; justify-content: space-between; align-items: center; }
#header .left span.logo img { position: absolute; top: 50%; left: 50%; width: 190px; transform: translate(-50%, -50%); transition: all .5s ease; }
#header .right nav ul li a { font-size: 16px; }
#header nav ul { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
#header nav ul li { position: relative; }
#header nav ul li a { font-weight: 500; font-size: 12px; color: #fff; }
#header::after { position: absolute; z-index: -1; top: 0px; left: 0px; width: 100%; height: 140px; background: linear-gradient(to bottom, rgba(0,0,0,.8), transparent); content: ''; }

    /* header -> toggle */
    #header span.toggle { display: none; position: absolute; top: 42px; right: 40px; width: 20px; height: 30px; border-top: 1px solid #fff; transition: all .5s ease; cursor: pointer; }
    #header span.toggle::before { position: absolute; top: 5px; width: 100%; height: 1px; background-color: #fff; transition: all .5s ease; content: ''; }
    #header span.toggle::after { position: absolute; top: 11px; width: 100%; height: 1px; background-color: #fff; transition: all .5s ease; content: ''; }
    #header span.toggle.on { border-top-color: transparent; }
    #header span.toggle.on::before { top: 7px; transform: rotate(45deg); }
    #header span.toggle.on::after { top: 7px; transform: rotate(-45deg); }

    /* header -> on */
    #header.on { padding: 40px; background-color: var(--black); }

    /* header -> menu */
    #header nav ul li ul { display: none !important; position: absolute; top: 30px; left: 0px; display: block; flex-direction: column; width: 140px; height: auto; padding: 10px 20px; background-color: #fff; border-radius: 20px; text-align: left; gap: 0px; }
    #header nav ul li ul::before { position: absolute; top: -30px; left: 0px; width: 100%; height: 30px; background-color: transparent; content: ''; }
    #header nav ul li ul li a { display: block; padding: 10px 0px; font-size: 12px; color: var(--black); }
    #header nav ul li ul li a:hover { text-decoration: underline; }
    #header nav ul li:hover ul { display: block !important; }

/* section */
.section { position: relative; width: calc(100% - 40px); height: calc(100vh - 40px); margin: 20px; background-color: #000; border-radius: 7px; overflow: hidden; }
.section .bg { position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-size: cover; }
.section figure img { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; object-fit: cover; transition: all 20s ease; }
.section::after { position: absolute; z-index: 3; bottom: 0px; left: 0px; width: 100%; height: 40%; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); content: ''; }
.section figcaption { position: absolute; z-index: 10; bottom: 80px; left: 50%; width: 1000px; transform: translateX(-50%); text-align: center; }
.section figcaption small { display: block; margin-bottom: 14px; padding-left: 15px; text-transform: lowercase; letter-spacing: 20px; color: #fff; font-weight: bold; transition: all .5s ease; }
.section figcaption h1 { display: block; font-weight: bold; font-size: 120px; font-family: var(--fonttitle); color: #fff; text-transform: uppercase; transition: all .5s ease; }
.section figcaption span a { display: inline-block; width: auto; margin-top: 20px; padding: 10px 15px; background-color: var(--black); color: #fff; font-family: var(--fonttitle); font-size: 20px; text-transform: uppercase; }
.section figcaption:hover small,
.section figcaption:hover h1 { color: var(--black); }
.section:hover figure img { transform: scale(1.1); }

/* cover */
.section.cover { width: 100%; height: 100vh; margin: 0px; }
.section.cover figcaption:hover h1 { color: #fff; }
.section.cover figcaption h1 { font-size: 90px; }

/* ferrara */
.section.ferrara::after { display: none; }
.section.ferrara div.bg { opacity: .8; mix-blend-mode: luminosity; }
.section.ferrara figcaption { bottom: auto; top: 50%; transform: translate(-50%, -50%); }
.section.ferrara figcaption span { display: inline-block; width: auto; margin-top: 20px; background-color: #fff; color: var(--black); padding: 10px 30px; font-weight: bold; font-size: 12px; text-transform: uppercase; border-radius: 50px; transition: all .5s ease; }
.section.ferrara figcaption:hover h1 { color: #fff; }
.section.ferrara figcaption:hover span { background-color: var(--black); color: #fff; }

/* video */
.section.video { height: auto; padding: 40px 15% 120px 15%; background-color: #fff; text-align: center; }
.section.video::after { display: none; }
.section.video h2 { display: block; font-family: var(--fonttitle); font-size: 60px; }
.section.video .video { position: relative; display: inline-block; width: 100%; height: 65vh; margin-top: 60px; border-radius: 20px; background-color: #2B2926; overflow: hidden; }
.section.video .video iframe { position: relative; display: inline-block; width: 100%; height: 100%; }

/* about -> cover */
body#page-fabrica { background-color: #000; }
#about-cover { position: relative; width: 100%; height: 50vh; background-color: #000; overflow: hidden; }
#about-cover section,
#about-cover section figure,
#about-cover section figure img { position: relative; width: 100%; height: 50vh; }
#about-cover section figure img { position: absolute; top: 0px; left: 0px; object-fit: cover; transition: all 20s ease; }
/* #about-cover figure::after { position: absolute; z-index: 3; bottom: 0px; left: 0px; width: 100%; height: 50%; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); content: ''; } */
#about-anim span { position: absolute; z-index: 1000; top: 0px; left: 0px; width: 100%; height: 100vh; background-color: #000; transition: all .5s ease; }
#about-anim span img { position: absolute; top: 50%; left: 50%; width: 300px; height: auto; transform: translate(-50%, -50%); transition: all .5s ease; }
#about-content { padding: 90px 0px; }
#about-content .container { width: 700px; }
#about-content h1 { display: block; margin-bottom: 20px; color: #fff; font-family: 'Bebas Neue'; font-size: 48px; }
#about-content h2 { display: block; margin: 40px 0px 20px 0px; color: #fff; font-family: var(--fonttitle); font-size: 36px; }
#about-content p { display: block; margin-bottom: 20px; line-height: 2; color: #fff; }
#about-content .ferrara { position: relative; display: inline-block; width: calc(100% + 600px); height: 60vh; margin: 60px 0px 60px -300px; }
#about-content .ferrara .item { display: inline-block; width: 100%; height: 100%; background-size: cover; mix-blend-mode: luminosity; opacity: .8; border-radius: 7px; }
#about-content .ferrara h2 { position: absolute; z-index: 2; top: 46%; left: 50%; width: auto; transform: translate(-50%, -50%); color: #fff; font-family: var(--fonttitle); font-size: 160px; text-transform: uppercase; }

/* categoria */
#categoria { display: block; width: 100%; margin-bottom: 40px; }
#categoria header { position: relative; display: block; margin: 160px 0px 70px 0px; text-align: center; }
#categoria header small { display: block; margin-bottom: 14px; padding-left: 15px; text-transform: lowercase; letter-spacing: 20px; color: #fff; font-weight: bold; }
#categoria header h1 { display: block; font-weight: bold; font-size: 120px; font-family: var(--fonttitle); color: #fff; text-transform: uppercase; }
#categoria header p { display: block; width: 440px; height: auto; margin: 20px auto 0px auto; line-height: 1.8; text-align: center; color: #fff; }
#categoria header nav { position: absolute; z-index: 20; top: 50%; right: 100px; width: 200px; height: 30px; border: 1px solid #fff; transform: translateY(-50%); text-align: left; background-color: var(--black); }
#categoria header nav b { position: relative; display: block; width: 100%; height: 34px; padding: 0px 10px; line-height: 28px;  font-weight: bold;font-size: 11px; text-transform: uppercase; color: #fff; cursor: pointer; }
#categoria header nav b i { position: absolute; top: 8px; right: 10px; color: #fff; }
#categoria header nav:hover ul { display: block; }
#categoria header nav ul { display: none; position: absolute; top: 24px; left: -1px; width: calc(100% + 2px); height: auto; border: 1px solid #fff; border-top: 1px solid var(--black); background-color: var(--black); }
#categoria header nav ul li a { display: block; padding: 10px; font-weight: bold; font-size: 12px; color: #fff; text-transform: uppercase; }
#categoria .gal { padding: 0px 100px; }
#categoria .gal figure { margin: 0px 20px; opacity: .5; transition: all .5s ease; }
#categoria .gal figure img { width: 100%; height: 50vh; object-fit: cover; filter: grayscale(1); transition: all .5s ease; }
#categoria .gal figure.slick-active { opacity: 1; }
#categoria .gal figure.slick-active img { filter: grayscale(0); }
#categoria .gal .slick-list { overflow: visible; }
#categoria .arrow { position: absolute; top: -50px; left: 160px; color: #fff; font-size: 20px; }
#categoria .arrow.arrow-prev { left: 120px; }

/* parceiros */
.parceiros { display: inline-block; width: 100%; height: auto; padding: 40px 0px; background-color: #f3f3f3; text-align: center; }
.parceiros strong { display: block; margin-bottom: 40px; letter-spacing: 4px; text-transform: lowercase; font-weight: bold; color: #666; }
.parceiros li { display: inline-block; width: 120px; height: 50px; margin: 0px 30px; }
.parceiros li img { width: 100%; height: 100%; mix-blend-mode: multiply; object-fit: contain; filter: grayscale(1); opacity: .6; }

/* contact */
.box { display: none; position: fixed; z-index: 9000; top: 0px; left: 0px; width: 100%; height: 100%; background-color: rgba(0,0,0,.5); }
#contact { position: fixed; top: 50%; left: 50%; width: 400px; height: auto; padding: 40px; transform: translate(-50%, -50%); background-color: var(--black); border-radius: 40px; }
#contact h6 { display: block; font-family: 'Bebas Neue'; font-size: 36px; color: #fff; text-align: center; }
#contact p { display: block; display: block; margin: 10px 0px 20px 0px; line-height: 1.4; color: #fff; text-align: center; }
#contact input { display: block; width: 100%; height: 45px; margin-bottom: 10px; border-bottom: 1px solid #fff; font-size: 14px; color: #fff; font-size: 13px; }
#contact textarea { display: block; width: 100%; height: 100px; font-size: 14px; color: #fff; font-size: 13px; resize: none; }
#contact input[type=submit] { margin-bottom: 0px; border-bottom: none; background-color: #fff; color: var(--black); border-radius: 40px; }
#contact ::placeholder { color: #fff; }
#contact sup { position: absolute; top: 46px; right: 20px; color: #fff; font-size: 20px; cursor: pointer; }

/* footer */
#footer { padding: 70px 0px; text-align: center; background-color: #fff; }
#footer span img { display: inline-block; width: 170px; height: auto; }
#footer p { display: block; margin-top: 30px; font-size: 12px; }

/* lead */
.box-lead { display: none; position: fixed; z-index: 1000; bottom: 20px; right: 20px; width: 300px; height: auto; padding: 30px 20px 20px 20px; background-color: rgba(255,255,255,.7); border-radius: 20px; box-shadow: 0px 30px 30px rgba(0,0,0,.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.box-lead h6 { display: block; margin-bottom: 10px; font-family: 'Bebas Neue'; font-size: 30px; text-transform: uppercase; }
.box-lead input { display: block; width: 100%; height: 50px; border-bottom: 1px solid var(--black); font-size: 13px; color: var(--black); }
.box-lead input::placeholder { color: var(--black); }
.box-lead .foot { display: inline-block; width: 100%; height: auto; margin-top: 20px; }
.box-lead .foot input[type=submit] { height: 40px; background-color: var(--black); border: none; color: #fff; text-align: center; font-weight: bold; font-size: 12px; border-radius: 100px; }
.box-lead .foot b { display: block; width: 100%; margin-top: 10px; }
.box-lead .foot b a { display: block; width: 100%; height: 40px; background-color: #25d366; color: #fff; text-align: center; font-size: 12px; line-height: 40px; font-weight: bold; border-radius: 100px; }
.box-lead .foot b a i { display: inline-block; margin-right: 10px; font-size: 16px; vertical-align: middle; }
.box-lead sup { position: absolute; top: 32px; right: 15px; font-size: 20px; cursor: pointer; }

/* sidebar */
#sidebar { position: fixed; z-index: 1000; top: 0px; left: -250px; width: 250px; height: 100%; background-color: var(--black); text-align: center; transition: all .5s ease; }
#sidebar.on { left: 0px; }
#sidebar span.logo img { display: block; width: 120px; margin: 40px auto; }
#sidebar nav ul.menu li a { display: block; padding: 10px 0px; font-size: 12px; text-transform: uppercase; color: #fff; }
#sidebar nav ul.menu li a.contact::after { display: block; margin-top: 20px; content: '•'; }
#sidebar nav ul.social { position: absolute; bottom: 60px; left: 0px; width: 100%; height: auto; }
#sidebar nav ul.social li { display: inline-block; width: auto; margin: 0px 10px; }
#sidebar nav ul.social li a { color: #fff; }