:root {
  --green: #066a36;
  --lime: #85c226;
  --text: #4a4a4a;
  --dark: #222;
  --darker: #1b1b1b;
  --gray: #f2f2f2;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
.page .entry a,
.page .entry a:hover { text-decoration: none; }

.sr-only {
  border: 0; clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Header */
.site-header { background: #fff; padding-top: 10px; }
.topo {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 33.3333% 25.8182% 40.8485%;
  align-items: flex-start;
  padding: 10px 0 20px;
  color: #000;
  font-size: 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}
.logo img { width: 200px; height: 76px; margin-top: 20px; }
.topo-phones {
  grid-column: 3;
  justify-self: stretch;
  width: 100%;
  text-align: left;
  padding-right: 15px;
  line-height: 1.55;
}
.topo-phones i {
  color: var(--lime);
  font-size: 20px;
  width: 22px;
  text-align: center;
}
.topo-phones a { color: var(--lime); }

.menu-bar { background: var(--green); }
.menu-bar-inner {
  display: flex;
  justify-content: center;
  position: relative;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 64px;
  padding: 0 15px;
  background: var(--green);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--lime);
}
.main-nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--green);
  border: 1px solid #fff;
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu { display: block; }
.main-nav .sub-menu a {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .6px;
  text-transform: none;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.main-nav .sub-menu a:hover { background: var(--green); }
.nav-arrow { margin-left: 6px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 64px;
  padding: 0 20px;
  cursor: pointer;
}
.nav-toggle i { margin-right: 8px; }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 10px 20px 20px; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #333;
  font-size: 15px;
}
.mobile-nav .sub-menu { padding-left: 16px; }

/* Hero */
.hero {
  position: relative;
  min-height: 450px;
  height: 450px;
  overflow: hidden;
  background: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background-color: #000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: .2;
}
.hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-family: Montserrat, sans-serif;
}
.hero-copy h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.hero-copy h2 {
  margin: 8px 0 0;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s;
}
.hero:hover .hero-nav { opacity: 1; }
.hero-prev { left: 12px; }
.hero-next { right: 12px; }
.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.5); cursor: pointer;
}
.hero-dots button.active { background: #fff; }

/* Home sections */
.about-split {
  background: #fff;
  padding: 0;
}
.about-split .container {
  background: url("/images/2019/06/b01.jpg") center center / cover no-repeat;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  overflow: hidden;
}
.gallery-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.about-copy {
  background: #fff;
  padding: 0 60px 0 0;
}
.gallery-copy {
  background: transparent;
  padding: 0;
}
.kicker {
  margin: 0;
  line-height: 1.2;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  font-family: Montserrat, sans-serif;
}
.brand-title {
  margin: 0;
  color: var(--green);
  font-size: 50px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}
.about-copy h3,
.gallery-copy h2:not(.brand-title) {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
}
.gallery-copy h2 + h2 { margin-top: 8px; }
.gallery-copy .brand-title { margin: 0; }
.btn-wrap { margin-top: 60px; }

.saibaMais {
  background: var(--green);
  padding: 10px;
  display: inline-block;
  font-weight: 700;
  color: #fff;
}
.saibaMais a,
.card-cat,
.card-cat .saibaMais { color: #fff; }

.product-cards {
  background: var(--gray);
  padding: 30px 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.card-cat {
  background: center / cover no-repeat;
  padding: 220px 50px 50px;
  text-align: center;
  display: block;
  transition: filter .4s, outline .4s, outline-offset .4s;
}
.card-cat:hover {
  outline: 2px solid var(--lime);
  outline-offset: -10px;
  filter: contrast(150%);
  box-shadow: 20px 20px 50px 15px inset;
}
.card-cat .saibaMais { margin-top: 0; }

.gallery-teaser { padding: 70px 0; }
.teaser-photos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.teaser-photos .rollover1 {
  display: block;
  width: 220px;
  transition: filter .4s, outline .4s, outline-offset .4s;
}
.teaser-photos img {
  width: 220px;
  height: 300px;
  object-fit: cover;
}
.teaser-photos .rollover1:hover {
  outline: 2px solid var(--lime);
  outline-offset: -10px;
  filter: contrast(150%);
  box-shadow: 20px 20px 50px 15px inset;
}

.home-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 100px;
  text-align: center;
}
.home-bottom h2 {
  margin: 0 0 5px;
  color: var(--green);
  font-size: 30px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}
.home-bottom img { margin: 0 auto; width: 100%; max-width: 500px; }
.home-bottom .saibaMais { margin-top: 25px; }

/* Inner pages */
.page-header {
  background: #f5f5f5;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}
.page-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.page-header-title {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
}
.breadcrumbs {
  font-size: 13px;
  line-height: 1.4;
  color: #888;
}
.breadcrumbs a { color: #888; }
.breadcrumbs a:hover { color: var(--green); }
.sep { margin: 0 6px; }

.entry { padding: 30px 0 60px; }
.entry p { margin: 0 0 1em; }
.inner-intro { margin-bottom: 24px; }

.split-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.map-wrap iframe {
  width: 100%;
  height: 820px;
  border: 0;
  display: block;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.install-card h3 {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
  color: #333;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 4px;
}
.gallery-item {
  margin: 0;
  padding: 0;
  text-align: center;
  min-width: 0;
  width: 100%;
}
.gallery-item a {
  display: block;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: filter .4s, outline .4s, outline-offset .4s;
}
.gallery-item a:hover img {
  outline: 2px solid var(--lime);
  outline-offset: -10px;
  filter: contrast(150%);
  box-shadow: 20px 20px 50px 15px inset;
}
.gallery-caption {
  text-align: center;
  font-weight: 400;
  margin: 4px 0 6px;
  font-size: 13px;
  color: #333;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  background: transparent; border: 0; color: #fff;
  font-size: 36px; cursor: pointer; line-height: 1;
}

/* Form */
.wpcf7 label { display: block; margin: 0 0 14px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font: inherit;
  color: #333;
}
.wpcf7 input[type="submit"],
.btn-submit {
  background: var(--green);
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 22px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.wpcf7 input[type="submit"]:hover,
.btn-submit:hover { background: var(--lime); }
.form-feedback { margin-top: 12px; font-weight: 700; }
.hp { position: absolute; left: -9999px; }

/* Footer */
.site-footer { background: var(--dark); color: #fff; }
.footer-widgets { background: var(--dark); padding: 30px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 15% 18% 23% 22% 22%;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
.footer-col i {
  font-size: 25px;
  color: #fff;
  margin-right: 6px;
  width: 28px;
  display: inline-block;
}
.footer-col .lbl {
  color: var(--lime);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}
.footer-col p { margin: 0 0 8px; }
.footer-col a,
.footer-col strong { color: #fff; font-weight: 700; }
.footer-social {
  width: 90%;
  max-width: 1200px;
  margin: 16px auto 8px;
  text-align: center;
}
.fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 4px;
  background: #3b5998;
  color: #fff;
  font-size: 18px;
}
#footer-bottom {
  background: var(--darker);
  color: #fff;
  font-size: 12px;
  line-height: 42px;
  height: 42px;
  text-align: center;
}
#footer-bottom .container { text-align: center; }
#footer-bottom a { color: #fff; }
#footer-bottom a:hover { color: var(--lime); }

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px; height: 40px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, background .2s;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--lime); color: #fff; }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; }
  .topo { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 10px 0; }
  .topo-phones { grid-column: auto; width: auto; text-align: center; padding: 0; }
  .logo { display: block; text-align: center; }
  .logo img { margin: 10px auto 0; }
  .about-split .container,
  .gallery-teaser .container,
  .home-bottom,
  .split-50,
  .cards-grid,
  .install-grid { grid-template-columns: 1fr; }
  .about-copy, .gallery-copy { padding: 0; }
  .about-split { background: #fff; }
  .about-split .container { background: none; }
  .page-header .container { flex-direction: column; align-items: flex-start; }
  .teaser-photos { justify-content: center; }
  .hero { min-height: 280px; height: 320px; }
  .hero-copy h1 { font-size: 28px !important; text-align: center !important; min-height: 0; height: auto; }
  .hero-copy h2 { font-size: 18px !important; text-align: center !important; }
  h1, h2, h3, h4, h5 { text-align: center !important; }
  .brand-title, .kicker, .btn-wrap { text-align: center !important; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 360px; }
  .teaser-photos { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: 22px !important; }
}
