*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  font-weight: 300;
  color: var(--heading);
  margin: 0 0 16px;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 40;
  background: #111;
  color: #fff;
  padding: 8px 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ico {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 8px;
}

.ico.gold,
.gold {
  color: var(--gold);
}

.gold-line {
  color: var(--gold);
}

#top-bar-wrap {
  background: var(--black);
  color: #fff;
  font-size: 12px;
  line-height: 21.6px;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0;
}

.top-bar-content {
  display: flex;
  gap: 18px;
  align-items: center;
}

.top-bar-content a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-content .ico {
  margin-right: 0;
  color: var(--gold);
}

#site-header {
  background: #fff;
  position: relative;
  z-index: 20;
}

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

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

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

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

.nav-desktop > li > a {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 25px;
  line-height: 74px;
  height: 74px;
}

.nav-desktop > li > a:hover,
.nav-desktop > li > a.current {
  color: var(--gold-nav);
}

.nav-desktop .caret {
  font-size: 10px;
  margin-left: 4px;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.sub-menu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--black);
  text-transform: none;
  letter-spacing: 0;
}

.sub-menu a:hover {
  color: var(--gold-nav);
}

.has-children:hover > .sub-menu,
.has-children:focus-within > .sub-menu {
  display: block;
}

.sub-menu .has-children {
  position: relative;
}

.sub-menu-right {
  top: 0;
  left: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  color: var(--black);
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  cursor: pointer;
}

.mobile-panel {
  background: #fff;
  border-top: 1px solid #eee;
}

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

.mobile-panel a,
.mobile-acc {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 12px 8%;
  font: 400 14px/1.4 var(--font);
  color: var(--black);
  cursor: pointer;
}

.mobile-sub a,
.mobile-sub .mobile-acc {
  padding-left: 12%;
}

.mobile-sub .mobile-sub a {
  padding-left: 16%;
}

.btn,
.button {
  display: inline-block;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 20px;
  line-height: 12px;
}

.btn:hover,
.button:hover {
  opacity: 0.9;
  color: #fff;
}

.hero {
  display: none;
}

@media (min-width: 781px) {
  .hero {
    display: block;
    position: relative;
    height: 612px;
    overflow: hidden;
    background: #333;
  }
}

.hero-slides {
  position: relative;
  height: 100%;
}

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

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(90%, 1200px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-copy h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 300;
  line-height: 52.25px;
  text-align: right;
  margin: 0;
  max-width: 720px;
  padding-right: 20px;
}

.home-about {
  background: var(--gray);
  padding: 60px 0;
}

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

.home-about-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.home-services {
  padding: 40px 0 20px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: 50% 25% 25%;
  gap: 30px;
  align-items: start;
}

.home-icon-col {
  text-align: center;
}

.home-icon-col h1 {
  font-size: 25px;
  line-height: 35px;
}

.home-icon-col img {
  width: 87px;
  height: 87px;
  margin: 8px auto 16px;
}

.produtos-servicos {
  position: relative;
  display: block;
}

.produtos-servicos img {
  display: block;
  width: 100%;
}

.produtos-servicos .caption {
  position: absolute;
  right: 0;
  bottom: 18%;
  background: rgba(221, 159, 72, 0.85);
  color: #fff;
  padding: 10px 22px 10px 40px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 300;
}

.home-cta {
  width: min(90%, 1200px);
  margin: 10px auto 40px;
  min-height: 152px;
  padding: 30px;
  background: var(--gray) url("/assets/img/fundo.webp") right center / auto 100% no-repeat;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.home-cta h1 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
}

.home-cta h1 span {
  font-size: 15px;
}

.home-clients {
  padding: 20px 0 40px;
}

.home-clients-grid {
  display: grid;
  grid-template-columns: 15% 85%;
  gap: 20px;
  align-items: center;
}

.home-clients h1 {
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.clients-carousel {
  overflow: hidden;
  max-width: 1000px;
}

.clients-track {
  display: flex;
  gap: 0;
  animation: clients-marquee 28s linear infinite;
}

.client-card {
  flex: 0 0 200px;
  padding: 8px 4px;
}

.client-card a,
.client-card button {
  display: block;
  width: 100%;
  padding: 4px;
  background: #fff;
  border: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.client-card img {
  display: block;
  width: 100%;
  height: 86px;
  object-fit: contain;
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.home-rep {
  width: min(90%, 1200px);
  margin: 0 auto 50px;
  border: 1px solid var(--gold);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.home-rep h2 {
  font-size: 25px;
  margin: 0 0 6px;
  font-weight: 300;
}

.home-rep .kicker {
  color: var(--gold);
  border-bottom: 15px solid var(--gold);
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 10px;
  font-size: 25px;
}

.home-rep img {
  max-width: 221px;
}

.page-header {
  background: #f5f5f5;
  padding: 34px 0;
}

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

.page-header-title {
  margin: 0;
  font-size: 23px;
  font-weight: 300;
  color: #333;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--gold);
}

.breadcrumbs a {
  color: var(--gold);
}

.breadcrumbs .sep {
  margin: 0 4px;
  color: #bbb;
}

.breadcrumbs .home-ico {
  vertical-align: -1px;
}

.entry {
  padding: 50px 0;
}

.entry h1 {
  font-size: 25px;
  line-height: 35px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  border: 1px solid #e6e6e6;
  padding: 16px 18px 18px;
}

.service-card h2,
.service-card h3 {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font);
  color: var(--text);
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 3px solid var(--gold);
  line-height: 1.35;
}

.service-card .body {
  overflow: hidden;
}

.service-card img {
  float: left;
  width: 300px;
  max-width: 46%;
  height: auto;
  margin: 0 14px 8px 0;
}

.clients-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 20px;
}

.clients-gallery figure {
  margin: 0;
  border: 1px solid #c7c7c7;
  padding: 5px;
}

.clients-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.form-page .field {
  margin-bottom: 14px;
}

.form-page label {
  color: #000;
  display: block;
}

.form-page input,
.form-page textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 8px 10px;
  font: 14px var(--font);
  color: var(--text);
  background: #fff;
}

.form-page textarea {
  min-height: 160px;
}

.form-page button,
.newsletter-form button {
  background: var(--black);
  color: #fff;
  border: 0;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-feedback {
  min-height: 1.2em;
  font-size: 13px;
}

.tx-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.tx-block h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font);
  color: #000;
}

.tx-block img {
  display: block;
  margin: 0 auto 12px;
  max-height: 353px;
  width: auto;
}

.tx-table {
  width: 100%;
  border-collapse: collapse;
}

.tx-table td {
  border: 1px solid #000;
  padding: 2px 8px;
  vertical-align: top;
  text-align: left;
}

.catalog-wrap {
  text-align: center;
  margin: 12px 0 0;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 8px 18px;
  color: #333;
  font-size: 14px;
}

.btn-catalog:hover {
  background: #e4e4e4;
}

.radio-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.radio-hero img {
  display: block;
}

.entry ul {
  margin: 0 0 1em 20px;
  padding: 0;
}

.video-wrap iframe {
  width: 100%;
  height: 515px;
  border: 0;
}

#footer-widgets {
  background: var(--footer);
  color: #aaa;
  padding: 30px 0;
}

#footer-widgets h3 {
  color: var(--gold);
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-col p,
.footer-col {
  color: #ccc;
  font-size: 14px;
}

.footer-col a {
  color: #fff;
}

.newsletter-form p {
  margin: 0 0 10px;
}

.newsletter-form p:nth-child(3) {
  margin-bottom: 30px;
}

.home-rep strong {
  font-weight: 700;
}

.newsletter-form input {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  padding: 8px 10px;
  min-height: 38px;
}

.newsletter-form input::placeholder {
  color: #999;
}

.footer-brand img {
  display: block;
  margin: 0 auto;
  width: 250px;
  height: auto;
}

#footer-bottom {
  background: var(--black);
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  padding: 15px 0;
  text-align: center;
}

#footer-bottom a {
  color: #fff;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #222;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 780px) {
  #top-bar-wrap {
    display: none;
  }

  .nav-desktop {
    display: none;
  }

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

  .header-inner {
    min-height: 74px;
  }

  .home-about,
  .home-services,
  .home-cta,
  .home-clients,
  .home-rep,
  .two-col,
  .service-grid,
  .home-about-grid,
  .home-services-grid,
  .home-clients-grid,
  .tx-block,
  .radio-hero,
  .footer-grid,
  .page-header-inner {
    grid-template-columns: 1fr;
    display: block;
  }

  .home-about {
    padding: 30px 0;
  }

  .home-icon-col,
  .home-clients h1,
  .home-cta,
  .produtos-servicos {
    text-align: center;
    margin-bottom: 28px;
  }

  .home-cta {
    background-image: none;
    width: 92%;
    padding: 24px 16px;
  }

  .home-rep {
    width: 92%;
    text-align: left;
  }

  .clients-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card img {
    float: none;
    max-width: 100%;
    width: 100%;
    margin: 0 0 12px;
  }

  .video-wrap iframe {
    height: 220px;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .produtos-servicos .caption {
    position: static;
    display: inline-block;
    margin-top: -28px;
  }
}
