.site-header {
  position: relative;
  z-index: 10;
}

.branding {
  height: 150px;
  margin: 25px 0 0;
  text-align: center;
}

.logo {
  display: inline-block;
  height: 100%;
}

.logo img {
  display: block;
  width: auto;
  max-width: 90%;
  height: 80%;
  margin: 0 auto;
}

.nav-toggle {
  display: none;
  width: 100%;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--dark);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--orange);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

#access {
  display: block;
  width: 100%;
  background: var(--dark);
  margin-bottom: -13px;
  border-bottom: 4px solid var(--orange);
}

.nav-list {
  display: table;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-list li {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

.nav-list a {
  display: block;
  color: var(--orange);
  font-family: var(--heading);
  font-size: 19px;
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-list a span {
  display: block;
  padding: 17px 30px;
  text-transform: uppercase;
}

.nav-list li.is-current {
  background: var(--menu-current);
}

.nav-list li:hover {
  background: var(--darker);
}

.nav-list a:hover {
  color: var(--orange);
}

.slider {
  position: relative;
  max-width: 1920px;
  margin: 5px auto 30px;
  overflow: hidden;
}

.slider-track {
  position: relative;
  aspect-ratio: 1920 / 800;
  background: #fff;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-pager {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
}

.slider-pager button {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #333;
  cursor: pointer;
  font-size: 0;
  vertical-align: top;
}

.slider-pager button.is-active {
  background: #ccc;
}

.about {
  padding: 100px 0;
  margin-bottom: 30px;
}

.narrow {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 16px;
}

.about h2,
.products-title h2,
.contacts h2,
.map-sec h2 {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--orange);
}

.about h2 span,
.contacts h2 span,
.map-sec h2 span {
  color: var(--dark);
}

.products-title h2 {
  color: var(--dark);
  margin-bottom: 20px;
}

.about p {
  margin: 0 0 1em;
  text-align: justify;
}

.aerial {
  min-height: 600px;
  margin-bottom: 30px;
  background: url("/assets/img/foto-aerea.webp") center center / cover no-repeat;
  background-attachment: fixed;
}

.products {
  margin-bottom: 0;
}

.products-title {
  padding: 100px 0 40px;
}

.prod-grid {
  display: grid;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 30px;
  align-items: start;
}

.prod-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.prod-grid-2 {
  max-width: 1100px;
  padding: 0 30px;
  grid-template-columns: 17% 1fr 1fr 17%;
}

.prod-grid-2 p:first-child {
  grid-column: 2;
}

.prod-grid-2 p:last-child {
  grid-column: 3;
}

.prod-grid p {
  margin: 0;
  text-align: center;
}

.prod-grid img {
  display: block;
  margin: 0 auto;
}

.prod-left {
  text-align: left;
}

.prod-left img {
  margin: 0;
}

.prod-grid-last {
  padding-bottom: 100px;
  margin-bottom: 0;
}

.contacts {
  background: var(--gray);
  padding: 100px 0;
}

.contact-cols {
  display: grid;
  grid-template-columns: 33.3333% 35.1515% 31.5152%;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 16px;
  text-align: center;
}

.contact-cols img {
  display: block;
  margin: 0 auto 8px;
}

.contact-cols a {
  text-decoration: none;
}

.contact-form-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.form-intro {
  text-align: center;
  margin: 0 0 20px;
}

.contact-form p {
  margin: 0 0 0.6em;
}

.campo_nome,
.campo_texto {
  border: 1px solid var(--field-border);
  font-size: 12px;
  padding: 5px;
  background: var(--field);
  width: 100%;
  font-family: var(--font);
  color: var(--text);
  box-sizing: border-box;
}

.campo_nome {
  height: 30px;
}

.campo_texto {
  height: 138px;
  resize: vertical;
}

.campo_enviar {
  border: 1px solid var(--field-border);
  font-size: 12px;
  font-weight: 600;
  padding: 5px;
  background: var(--orange-btn);
  width: 80px;
  height: 40px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font);
}

.campo_enviar:hover {
  background: #c55d12;
}

.obrigatorio {
  color: #ff0000;
  font-weight: bold;
}

.form-feedback {
  min-height: 1.5em;
}

.map-sec {
  padding: 100px 0;
}

.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.map-sec h2 {
  margin-bottom: 40px;
}

.map-sec iframe {
  display: block;
  width: 100%;
  border: 0;
}

.site-footer {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 7px 16px 22px;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a,
.site-footer a:hover {
  color: #fff;
}

.to-top {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.85);
  display: grid;
  place-items: center;
  padding: 32px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.wptwa-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 12px 20px;
  border: 0;
  border-radius: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  background: var(--wa);
  color: #fff;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
}

.wptwa-toggle svg {
  fill: #fff;
  margin-right: 5px;
  margin-left: -3px;
}

.wptwa-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 61;
  width: min(100%, 360px);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 25px -5px rgba(45, 62, 79, 0.15);
}

.wptwa-box[hidden] {
  display: none;
}

.wptwa-desc {
  margin: 0;
  padding: 15px 40px 15px 20px;
  background: var(--wa);
  color: #fff;
  border-radius: 6px 6px 0 0;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.wptwa-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.wptwa-close::before,
.wptwa-close::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
  background: #fff;
}

.wptwa-close::before {
  transform: rotate(45deg);
}

.wptwa-close::after {
  transform: rotate(-45deg);
}

.wptwa-people {
  padding: 10px;
}

.wptwa-account {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #333;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
}

.wptwa-account:hover {
  background: #f7f7f7;
  border-radius: 6px;
  color: #333;
}

.wptwa-face {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url("/assets/img/wa-face.webp") center / cover no-repeat;
  flex: 0 0 60px;
}

.wptwa-name {
  padding-left: 10px;
  font-weight: 700;
}

@media (max-width: 800px) {
  .branding {
    height: auto;
    margin: 16px 0 8px;
  }

  .logo img {
    height: auto;
    max-height: 110px;
  }

  .nav-toggle {
    display: block;
  }

  #access {
    display: none;
    margin-bottom: 0;
  }

  #access.is-open {
    display: block;
  }

  .nav-list {
    display: block;
    width: 100%;
  }

  .nav-list li {
    display: block;
    width: 100%;
  }

  .nav-list a span {
    padding: 15px 10px;
    text-align: left;
  }

  .about,
  .contacts,
  .map-sec,
  .products-title {
    padding: 56px 0;
  }

  .aerial {
    min-height: 280px;
    background-attachment: scroll;
  }

  .prod-grid-3,
  .prod-grid-2 {
    grid-template-columns: 1fr;
  }

  .prod-grid-2 p:first-child,
  .prod-grid-2 p:last-child {
    grid-column: auto;
  }

  .prod-grid-last {
    padding-bottom: 56px;
  }

  .contact-cols {
    grid-template-columns: 1fr;
  }

  .about h2,
  .products-title h2,
  .contacts h2,
  .map-sec h2 {
    font-size: 32px;
  }

  .to-top {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.9em;
  }

  .prod-grid {
    padding: 0 16px;
  }
}
