/* Header */
.site-header {
  background: var(--green);
}

.header-topo {
  background: var(--topo);
  color: var(--white);
  font-size: 17px;
}

.header-topo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.logo {
  display: block;
}

.logo img {
  display: block;
  max-width: 207px;
  width: 207px;
  height: auto;
}

.header-phones {
  margin-top: 10px;
  color: var(--white);
  white-space: nowrap;
}

.header-phones a {
  color: var(--white);
}

.header-phones p {
  margin: 0 0 4px;
}

.header-phones img {
  vertical-align: middle;
  margin-right: 5px;
  width: 17px;
  height: 24px;
}

.ico {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  margin-right: 6px;
  fill: currentColor;
}

.header-selos {
  margin-top: 30px;
  text-align: center;
}

.header-selos img {
  display: block;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}

.header-nav {
  background: var(--green);
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.nav-desktop {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop > li {
  position: relative;
}

.nav-desktop > li > a {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  padding: 0 20px;
  line-height: 74px;
  background: var(--green);
}

.nav-desktop > li > a:hover,
.nav-desktop > li > a[aria-current="page"] {
  color: var(--white);
  background: var(--green);
}

.nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

.nav-desktop .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 240px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--green);
  z-index: 40;
}

.nav-desktop > li:hover > .sub-menu,
.nav-desktop > li:focus-within > .sub-menu {
  display: block;
}

.nav-desktop .sub-menu a {
  display: block;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 1.2;
  padding: 10px 18px;
}

.nav-desktop .sub-menu a:hover {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  cursor: pointer;
  padding: 18px 0;
}

.mobile-panel {
  display: none;
  background: var(--green);
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0 0 12px;
}

.mobile-panel a {
  display: block;
  color: var(--white);
  padding: 10px 16px;
  font-size: 15px;
}

.mobile-panel .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
}

/* Home slider */
.hero-slider {
  position: relative;
  height: 450px;
  overflow: hidden;
  background: #000;
  margin-bottom: 50px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background: #000 center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 0.8;
}

/* Quem somos home */
.about-home {
  background: url("/assets/img/bg-quem-somos-home-1.webp") center center no-repeat;
  padding: 70px 0;
  margin: 0 0 100px;
}

.about-home-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-home-copy {
  background: #fff;
  padding: 0 60px 0 0;
}

.about-home h1,
.page-copy h1 {
  font-family: var(--font-impact);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}

.about-home p,
.page-copy p {
  margin: 20px 0 0;
}

.btn-pill {
  display: inline-block;
  background: var(--green);
  color: var(--white) !important;
  padding: 20px 40px;
  border-radius: 25px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.btn-pill:hover {
  background: var(--green-hover);
  color: var(--white) !important;
}

.mt-40 {
  margin-top: 40px;
}

/* Home product grid */
.home-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 0 100px;
}

.home-product {
  text-align: center;
}

.home-product .widget-title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  color: #333;
  border-left: 3px solid var(--green);
  padding: 0 0 0 12px;
  margin: 0 0 16px;
  line-height: 1;
}

.home-product img {
  display: block;
  margin: 0 auto 16px;
  width: 100%;
  max-width: 278px;
  height: auto;
}

.home-product p {
  margin: 0 0 12px;
  text-align: left;
}

.home-product .btn-wrap {
  text-align: center;
  margin-top: 40px;
}

/* CTA orçamento */
.cta-orcamento {
  position: relative;
  overflow: hidden;
  min-height: 327px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.cta-orcamento img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  z-index: 0;
}

.cta-orcamento-inner {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  color: var(--white);
}

.cta-orcamento h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--topo);
  color: var(--white);
}

.footer-widgets {
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 21% 27% 18% 34%;
  gap: 40px;
  align-items: start;
}

#coluna2,
#coluna3,
#coluna4 {
  margin-top: 35px;
}

.footer-grid,
.footer-grid a,
.footer-grid p,
.footer-grid strong {
  color: var(--white);
}

.footer-logo {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: auto;
}

.footer-grid h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
}

.footer-grid p {
  margin: 0 0 12px;
}

.footer-selos {
  padding-top: 20px;
}

.footer-selos img {
  display: block;
  width: 100%;
  max-width: 371px;
  height: auto;
}

.footer-bottom {
  background: var(--green-dark);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  padding: 14px 0;
  text-align: center;
}

.footer-bottom a {
  color: var(--white);
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  background: #111;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  border-radius: 2px;
}

.scroll-top:hover {
  color: var(--white);
  background: var(--green);
}

/* Page header */
.page-header {
  background: #f5f5f5;
  padding: 28px 0;
}

.page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.page-header-title {
  font-family: var(--font-impact);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--green);
  margin: 0;
}

.breadcrumbs {
  font-size: 13px;
  color: #777;
}

.breadcrumbs a {
  color: #777;
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
}

.crumb-sep {
  margin: 0 2px;
}

/* Interior */
.page-body {
  padding: 40px 0 70px;
}

.about-quem {
  background: url("/assets/img/bg-quem-somos-home-1.webp") center center no-repeat;
  padding: 20px 0 5px;
  margin-bottom: 5px;
}

.about-quem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.about-quem-copy {
  background: #fff;
  padding: 0 60px 0 0;
}

.accordion {
  margin-top: 20px;
}

.acc-item {
  margin-bottom: 10px;
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #828282;
  color: var(--white);
  border: 0;
  cursor: pointer;
  padding: 15px 30px;
  font-family: inherit;
  font-size: 14px;
  text-align: left;
}

.acc-head:hover,
.acc-item.is-open .acc-head {
  background: var(--green-dark);
}

.acc-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  line-height: 18px;
  text-align: center;
  font-size: 18px;
}

.acc-icon::before {
  content: "+";
}

.acc-item.is-open .acc-icon::before {
  content: "−";
}

.acc-panel {
  display: none;
  background: #f9f9f9;
  padding: 15px 30px;
}

.acc-item.is-open .acc-panel {
  display: block;
}

.acc-panel ul {
  padding-left: 20px;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.bloco-produto {
  padding: 15px;
  border: 2px solid transparent;
  border-radius: 25px;
}

.bloco-produto:hover {
  border: solid 2px var(--green);
}

.bloco-produto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.bloco-produto .widget-title {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #333;
  border-left: 3px solid var(--green);
  padding: 0 0 0 12px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.bloco-produto p {
  margin: 0 0 12px;
}

/* Contato */
.contato-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
}

.contato-top p {
  margin: 0 0 12px;
}

.contato-lead {
  text-align: center;
  margin: 20px 0 30px;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contato-form label,
.orcamento-form label {
  display: block;
  margin-bottom: 14px;
}

.contato-form input[type="text"],
.contato-form input[type="email"],
.contato-form input[type="tel"],
.contato-form textarea,
.orcamento-form input[type="text"],
.orcamento-form input[type="email"],
.orcamento-form input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

.contato-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contato-form button,
.orcamento-form button,
input[type="submit"] {
  background: var(--green);
  color: var(--white);
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

.contato-form button:hover,
.orcamento-form button:hover {
  background: var(--green-hover);
}

.contato-map iframe {
  width: 100%;
  height: 550px;
  border: 0;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-feedback {
  margin-top: 12px;
}

/* Orçamento */
.tabela-form {
  padding: 20px;
  background: #f7f7f7;
  border-radius: 20px;
}

.tabela-form .titulo {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.tabela-form .linha {
  width: 100%;
  margin: 15px 0;
}

.tabela-form .bloco {
  margin: 40px 0;
  width: 100%;
  padding: 20px;
  min-height: 500px;
  background: #f0f0f0;
  overflow: hidden;
}

.tabela-form .coluna {
  display: block;
  height: 55px;
  margin-bottom: 10px;
}

.tabela-form .coluna01 {
  width: 18%;
  float: left;
  text-align: center;
}

.tabela-form .coluna01 img {
  width: 86px;
  height: 50px;
  object-fit: contain;
  vertical-align: middle;
}

.tabela-form .coluna02 {
  width: 50%;
  float: left;
  font-size: 18px;
}

.tabela-form .coluna03 {
  width: 32%;
  float: left;
  text-align: center;
  padding: 0 20% 0 0;
  box-sizing: border-box;
}

.tabela-form .linha::after {
  content: "";
  display: block;
  clear: both;
}

.tabela-form .centro {
  text-align: center;
}

@media (max-width: 1024px) {
  .home-products {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .header-topo-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 16px 0;
  }

  .logo img {
    margin: 0 auto;
  }

  .header-phones,
  .header-selos {
    margin-top: 10px;
  }

  .nav-desktop {
    display: none;
  }

  .header-nav-inner nav {
    display: none;
  }

  .header-nav-inner {
    justify-content: flex-start;
  }

  .header-phones {
    white-space: normal;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .header-nav-inner {
    min-height: 56px;
  }

  .hero-slider {
    height: 280px;
    margin-bottom: 30px;
  }

  .header-topo-inner > div:empty {
    display: none;
  }

  .about-home,
  .about-quem-inner,
  .about-home-inner,
  .contato-top,
  .contato-grid,
  .product-grid,
  .bloco-produto-inner {
    grid-template-columns: 1fr;
  }

  .about-home-copy,
  .about-quem-copy {
    padding: 0 10px;
  }

  .about-home-inner {
    grid-template-columns: 1fr;
  }

  .about-home-inner > div:empty,
  .about-quem-inner > div:empty {
    display: none;
  }

  .about-home {
    padding: 40px 0;
    margin: 0 0 100px;
  }

  #coluna2,
  #coluna3,
  #coluna4 {
    margin-top: 10px;
  }

  .home-products {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }

  .cta-orcamento-inner {
    padding: 30px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabela-form .coluna01,
  .tabela-form .coluna02,
  .tabela-form .coluna03 {
    width: 100%;
    float: none;
    padding: 1%;
    text-align: center;
  }

  .tabela-form .bloco {
    min-height: 0;
    padding: 8px;
  }
}

@media (max-width: 600px) {
  #telefones-topo {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .header-topo {
    font-size: 14px;
  }

  .about-home h1,
  .page-copy h1 {
    font-size: 30px;
  }

  .cta-orcamento h2 {
    font-size: 20.6px;
  }
}
