:root {
  --blue: #0072bc;
  --yellow: #fff212;
  --display: "Futura Md BT", "Century Gothic", Futura, "Trebuchet MS", "Segoe UI", sans-serif;
  --font: "Segoe UI", Arial, sans-serif;
  --shell: 1100px;
}

html {
  font-size: 14px;
}

body {
  margin: 0;
  background: #fff;
  color: #666;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus {
  left: 8px;
  z-index: 10000;
  background: #fff;
  color: var(--blue);
  padding: 8px 12px;
}

.shell {
  width: min(var(--shell), 100%);
  margin: 10px auto 0;
  background: var(--blue);
  color: #fff;
}

.site-header {
  background: var(--blue);
}

.brand {
  position: relative;
  height: 200px;
  background: var(--blue) url("/assets/img/top.jpg") left top no-repeat;
  overflow: hidden;
}

.brand-slogan {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: right center;
}

.logo {
  position: absolute;
  left: 40px;
  top: 18px;
  z-index: 2;
  display: block;
}

.logo img {
  width: 248px;
  height: auto;
}

.nav-toggle {
  display: none;
}

.menu {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 6px;
  list-style: none;
  margin: 0;
  padding: 4px 10px 16px;
}

.menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.55em 0.85em;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  background: #0086d6 url("/assets/img/fundo-menu.png") center / cover no-repeat;
  line-height: 1.2;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--yellow);
}

.slider {
  position: relative;
  max-width: 1050px;
  margin: 6px auto 0;
  aspect-ratio: 1050 / 400;
  background: #0a6aab;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s linear;
}

.slide.is-active {
  opacity: 1;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 54px;
  margin-top: -27px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
}

.slider-prev { left: 6px; }
.slider-next { right: 6px; }

.slider-prev:hover,
.slider-next:hover {
  opacity: 1;
}

.slider-prev::before,
.slider-next::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: 16px auto 0;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.slider-prev::before { transform: rotate(-135deg); }
.slider-next::before { transform: rotate(45deg); }

.home-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 24px 8px;
  text-align: center;
}

.home-icons a {
  color: #fff;
  text-decoration: none;
}

.home-icons h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-icons img {
  width: 104px;
  height: auto;
}

.tech {
  display: grid;
  grid-template-columns: 32.9% 1fr;
  gap: 28px;
  margin: 18px 15px 36px;
  padding: 36px 28px 32px;
  background: linear-gradient(to right, #0070bb 0%, #0078c1 6%, #0092d6 25%, #00a8eb 69%, #0075bd 100%);
}

.tech-title {
  border-right: 1px solid #fff;
  text-align: center;
  padding: 28px 12px 0 0;
}

.tech-title h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tech-title .tech-line {
  font-size: 32px;
  margin-bottom: 6px;
}

.tech-copy p {
  margin: 0 0 1.1em;
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  text-align: justify;
}

.tech-action {
  text-align: center;
  margin-top: 8px !important;
}

.btn-more {
  display: inline-block;
  background: #0072bc;
  border: 1px solid #0068ab;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25em;
  padding: 0.9em 1.8em;
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.btn-more:hover {
  background: #007ed0;
  border-color: #007ed0;
  color: #fff;
}

.kicker {
  margin: 22px 22px 16px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
}

.split {
  display: grid;
  gap: 30px;
  padding: 0 18px;
  margin-bottom: 30px;
}

.split-video {
  grid-template-columns: 31.1% 1fr;
}

.split-missao {
  grid-template-columns: 24.5% 1fr;
  align-items: center;
  margin-bottom: 40px;
}

.video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 420 / 212;
  height: auto;
  border: 0;
  background: #000;
}

.box {
  border: 1px solid #c7c7c7;
  background: #0a78c2 url("/assets/img/top.jpg") center / cover no-repeat;
  color: #fff;
  padding: 15px 16px 8px;
}

.box p,
.product p,
.rep-text,
.certs p {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 1.15em;
}

.just {
  text-align: justify;
}

.box-gap {
  margin: 0 18px 30px;
}

.box-missao {
  margin-top: 20px;
  box-shadow: 9px 10px 51px -32px rgba(255, 243, 18, 1);
}

.missao-mark {
  text-align: center;
}

.missao-mark h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.box-heading {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.center {
  text-align: center;
}

.center .box-heading,
.center p {
  text-align: center;
}

.certs-wrap {
  margin: 0 18px 36px;
  padding: 22px 24px 10px;
}

.certs-label {
  font-weight: 700;
  margin-bottom: 12px !important;
}

.certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.cert-heading {
  color: var(--yellow) !important;
  font-weight: 700;
  margin: 8px 0 8px !important;
}

.certs a,
.rep-text a,
.site-footer a {
  color: #fff;
  font-weight: 700;
}

.certs a:hover,
.rep-text a:hover,
.site-footer a:hover,
.btn-more:hover {
  color: #12a7ff;
}

.btn-more:hover {
  color: #fff;
}

.prod-layout {
  display: grid;
  grid-template-columns: minmax(0, 77.8%) minmax(180px, 22.2%);
  gap: 24px;
  padding: 0 12px 28px 18px;
}

.product {
  margin-bottom: 28px;
}

.product h2 {
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
}

.product img {
  display: block;
  margin: 12px auto 14px;
}

.side-title {
  margin: 0 0 12px;
  background: var(--yellow);
  color: #111;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 15px 0 0 0;
}

.side-menu {
  list-style: none;
  margin: 0;
  padding: 0 6px;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.side-menu a::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #b9e4fb;
  box-shadow: inset 0 0 0 2px #0072bc;
  vertical-align: 0;
}

.rep-text {
  margin: 8px 22px 80px;
  padding: 8px 4px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0 16px 36px;
}

.form-box p {
  margin: 0 0 6px;
  color: #fff;
}

.form-box input,
.form-box textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 12px;
  border: 1px solid #bbb;
  background: #fff;
  color: #222;
  font-family: var(--font);
  font-size: 17px;
}

.form-box input {
  height: 40px;
  line-height: 40px;
  padding: 0 8px;
}

.form-box textarea {
  min-height: 180px;
  padding: 8px;
  resize: vertical;
}

.form-box button {
  background: #f3f3f3;
  color: #222;
  border: 1px solid #ccc;
  padding: 6px 16px;
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
}

.form-feedback:empty {
  display: none;
}

.hp {
  position: absolute;
  left: -9999px;
}

.loc-box {
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.loc-box h2 {
  margin: 4px 0 8px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}

.loc-box p {
  margin: 0;
  text-align: center;
}

.map iframe {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
}

.site-footer {
  background: #1a8ad4 url("/assets/img/top.jpg") center / cover no-repeat;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 43.5% 34.8% 21.7%;
  gap: 10px;
  padding: 26px 28px 22px;
}

.footer-label {
  margin: 0 0 4px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.footer-grid p {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.to-top::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 4px auto 0;
  border-top: 3px solid #ddd;
  border-left: 3px solid #ddd;
  transform: rotate(45deg);
}

.to-top:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 800px) {
  .shell {
    margin-top: 0;
  }

  .brand {
    height: auto;
    min-height: 96px;
  }

  .brand-slogan {
    height: 96px;
    object-fit: contain;
    object-position: right center;
  }

  .logo {
    left: 8px;
    top: 12px;
  }

  .logo img {
    width: 104px;
  }

  .slider-prev,
  .slider-next {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 8px 16px 16px;
    border: 0;
    background: transparent;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
  }

  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-icon::before { top: -6px; }
  .nav-toggle-icon::after { top: 6px; }

  .menu {
    display: none;
    flex-direction: column;
    padding: 0 0 10px;
    gap: 0;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    background: transparent;
    padding: 0.7em 1.1em;
  }

  .home-icons,
  .tech,
  .split,
  .split-video,
  .split-missao,
  .prod-layout,
  .certs,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tech {
    margin: 12px 0 24px;
    padding: 20px 16px 24px;
  }

  .home-icons {
    padding-top: 22px;
  }

  .home-icons a + a {
    margin-top: 8px;
  }

  .map iframe {
    height: 320px;
  }

  .rep-text {
    margin-bottom: 48px;
  }

  .footer-grid {
    padding: 22px 18px 18px;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .tech {
    padding: 12px 10px 20px;
  }

  .tech-title {
    padding-top: 8px;
  }
}
