/* 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 { --primary: #004854; --darkgreen: #001D1E; --green: #00DD3E; --apple: #b0ee80; --fontttle: 'JBS Display'; }
::selection { background-color: rgba(0, 221, 62, 0.1); }

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

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

/* flex */
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex-col { flex-direction: column; }

/* grid */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* top */
#top { position: fixed; z-index: 10; top: 0px; left: 0px; width: 100%; height: 35px; background-color: #011617; transition: all .3s ease; }
#top.on { top: -35px; }
#top .container { max-width: 1140px; }
#top .container nav { height: 35px; gap: 60px; }
#top .container nav strong { font-weight: 400; font-size: 11px; color: #fff; text-transform: uppercase; opacity: .7; }
#top .container nav ul { gap: 20px; }
#top .container nav ul li a { font-size: 10px; color: #fff; text-transform: uppercase; opacity: .6; }

/* header */
#header { position: fixed; z-index: 11; top: 35px; left: 0px; width: 100%; height: 95px; padding-top: 20px; transition: all .3s ease; background-color: var(--darkgreen); }
#header.on { top: 0px; background-color: #01161740; backdrop-filter: blur(10px); }
#header .container { position: relative; max-width: 1280px; }
#header .container::before { position: absolute; bottom: -8px; left: 220px; width: calc(100% - 220px); height: .5px; background-color: #fff; opacity: .3; content: ''; }
#header .left { gap: 30px; }
#header .left span.logo img { width: 190px; height: auto; }
#header .left nav ul { position: relative; gap: 20px; }
#header .left nav ul li a { position: relative; font-size: 13px; color: #fff; }
#header .left nav ul li a::before { position: absolute; bottom: -28px; left: 0px; width: 0%; height: 5px; background-color: var(--apple); transition: all .5s ease; content: ''; }
#header .left nav ul li a.on::before { width: 60%; }
#header .right { gap: 40px; }
#header .right nav ul { gap: 12px; }
#header .right nav ul li a { font-size: 16px; color: #fff; }
#header .right span.lang { position: relative; gap: 10px; }
#header .right span.lang i { width: 25px; height: 25px; background-color: #fff; border-radius: 100%; line-height: 25px; text-align: center; font-size: 15px; }
#header .right span.lang small { font-weight: bold; font-size: 11px; color: #fff; }
#header .right span.lang sup a { display: none; position: absolute; top: 25px; right: 0px; padding: 5px; font-weight: bold; font-size: 11px; background-color: var(--green); color: var(--primary); text-transform: uppercase; border-radius: 5px; }
#header .right span.lang:hover sup a { display: block; }

  /* header -> toggle menu */
  #header span.toggle-menu { display: none; position: relative; width: 24px; height: 24px; border-top: 2px solid #fff; transition: all .3s ease; cursor: pointer; }
  #header span.toggle-menu::before { position: absolute; top: 8px; left: 0px; width: 100%; height: 2px; background-color: #fff; transition: all .3s ease; content: ''; }
  #header span.toggle-menu::after { position: absolute; top: 18px; left: 0px; width: 100%; height: 2px; background-color: #fff; transition: all .3s ease; content: ''; }
  #header span.toggle-menu.on { border-top-color: transparent; }
  #header span.toggle-menu.on::before { top: 10px; transform: rotate(45deg); }
  #header span.toggle-menu.on::after { top: 10px; transform: rotate(-45deg); }

/* feat */
#feat { display: flex; justify-content: center; width: 100%; height: 100vh; max-height: calc(700px + 130px); padding-top: 130px; background: var(--darkgreen); background-size: contain; overflow: hidden; }
#feat section { display: flex; align-items: center; width: 1200px; height: calc(100vh - 130px); max-height: 700px; }
#feat section article { width: 60%; padding-right: 230px; }
#feat section article h1 { font-size: 48px; font-family: var(--fontttle); color: var(--green); }
#feat section article p { position: relative; padding: 30px 0px 0px 80px; font-weight: 200; font-size: 30px; color: #fff; line-height: 1.3; }
#feat section article p::before { position: absolute; top: 36px; left: 24px; width: 26px; height: 26px; background: transparent url('../img/feat-arrow.png') no-repeat; background-size: contain; content: ''; }
#feat section figure { position: relative; z-index: 2; width: 40%; }
#feat section figure::before { position: absolute; z-index: -1; top: 70%; left: 30%; width: 1100px; height: 1100px; margin: -550px 0px 0px -550px; background: transparent url('../img/feat-bg.png') no-repeat; background-size: contain; content: ''; }
#feat section figure img { width: 80%; height: auto; }

/* benefits */
#benefits { padding: 120px 0px 60px 0px; }
#benefits .swiper { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; }
#benefits .swiper .item { position: relative; width: 100%; border-radius: 50px; background-color: #c8c8c8; }
#benefits .swiper .item.on { background-color: var(--green); }
#benefits .swiper .item a { display: block; min-height: 250px; padding: 50px 20px 50px 25px; color: var(--primary); }
#benefits .swiper .item.on a { min-height: 375px; padding-right: 35px; }
#benefits .swiper .item strong { display: block; height: 85px; font-weight: 400; font-size: 26px; line-height: 1.2; }
#benefits .swiper .item.on strong { line-height: 1; }
#benefits .swiper .item.item-1 strong { font-size: 22px; line-height: 1.1; }
#benefits .swiper .item.item-3 strong { font-size: 18px; }
#benefits .swiper .item.item-4 strong { line-height: .9; }
#benefits .swiper .item.item-5 strong { font-size: 22px; line-height: 1.1; }
#benefits .swiper .item img { position: absolute; bottom: 25px; right: 30px; width: 70px; height: auto; max-height: 70px; object-fit: contain; }
#benefits .swiper .item p { font-weight: 200; font-size: 15px; line-height: 1.2; }
#benefits .swiper .item a::before { position: absolute; bottom: 25px; left: 25px; width: 38px; height: 38px; background-color: #7efa4e; border-radius: 100%; font-weight: 300; font-family: 'Font Awesome 6 Pro'; font-size: 16px; line-height: 38px; text-align: center; transform: rotate(-45deg); transition: all .3s ease; content: '\f061'; }
#benefits .swiper .item a:hover::before { background-color: var(--primary); color: #7efa4e; }

/* how it works */
#how-it-works .container { max-width: 1460px; padding: 40px; border-radius: 50px; background-color: #fff; }
#how-it-works .container header { margin: 0px 0px 20px 40px; }
#how-it-works .container header strong { padding: 10px 20px; background-color: var(--primary); color: #fff; text-transform: lowercase; border-radius: 40px; }
#how-it-works section figure { width: 54%; justify-content: center; }
#how-it-works section figure img { width: 390px; height: auto; }
#how-it-works section article { width: 46%; padding-right: 150px; }
#how-it-works section article h3 { position: relative; display: block; padding-top: 50px; margin-bottom: 40px; font-weight: 500; font-family: var(--fonttitle); font-size: 24px; line-height: 1.2; }
#how-it-works section article h3::before { position: absolute; top: -40px; left: 0px; width: 40px; height: 40px; background: transparent url('../img/arrow-primary.png') no-repeat; background-size: contain; content: ''; }
#how-it-works section article p { display: block; margin-bottom: 20px; line-height: 1.6; }
#how-it-works section article p strong { font-weight: 600; }

/* side green */
#side-green { padding: 45px 0px; }
#side-green aside { position: relative; display: flex; justify-content: center; align-items: center; width: 50%; height: 500px; padding: 0px 90px; background-color: var(--green); border-radius: 50px; }
#side-green aside::before { position: absolute; bottom: 60px; right: 40px; width: 40px; height: 40px; background: transparent url('../img/arrow-primary.png') no-repeat; background-size: contain; content: ''; }
#side-green aside h4 { font-family: var(--fonttitle); font-size: 44px; line-height: 1.1; }
#side-green article { width: 50%; padding: 0px 60px; }
#side-green section article h3 { position: relative; display: block; padding-top: 50px; margin-bottom: 40px; font-weight: 500; font-family: var(--fonttitle); font-size: 24px; line-height: 1.2; }
#side-green section article p { display: block; margin-bottom: 20px; line-height: 1.6; }
#side-green section article p strong { font-weight: 600; }

/* technology */
#technology { padding: 60px 0px; }
#technology header { margin-bottom: 60px; text-align: center; }
#technology header h2 { font-weight: 600; font-size: 44px; font-family: var(--fonttitle); text-transform: uppercase; }
#technology header h2 sup { position: relative; top: 10px; left: -10px; margin-right: -10px; font-weight: bold; font-size: 36px; }
#technology header h3 { font-weight: 400; font-size: 44px; font-family: var(--fonttitle); }
#technology section { background-color: #fff; }
#technology section .container { display: flex; align-items: center; padding: 60px 0px; }
#technology section article { position: relative; width: 50%; padding: 40px 90px 0px 90px; }
#technology section article sup { position: absolute; top: -110px; left: 0px; padding: 10px 20px; background-color: var(--primary); color: #fff; text-transform: lowercase; border-radius: 40px; }
#technology section article h3 { position: relative; display: block; margin-bottom: 30px; font-weight: 500; font-family: var(--fonttitle); font-size: 30px; line-height: 1.2; }
#technology section article p { display: block; margin-bottom: 20px; line-height: 1.6; }
#technology section article span img { position: absolute; top: -130px; right: 20px; width: 200px; height: auto; }
#technology section figure { width: 50%; }
#technology section figure img { width: 85%; height: auto; }

/* kind leather */
#kind-leather { padding-bottom: 60px; }
#kind-leather .container { position: relative; padding: 120px 100px; background-color: #001d1e; border-radius: 70px; }
#kind-leather header strong { position: absolute; top: 50px; left: 40px; padding: 10px 20px; background-color: var(--green); text-transform: lowercase; border-radius: 40px; }
#kind-leather section aside { width: 50%; }
#kind-leather section aside h3 { color: var(--green); font-family: var(--fonttitle); font-size: 64px; }
#kind-leather section article { width: 50%; }
#kind-leather section article p { font-size: 22px; color: #fff; line-height: 1.5; }

/* video */
#video { width: 100%; height: 70vh; background-color: var(--darkgreen); display:flex; flex-direction: column; justify-content: center; align-items: center;
        align-content: center; padding: 64px; }

#video .video-container {width: 11400px; height: 400px; display: flex; flex-direction: column; align-content: center; align-items: center;}

#video .video-container inframe {width:clamp(800px, 1140, 1200px) height:600px;}

@media (max-width: 800px){
    #video .video-container {width: 100%;}
    #video .video-container iframe {width: 100%; height:400px;}
    #video {padding: 32px;}
}

@media (min-width: 800px){
    #video .video-container {width:100%; height: fit-content; padding: 20px;}
    #video .video-container iframe {width: 100%; height:600px;}
}
    
/* contact */
#contact { padding: 60px 0px; }
#contact section { position: relative; align-items: flex-end; padding: 50px; background-color: #c8c8c8; border-radius: 40px; }
#contact section i { position: absolute; top: 50px; left: 50px; font-size: 24px; color: #333; }
#contact section aside { width: 50%; padding: 0px 12% 80px 0px; }
#contact section aside h4 { margin-bottom: 15px; font-size: 46px; font-weight: 500; font-family: var(--fonttitle); color: #333; }
#contact section aside p { line-height: 1.3; color: #333; }
#contact section article { width: 50%; }
#contact section article form label { display: block; margin-bottom: 20px; }
#contact section article form label input { width: 100%; height: 40px; padding: 0px 30px; border-radius: 40px; background-color: #fff; }
#contact section article form label textarea { width: 100%; height: 130px; padding: 15px 30px; border-radius: 20px; background-color: #fff; }
#contact section article form label ::placeholder { color: #333; }
#contact section article form .bottom label { display: flex; margin-bottom: 0px; gap: 10px; cursor: pointer; }
#contact section article form .bottom label input[type=radio] { position: relative; width: 16px; height: 16px; margin-left: 30px; padding: 0px; flex-shrink: 0; }
#contact section article form .bottom label input[type=radio]:checked::after { position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; background-color: #1d1c6c; border-radius: 100%; transform: translate(-50%, -50%); content: ''; }
#contact section article form .bottom label input[type=submit] { width: auto; height: auto; padding: 15px 70px; background-color: var(--green); color: var(--primary); }

/* footer */
#footer .container { align-items: center; }
#footer aside { position: relative; width: 42%; padding: 90px 90px 65px 50px; background-color: var(--darkgreen); border-top-right-radius: 10px; }
#footer aside::before { position: absolute; z-index: -1; top: 0px; left: -100vw; width: 100vw; height: 100%; background-color: var(--darkgreen); content: ''; }
#footer aside strong { display: block; padding: 0px 0px 18px 10px; color: #fff; font-size: 18px; }
#footer aside form { display: flex; align-items: center; gap: 10px; }
#footer aside form label:first-of-type { width: calc(100% - 50px); height: auto; }
#footer aside form label:first-of-type input { width: 100%; height: 50px; padding: 0px 20px; background-color: #fff; font-size: 18px; border-radius: 50px; color: var(--primary); }
#footer aside form label:first-of-type input::placeholder { color: var(--primary); }
#footer aside form label:last-of-type { width: 50px; height: auto; }
#footer aside form label:last-of-type input { width: 50px; height: 50px; background-color: var(--green); border-radius: 100%; text-transform: uppercase; font-size: 16px; }
#footer aside .bottom { margin-top: 50px; gap: 20px; align-items: flex-end; }
#footer aside .bottom span.logo img { width: 160px; margin-left: -30px; }
#footer aside .bottom p { padding-bottom: 10px; font-size: 10px; color: #fff; white-space: nowrap; }
#footer section { position: relative; width: 58%; padding: 0px 0px 65px 30px; }
#footer section nav.menu strong { display: block; margin-bottom: 20px; font-size: 11px; color: #666; text-transform: uppercase; }
#footer section nav.menu ul { gap: 10px; flex-direction: column; }
#footer section nav.menu ul li a { font-weight: bold; color: var(--primary); }
#footer section nav.social { position: absolute; bottom: 0px; right: 0px; }
#footer section nav.social ul { gap: 12px; }
#footer section nav.social ul li a { color: var(--primary); font-size: 16px; }

/* sidebar */
#sidebar { position: fixed; z-index: 1000; top: 12px; left: -300px; width: 200px; height: calc(100svh - 24px); background-color: rgba(0, 29, 30, .9); backdrop-filter: blur(10px); border-radius: 30px; transition: all .3s ease; }
#sidebar.on { left: 12px; }
#sidebar span.logo img { display: block; width: 140px; margin: 40px auto; }
#sidebar ul.menu li a { display: block; padding: 15px 0px; text-align: center; color: #fff; }
#sidebar ul.social { position: absolute; bottom: 40px; left: 50%; display: flex; align-items: center; transform: translateX(-50%); gap: 20px; }
#sidebar ul.social li a { font-size: 18px; color: #fff; }

@media (max-width: 1400px){

  /* benefits */
  .swiper { padding-bottom: 40px; }
  .swiper-pagination-bullet-active { background-color: var(--green) !important; }

}

@media (max-width: 1280px){

  /* benefits */
  #benefits .swiper { display: grid; grid-template-columns: repeat(3, 1fr); }
  #benefits .swiper .item.on a { min-height: 295px; }
}

/* responsive */
@media (max-width: 1200px){

  /* global */
  .container { max-width: 100%; padding: 0px 20px; }

  /* feat */
  #feat section { width: 100%; }
  #feat section article { padding: 0px 100px 0px 20px; }

}

@media (max-width: 1120px){

  /* how it works */
  #how-it-works section article { padding-right: 0px; }

  /* side green */
  #side-green .container section { flex-direction: column; }
  #side-green aside { width: 100%; height: auto; padding: 20px; border-radius: 20px; }
  #side-green aside::before { display: none; }
  #side-green aside h4 { font-size: 30px; }
  #side-green article { width: 100%; padding: 0px; }

  /* footer */
  #footer .container { flex-direction: column; }
  #footer aside { width: 100%; padding: 90px 20px; border-radius: 40px; }
  #footer aside::before { display: none; }
  #footer section { width: 100%; padding: 40px 20px; text-align: center; }
  #footer section nav.social { position: relative; bottom: auto; right: auto; }
  #footer section nav.social ul { margin-top: 40px; justify-content: center; align-items: center; }
  #footer aside .bottom { justify-content: center; flex-direction: column; align-items: center; }
  #footer aside .bottom span.logo img { margin-left: 0px; }

}

@media (max-width: 900px){

  /* how it works */
  #how-it-works .container header { display: flex; justify-content: center; margin-left: 0px; }
  #how-it-works section { flex-direction: column; }
  #how-it-works section figure img { max-width: 100%; height: auto; }
  #how-it-works section article { width: 100%; padding-top: 60px; }

  /* technology */
  #technology header h2 { font-size: 30px; }
  #technology header h2 sup { left: -5px; font-size: 28px; }
  #technology header h3 { font-size: 20px; }
  #technology section article span img { display: none; }
  #technology section article sup { display: none; }
  #technology section .container { flex-direction: column; padding: 0px; }
  #technology section article { width: 100%; padding: 20px; }
  #technology section figure { width: 100%; }
  #technology section figure img { max-width: 100%; max-height: 400px; object-fit: contain; }

  /* kind leather */
  #kind-leather .container { margin: 0px 20px; padding: 50px; }
  #kind-leather header { display: flex; justify-content: center; margin-left: 0px; }
  #kind-leather header strong { position: absolute; top: auto; left: auto; }
  #kind-leather section { flex-direction: column; }
  #kind-leather section aside { width: 100%; padding-top: 60px; text-align: center; }
  #kind-leather section aside h3 { font-size: 36px; }
  #kind-leather section article { width: 100%; }
  #kind-leather section article p { margin-top: 20px; font-size: 16px; text-align: center; }

  /* contact */
  #contact section { flex-direction: column; padding: 20px; }
  #contact section i { top: 40px; left: 20px; }
  #contact section aside { width: 100%; padding: 60px 0px 30px 0px; }
  #contact section article { width: 100%; }
  #contact section article form .bottom label input[type=radio] { margin-left: 0px; }

}

@media (max-width: 780px){

  /* global */
  html, body { overflow-x: hidden; }

  /* header */
  #header nav { display: none; }
  #header .container::before { display: none; }
  #header .left span.logo img { width: 160px; }
  #header .right { gap: 20px; }
  #header span.toggle-menu { display: block; }

  /* feat */
  #feat { height: auto; }
  #feat section { height: auto; flex-direction: column; }
  #feat section article { width: 100%; padding: 40px 20px 0px 20px; }
  #feat section article h1 { font-size: 36px; }
  #feat section article p { font-size: 18px; padding-left: 30px; }
  #feat section article p::before { left: 0px; width: 16px; height: 16px; }
  #feat section figure img { width: 130%; margin: 20px 0px 0px -30px; padding-bottom: 40px; }

  /* how it works */
  #how-it-works section figure { width: 100%; }

  /* side green */
  #side-green { padding-bottom: 0px; }
  #side-green aside h4 { font-size: 24px; }
  #side-green section article h3 { font-size: 18px; }

  /* technology */
  #technology header { margin-bottom: 30px; }
  #technology header h2 { font-size: 24px; }
  #technology header h2 sup { font-size: 22px; }
  #technology header h3 { font-size: 18px; }
  #technology section article h3 { font-size: 20px; }
  #technology section figure img { margin-bottom: 40px; }

  /* kind leather */
  #kind-leather section aside h3 { font-size: 30px; }
  #kind-leather section article p { font-size: 14px; }

  /* contact */
  #contact section aside h4 { font-size: 30px; }
  #contact section article form .bottom label b { font-size: 12px; padding-right: 10px; }

  /* footer */
  #footer aside strong { font-size: 14px; }

}

@media (max-width: 680px){

  /* benefits */
  #benefits .swiper { display: grid; grid-template-columns: repeat(2, 1fr); }
  #benefits .swiper .item strong { font-size: 24px !important; }
  #benefits .swiper .item img { width: 50px; max-height: 50px; }

}

@media (max-width: 480px){

  /* benefits */
  #benefits .swiper { display: grid; grid-template-columns: 1fr; }
  #benefits .swiper .item { min-height: auto; }
  #benefits .swiper .item strong { height: auto; margin-bottom: 20px; }

}

/*Ajustes na seção HERO, para ela virar um Carrossel com Video e o conteúdo original. Solicitado dia 27/01/2026*/
#feat {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Track do carrossel */
.carousel-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.6s ease;
}

#feat .carousel-arrow { position:absolute; }
#feat .carousel-track { position:relative; z-index:1; }
#feat .carousel-arrow { z-index:9999; }


/* Slides */
.carousel-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-arrow{
  z-index: 9999;
  pointer-events: auto;
}


/* Slide de vídeo */
.video-slide iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  /*pointer-events: none;*/
}

.video-slide{
      background-color: black;
}


.content-slide{
    background-color: var(--darkgreen);
}

/* Conteúdo */
.content-slide section {
  position: relative;
  z-index: 1;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 0 8%;*/
}

/* Setas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

.carousel-arrow:hover {
  background: rgba(0,0,0,0.85);
}
