@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*@import "https://codepen.io/cbolson/pen/rNEdgKo.css" layer(template);
@layer template, sobre-timeline;*/
:root {
  --color-primary: #a2b848;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #58595b;
  --color-dark-green: #4e5b1d;
}

p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#form-contato {
  width: 100%;
}
#form-contato .form-contato-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
#form-contato .form-contato-field {
  flex: 1;
}
#form-contato .form-contato-field--full {
  flex: none;
  width: 100%;
  margin-bottom: 20px;
}
#form-contato .form-contato-field .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-primary);
  border-radius: 0;
  box-shadow: none;
  color: var(--color-gray);
  padding-left: 0;
  padding-right: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#form-contato .form-contato-field .form-control:focus {
  background: transparent;
  border-bottom-color: #c6c6c6;
  box-shadow: none;
  color: #c6c6c6;
}
#form-contato .form-contato-field label {
  color: var(--color-gray);
  padding-left: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9em;
}
#form-contato .form-contato-field:focus-within label {
  color: #c6c6c6;
}
#form-contato .form-contato-field textarea.form-control {
  resize: none;
}

main {
  background-color: var(--color-black);
}

.titulo-secao {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-primary);
  margin-bottom: 35px;
}
.titulo-secao svg {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
}

.color-green {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-header-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.nav-header-page > div {
  width: 33.3333%;
}
.nav-header-page > div:last-child {
  text-align: right;
}

.icones-menu a {
  color: var(--color-primary);
  transition: color 0.3s ease;
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
  margin-right: 15px;
}
.icones-menu a:hover {
  color: var(--color-white);
  text-decoration: none;
}
.icones-menu a:last-child {
  margin-right: 0;
}

.mensagem-destaque {
  padding: 25px;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}
.mensagem-destaque h1 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-white);
  font-size: 4em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.mensagem-destaque p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  font-size: 1.5em;
  padding: 20px;
}

.box-servicos {
  margin-top: -20vh;
  padding-bottom: 100px;
}
.box-servicos h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--color-primary);
  font-size: 4em;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px 0 10px 0;
  margin-bottom: 75px;
}
.box-servicos p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-primary);
  text-align: center;
  padding: 0 0 20px 0;
  margin-bottom: 75px;
}
.box-servicos > div > a {
  display: block;
  width: 200px;
  margin: 100px auto;
  padding: 10px 20px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}
.box-servicos > div > a:hover {
  border-color: var(--color-white);
  text-decoration: none;
  color: var(--color-white);
}
.box-servicos .cards-servicos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .box-servicos .cards-servicos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.box-servicos .cards-servicos .card-servico {
  aspect-ratio: 9/16;
  border-radius: 15px;
}
.box-servicos .cards-servicos .card-servico > div {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.box-servicos .cards-servicos .card-servico > div h3 {
  color: white;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;
}

.box-combo {
  background-color: var(--color-primary);
  padding-top: 100px;
  padding-bottom: 100px;
}
.box-combo .combos {
  margin-top: 75px;
}
.box-combo .combos > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
}
.box-combo .combos > div > div {
  flex: 1;
  padding: 25px;
}
.box-combo .combos > div > div .combo-header {
  margin-bottom: 40px;
}
.box-combo .combos > div > div .combo-header span {
  font-weight: 800;
  color: white;
  font-size: 1.2em;
  text-transform: uppercase;
  line-height: 0.6em;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.box-combo .combos > div > div .combo-header h4 {
  line-height: 0.6em;
  text-transform: uppercase;
  color: white;
  font-weight: 800;
  font-size: 4em;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.box-combo .combos > div > div .combo-items ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.box-combo .combos > div > div .combo-items ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(78, 91, 29, 0.5);
  color: var(--color-dark-green);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.box-combo .combos > div > div .combo-items ul li span:first-child {
  width: 36px;
  display: block;
}
.box-combo .combos > div > div .combo-items ul li span:last-child {
  width: auto;
  display: block;
  line-height: 0.8em;
}
.box-combo .combos > div > div .combo-items ul li svg {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  fill: var(--color-dark-green);
}
.box-combo .combos > div > div .combo-footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.box-combo .combos > div > div .combo-footer a {
  display: block;
  width: 200px;
  padding: 10px 20px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: border-color 0.3s ease, color 0.3s ease;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}
.box-combo .combos > div > div .combo-footer a:hover {
  border-color: var(--color-gray);
  text-decoration: none;
  color: var(--color-gray);
}
.box-combo > div > h2 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-white);
  font-size: 3em;
  text-align: center;
  padding: 0 0 20px 0;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.box-combo > div > p {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  text-align: center;
  padding: 0 20px;
  font-size: 1em;
  margin-bottom: 75px;
}

.box-apresentacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-black);
  height: 100vh;
}
.box-apresentacao__icones {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin-bottom: 35px;
}
.box-apresentacao__icones span {
  display: block;
  padding: 20px;
  font-size: 2em;
}
.box-apresentacao__icones svg {
  fill: var(--color-primary);
  width: 1.5em;
  height: 1.5em;
}
.box-apresentacao__title {
  width: 60%;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 800;
  font-size: 4em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.box-apresentacao__text {
  width: 60%;
  text-align: center;
  color: var(--color-primary);
  font-size: 1em;
}

.card-cristalizacao-para-brisa {
  background: url(/assets/images/servicos/1e2e188b5520493aacc9067259d372b2.webp) center center no-repeat;
  background-size: cover;
}

.card-remocao-de-chuva-acida {
  background: url(/assets/images/servicos/1e47d04258f24b669cbae9d2b2b12059.webp) center center no-repeat;
  background-size: cover;
}

.card-polimento-de-farois {
  background: url(/assets/images/servicos/4da2eaf0a6b3457cbc3ec189102ae98d.webp) center center no-repeat;
  background-size: cover;
}

.card-lavagem-ecologica {
  background: url(/assets/images/servicos/a65f1618f6b6477c9f245c27e9777dc2.webp) center center no-repeat;
  background-size: cover;
}

.card-enceramento-profissional {
  background: url(/assets/images/servicos/573219b4fcbe46b6bf4bf7340b4d96e1.webp) center center no-repeat;
  background-size: cover;
}

.card-selante-pintura {
  background: url(/assets/images/servicos/b0ed53c83c49455ebcab5d9fb92159d7.webp) center center no-repeat;
  background-size: cover;
}

.card-higienizacao-arcondicionado {
  background: url(/assets/images/servicos/108c08c8880c44c9b220bcbe69e17baa.webp) center center no-repeat;
  background-size: cover;
}

.card-higienizacao-banco-tecido {
  background: url(/assets/images/servicos/13a7b4afa5214e48be36b22fd26010d9.webp) center center no-repeat;
  background-size: cover;
}

.card-impermeabilizacao-banco-tecido {
  background: url(/assets/images/servicos/impermeabilizarbanco.webp) center center no-repeat;
  background-size: cover;
}

.card-vitrificacao-pintura {
  background: url(/assets/images/servicos/56424f46a65d4f278644361fa196394c.webp) center center no-repeat;
  background-size: cover;
}

.card-limpeza-motor {
  background: url(/assets/images/servicos/694155551190434183dda756e54bf7c1.webp) center center no-repeat;
  background-size: cover;
}

.card-higienizacao-banco-couro {
  background: url(/assets/images/servicos/fc32f178b56c47bc885ce0e0ac7edcd9.webp) center center no-repeat;
  background-size: cover;
}

.card-hidratacao-banco-couro {
  background: url(/assets/images/servicos/042721049be9460dbbce64eead942edc.webp) center center no-repeat;
  background-size: cover;
}

.card-descontaminacao-pintura {
  background: url(/assets/images/servicos/0785d7af310e46bd95ee0d589cd30362.webp) center center no-repeat;
  background-size: cover;
}

.card-reparos-expressos {
  background: url(/assets/images/servicos/af9be0ff8045489095aea0b744ba9695.webp) center center no-repeat;
  background-size: cover;
}

.container--full-height {
  height: 100%;
}

.nav-logo {
  text-align: center;
}
.nav-logo__img {
  width: 100%;
  max-width: 300px;
}

.top-hero-bg-home {
  background: url("/assets/images/background/fundo-top-home.webp") bottom center no-repeat;
  background-size: 100% auto;
}

.top-hero-bg-servicos {
  background: url("/assets/images/background/fundo-top-servicos.webp") bottom center no-repeat;
  background-size: 100% auto;
}

.top-hero-bg-sobre {
  background: url("/assets/images/background/fundo-top-sobre.webp") bottom center no-repeat;
  background-size: 100% auto;
}

.top-hero-bg-vitrificacao {
  background: url("/assets/images/background/fundo-top-vitrificacao.webp") bottom center no-repeat;
  background-size: 100% auto;
}

.top-hero-bg-polimento {
  background: url("/assets/images/background/fundo-top-polimento.webp") bottom center no-repeat;
  background-size: 100% auto;
}

.top-hero-bg-agendamento {
  background: url("/assets/images/background/fundo-top-agenda.webp") bottom center no-repeat;
  background-size: 100% auto;
}

.top-hero-bg-contato {
  background: url("/assets/images/background/fundo-top-contato.webp") bottom center no-repeat;
  background-size: 100% auto;
}

.section-hero {
  height: 200vh;
}
.section-hero__top {
  height: 100vh;
  padding-top: 30px;
}
.section-hero__bottom {
  height: 100vh;
  padding-bottom: 40px;
}
.section-hero__center {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-hero__features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.section-hero__feature {
  flex: 1;
  padding: 40px;
  text-align: center;
}
.section-hero__feature h3 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-primary);
  font-size: 1.5em;
  margin-bottom: 15px;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 50px;
}
.section-hero__feature p {
  color: var(--color-white);
}

.section-loja {
  background-image: url("/assets/images/background/loja.webp");
  background-position: center;
  background-size: cover;
  height: 100vh;
}
.section-loja__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.icon-folha {
  width: 60px;
}

.section-historia {
  background: #fff;
  padding: 100px 0;
}
.section-historia__outer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  width: 100%;
}
.section-historia__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.section-historia__header h1 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-gray);
  font-size: 5em;
  text-transform: uppercase;
  line-height: 1em;
}
.section-historia__header > span > a {
  color: var(--color-primary);
  transition: color 0.3s ease;
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
  margin-left: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.section-historia__header > span > a:hover {
  color: var(--color-gray);
  text-decoration: none;
}
.section-historia__body {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-top: 75px;
  padding-bottom: 75px;
}
.section-historia__texto {
  padding: 10%;
  width: 60%;
  margin-right: -10%;
  height: 100%;
  margin-top: 3%;
  margin-bottom: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  position: relative;
  z-index: 2;
}
.section-historia__imagem {
  width: 50%;
  background: url("/assets/images/servicos/addaceb427a9494c81d71f778c9f48e4.webp") center center no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

#map {
  width: 100%;
  height: 50vh;
}

.section-contato {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 100vh;
  background: #fff;
}
.section-contato__imagem {
  width: 50%;
  background: url("/assets/images/background/car-bianchini.webp") center center no-repeat;
  background-size: cover;
  background-position: center;
}
.section-contato__form-wrap {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 5%;
}
.section-contato__form-wrap h1 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--color-gray);
  font-size: 5em;
  text-transform: uppercase;
}
.section-contato__form-wrap > h1,
.section-contato__form-wrap > p {
  width: 100%;
}
.section-contato__logo {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
}
.section-contato__logo img {
  width: 250px;
}
.section-contato__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-gray);
}
.section-contato__info a {
  color: var(--color-primary);
  transition: color 0.3s ease;
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
  margin-left: 15px;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.section-contato__info a:hover {
  color: var(--color-gray);
  text-decoration: none;
}

#fc-comentarios {
  height: 120px;
}

#btn-enviar-contato {
  border: 1px solid var(--color-primary);
  padding: 10px 20px;
  display: inline-block;
  color: var(--color-primary);
  border-radius: 5px;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: border-color 0.3s ease, color 0.3s ease;
}
#btn-enviar-contato:hover {
  border-color: var(--color-gray);
  color: var(--color-gray);
}

.logo-cor {
  width: 250px;
}

#timeline {
  width: 500px;
  height: 600px;
  overflow: hidden;
  margin: 40px auto;
  position: relative;
  background: url("http://www.csslab.cl/ejemplos/timelinr/latest/images/dot.gif") 3px top repeat-y;
}

#dates {
  width: 100px;
  height: 600px;
  overflow: hidden;
  float: left;
}

#dates li {
  list-style: none;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 24px;
  padding-left: 10px;
  background: url("http://www.csslab.cl/ejemplos/timelinr/latest/images/biggerdot.png") left center no-repeat;
}

#dates a {
  line-height: 38px;
  padding-bottom: 10px;
}

#dates .selected {
  font-size: 38px;
}

#issues {
  width: 400px;
  height: 600px;
  overflow: hidden;
  float: left;
}

#issues li {
  max-width: 300px;
  height: 600px;
  list-style: none;
  text-align: center;
}

#issues li.selected img {
  transform: scale(1.1, 1.1);
}

#issues li img {
  width: 200px;
  margin: 10px 30px 10px 50px;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE 8 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF); /* IE 6 & 7 */
  zoom: 1;
  transition: all 2s ease-in-out;
  transform: scale(0.7, 0.7);
}

#issues li h1 {
  color: #ffcc00;
  font-size: 48px;
  text-align: center;
  text-shadow: #000 1px 1px 2px;
}

#issues li p {
  font-size: 14px;
  margin: 10px 20px;
  font-weight: normal;
  line-height: 22px;
  text-shadow: #000 1px 1px 2px;
}

#grad_top,
#grad_bottom {
  width: 500px;
  height: 80px;
  position: absolute;
}

#grad_top {
  top: 0;
  background: url("http://www.csslab.cl/ejemplos/timelinr/latest/images/grad_top.png") repeat-x;
}

#grad_bottom {
  bottom: 0;
  background: url("http://www.csslab.cl/ejemplos/timelinr/latest/images/grad_bottom.png") repeat-x;
}

#next,
#prev {
  position: absolute;
  left: 45%;
  font-size: 70px;
  width: 38px;
  height: 22px;
  background-position: 0 -44px;
  background-repeat: no-repeat;
  text-indent: -9999px;
  overflow: hidden;
}

#next:hover,
#prev:hover {
  background-position: 0 0;
}

#next {
  bottom: 0;
  background-image: url("http://www.csslab.cl/ejemplos/timelinr/latest/images/next_v.png");
}

#prev {
  top: 0;
  background-image: url("http://www.csslab.cl/ejemplos/timelinr/latest/images/prev_v.png");
}

#next.disabled,
#prev.disabled {
  opacity: 0.2;
}

#_--timeline {
  position: relative;
  width: 100%;
  height: 42vw;
  min-height: 260px;
  max-height: 420px;
  overflow: hidden;
  background-color: var(--color-black);
}
#_--timeline .cards-container {
  --base-rotation: 0deg;
  --full-circle: 360deg;
  --radius: 38vw;
  --duration: 200ms;
  --cards-container-size: calc(var(--radius) * 2);
  --cards-container-padding: 2rem;
  --border-color: transparent;
  --label-offset: calc(var(--radius) * -1 - 1rem);
  --label-size: 30px;
  --label-color: #888;
  --label-color-hover: #a2b848;
  --label-line-h: 0;
  --label-line-h-current: 2rem;
  --label-dot-size: 10px;
  --title-top: 1.5rem;
  --title-offset-y: 30px;
  --info-top: 5rem;
  --info-width: min(70%, 460px);
  --info-offset-y: 30px;
  box-sizing: content-box;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--cards-container-size);
  height: var(--cards-container-size);
  padding: var(--cards-container-padding);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}
@media (min-width: 800px) {
  #_--timeline .cards-container {
    --radius: min(30vw, 300px);
    --label-size: 40px;
    --label-dot-size: 15px;
    --label-line-h-current: 4rem;
    --title-top: 4rem;
    --info-top: 8rem;
  }
}
@media (min-width: 1200px) {
  #_--timeline .cards-container {
    --label-size: 50px;
    --border-color: var(--label-color);
  }
}
#_--timeline .cards {
  position: absolute;
  inset: var(--cards-container-padding);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease-in-out var(--duration);
  list-style: none;
  margin: 0;
  padding: 0;
}
#_--timeline .cards li {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  transform-origin: center;
  display: grid;
  place-content: center;
  transform: rotate(calc(var(--i) * 360deg / var(--items)));
  pointer-events: none;
}
#_--timeline input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
#_--timeline .cards li > label {
  position: absolute;
  inset: 0;
  margin: auto;
  transform: translateY(var(--label-offset));
  width: var(--label-size);
  height: var(--label-size);
  cursor: pointer;
  pointer-events: initial;
  text-align: center;
  color: var(--label-color);
  font-size: clamp(0.8rem, 2.5vw + 0.04rem, 1rem);
  transition: color var(--duration) ease-in-out;
}
#_--timeline .cards li > label::before {
  content: "";
  position: absolute;
  top: var(--cards-container-padding);
  left: 50%;
  translate: -50% 0;
  width: var(--label-dot-size);
  height: var(--label-dot-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--label-color);
  transition: background-color var(--duration) ease-in-out;
}
#_--timeline .cards li > label::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 5px;
  width: 2px;
  height: var(--label-line-h);
  background-color: var(--color-primary);
  transition: height 300ms ease-in-out var(--label-line-delay, 0ms);
}
#_--timeline .cards li > label:hover {
  --label-color: var(--label-color-hover);
}
#_--timeline .cards > li > h2,
#_--timeline .cards > li > p {
  position: absolute;
  left: 50%;
  text-align: center;
  transform: translate(-50%, 0);
  transform-origin: center;
}
#_--timeline .cards > li > h2 {
  top: var(--title-top);
  opacity: var(--title-opacity, 0);
  translate: 0 var(--title-offset-y);
  transition: opacity var(--duration) ease-in-out var(--title-delay, 0ms), translate var(--duration) ease-in-out var(--title-delay, 0ms);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--color-primary);
  margin: 0;
  white-space: nowrap;
}
#_--timeline .cards > li > p {
  top: var(--info-top);
  margin: 0 auto;
  width: var(--info-width);
  z-index: 2;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  text-align: center;
  text-wrap: pretty;
  opacity: var(--info-opacity, 0);
  transition: opacity var(--duration) ease-in-out var(--info-delay, 0ms);
  color: #f5f5f5;
  line-height: 1.5;
}
#_--timeline li:has(input:checked) {
  --label-color: var(--label-color-hover);
  --label-line-h: var(--label-line-h-current);
  --label-line-delay: calc(var(--duration) * 2);
  --title-opacity: 1;
  --title-offset-y: 0px;
  --title-delay: calc(var(--duration) * 3);
  --info-opacity: 1;
  --info-delay: calc(var(--duration) * 4);
}
#_--timeline .cards:has(input:checked) {
  transform: rotate(calc(var(--base-rotation) - var(--index) * var(--full-circle) / var(--items)));
}
#_--timeline .cards:has(li:nth-child(1) > input:checked) {
  --index: 0;
}
#_--timeline .cards:has(li:nth-child(2) > input:checked) {
  --index: 1;
}
#_--timeline .cards:has(li:nth-child(3) > input:checked) {
  --index: 2;
}
#_--timeline .cards:has(li:nth-child(4) > input:checked) {
  --index: 3;
}
#_--timeline .cards:has(li:nth-child(5) > input:checked) {
  --index: 4;
}

#vitrificacao {
  position: relative;
  background: var(--color-black);
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#vitrificacao .vitri-stage {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0.5rem;
}
#vitrificacao #vitri-nano-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
#vitrificacao .vitri-car-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(180, 0, 0, 0.35));
}
#vitrificacao .vitri-steps-wrap {
  padding: 3rem 0 5rem;
}
#vitrificacao .vitri-steps-title {
  text-align: center;
  color: var(--color-white);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#vitrificacao .vitri-steps-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  margin-bottom: 2.5rem;
}
#vitrificacao .vitri-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 767px) {
  #vitrificacao .vitri-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #vitrificacao .vitri-steps {
    grid-template-columns: 1fr;
  }
}
#vitrificacao .vitri-step {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  opacity: 0;
  transform: translateY(70px);
  will-change: transform, opacity;
}
#vitrificacao .vitri-step.vitri-step--risen {
  animation: vitri-antigravity 0.8s cubic-bezier(0.22, 1.25, 0.36, 1) both;
  animation-delay: var(--vitri-delay, 0ms);
}
#vitrificacao .vitri-step__num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#vitrificacao .vitri-step__icon {
  display: block;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}
#vitrificacao .vitri-step__title {
  color: var(--color-white);
  font-size: 0.95rem;
  margin: 0 0 0.45rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#vitrificacao .vitri-step__text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.6;
}

@keyframes vitri-antigravity {
  0% {
    transform: translateY(70px);
    opacity: 0;
  }
  28% {
    opacity: 1;
  }
  60% {
    transform: translateY(-18px);
  }
  78% {
    transform: translateY(8px);
  }
  91% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
#nav-drawer.nav-drawer--open {
  pointer-events: auto;
}
#nav-drawer.nav-drawer--open .nav-drawer__inner {
  transform: translateX(0);
}
#nav-drawer.nav-drawer--open .nav-drawer__backdrop {
  opacity: 1;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-drawer__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: #a7b752;
  padding: 5%;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 1;
}

.nav-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  font-size: 1.8em;
  align-self: flex-end;
  padding: 0;
  margin-bottom: 2rem;
  line-height: 1;
}
.nav-drawer__close:hover {
  color: var(--color-dark-green);
}

.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.nav-drawer__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-drawer__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-drawer__list a {
  display: block;
  padding: 1rem 0;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2em;
  text-transform: uppercase;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.nav-drawer__list a:hover {
  color: var(--color-dark-green);
}/*# sourceMappingURL=main.css.map */