/*
Theme Name: MANITEC Grupos Geradores
Theme URI: https://manitec.com.br/
Author: MANITEC Grupos Geradores
Description: Tema institucional sob medida para venda, instalação e assistência técnica de grupos geradores.
Version: 1.3.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: manitec
*/

:root {
  --mt-blue: #0f71b8;
  --mt-blue-dark: #0a508c;
  --mt-red: #ff0009;
  --mt-red-dark: #c80007;
  --mt-navy: #061a2d;
  --mt-sky: #eaf5fc;
  --mt-orange: var(--mt-red);
  --mt-orange-dark: var(--mt-red-dark);
  --mt-ink: var(--mt-navy);
  --mt-graphite: #09243d;
  --mt-steel: #123f65;
  --mt-paper: #f7f9fb;
  --mt-muted: #566675;
  --mt-line: #dce4eb;
  --mt-white: #fff;
  --mt-shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mt-paper);
  color: var(--mt-ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

body.admin-bar .mt-site-header {
  top: 32px;
}

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

img {
  max-width: 100%;
  height: auto;
}

.mt-shell {
  width: var(--mt-shell);
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  background: #fff;
  color: #111;
  padding: 12px 16px;
}

.mt-topbar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--mt-blue-dark), var(--mt-blue));
  color: var(--mt-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mt-topbar::after {
  content: "";
  position: absolute;
  top: -80%;
  right: -4%;
  width: min(38vw, 520px);
  height: 260%;
  background:
    linear-gradient(
      118deg,
      transparent 0 18%,
      rgba(255, 255, 255, .16) 18% 27%,
      transparent 27% 42%,
      var(--mt-red) 42% 66%,
      var(--mt-red-dark) 66% 100%
    );
  opacity: .72;
  transform: skewX(-18deg);
  pointer-events: none;
}

.mt-topbar__inner {
  position: relative;
  z-index: 1;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mt-site-header {
  position: relative;
  z-index: 50;
  background: var(--mt-white);
  color: var(--mt-ink);
  box-shadow: 0 8px 30px rgba(6, 26, 45, .1);
}

.mt-site-header::after {
  content: "";
  display: block;
  height: 6px;
  background:
    linear-gradient(
      110deg,
      var(--mt-blue-dark) 0 42%,
      var(--mt-blue) 42% 62%,
      var(--mt-white) 62% 63%,
      var(--mt-red) 63% 86%,
      var(--mt-red-dark) 86% 100%
    );
}

.mt-nav-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.mt-brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.mt-brand__logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.mt-brand__logo-image {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.mt-brand__logo-link--footer .mt-brand__logo-image {
  width: 220px;
  max-height: 58px;
}

.mt-brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--mt-orange);
  color: var(--mt-ink);
  font-size: 24px;
  font-weight: 950;
  transform: skew(-6deg);
}

.mt-brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.mt-brand__copy strong {
  font-size: 23px;
  font-weight: 950;
  letter-spacing: .03em;
}

.mt-brand__copy small {
  margin-top: 5px;
  color: #b8bac0;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .2em;
}

.mt-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mt-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mt-nav a {
  color: var(--mt-blue-dark);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.mt-nav a:hover,
.mt-nav a:focus-visible,
.mt-nav .current-menu-item > a {
  color: var(--mt-orange);
}

.mt-button,
.wp-block-button__link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mt-orange);
  border-radius: 0;
  background: var(--mt-orange);
  color: var(--mt-white);
  padding: 0 25px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.mt-button:hover,
.mt-button:focus-visible,
.wp-block-button__link:hover {
  border-color: var(--mt-red-dark);
  background: var(--mt-red-dark);
  color: var(--mt-white);
  transform: translateY(-2px);
}

.mt-button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 11px;
}

.mt-menu-toggle {
  display: none;
  border: 1px solid var(--mt-blue);
  background: transparent;
  color: var(--mt-blue-dark);
  padding: 11px 15px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mt-hero {
  min-height: 680px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(15, 113, 184, .36), transparent 30%),
    radial-gradient(circle at 98% 100%, rgba(255, 0, 9, .16), transparent 30%),
    linear-gradient(112deg, #061a2d 0%, #092b49 54%, #04111e 100%);
  color: var(--mt-white);
}

.mt-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, #000, transparent 75%);
}

.mt-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -105px;
  width: min(48vw, 700px);
  height: 190px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(
      118deg,
      transparent 0 22%,
      rgba(15, 113, 184, .9) 22% 46%,
      rgba(10, 80, 140, .96) 46% 57%,
      transparent 57% 64%,
      rgba(255, 0, 9, .9) 64% 84%,
      rgba(200, 0, 7, .95) 84% 100%
    );
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 32% 100%);
  opacity: .92;
}

.mt-hero__layout {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 70px;
  padding-block: 72px;
}

.mt-eyebrow {
  margin: 0 0 20px;
  color: var(--mt-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.mt-eyebrow--dark {
  color: var(--mt-orange-dark);
}

.mt-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 850;
  letter-spacing: -.047em;
  line-height: .99;
}

.mt-hero h1 em {
  display: block;
  color: var(--mt-orange);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.mt-hero__lead {
  max-width: 660px;
  margin: 27px 0 0;
  color: #c9cbd0;
  font-size: 18px;
  line-height: 1.7;
}

.mt-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.mt-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mt-text-link span {
  color: var(--mt-orange);
}

.mt-hero__proof {
  max-width: 630px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-top: 22px;
}

.mt-hero__proof div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, .13);
  padding-right: 20px;
}

.mt-hero__proof div + div {
  padding-left: 22px;
}

.mt-hero__proof div:last-child {
  border-right: 0;
}

.mt-hero__proof strong {
  font-size: 22px;
  font-weight: 900;
}

.mt-hero__proof span {
  margin-top: 5px;
  color: #97999e;
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
}

.mt-hero__visual {
  min-height: 470px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-hero__equipment {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background-color: #fff;
  background-image: url("assets/images/manitec-equipamentos-generac.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 760px auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .34);
}

.mt-visual-badge {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 8px;
  display: flex;
  flex-direction: column;
  background: var(--mt-white);
  color: var(--mt-ink);
  padding: 12px 18px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .35);
  transform: rotate(2deg);
}

.mt-visual-badge span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
}

.mt-visual-badge strong {
  color: var(--mt-red-dark);
  font-size: 18px;
  letter-spacing: .08em;
}

.mt-visual-caption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 20px;
  width: 230px;
  border-radius: 0 8px 8px 0;
  border-left: 3px solid var(--mt-red);
  background: rgba(6, 26, 45, .86);
  padding: 10px 12px 10px 13px;
  color: #fff;
  font-size: 11px;
  line-height: 1.6;
  text-transform: uppercase;
}

.mt-trust {
  background: linear-gradient(90deg, var(--mt-blue-dark), var(--mt-blue));
  color: var(--mt-white);
}

.mt-trust__items {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-align: center;
}

.mt-trust__items span + span {
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.mt-section {
  padding-block: 112px;
}

.mt-section--compact {
  padding-block: 94px;
}

.mt-section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 50px;
}

.mt-section-heading h2,
.mt-engineering h2,
.mt-cta h2,
.mt-page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: -.045em;
  line-height: 1.03;
}

.mt-section-heading > p {
  margin: 0 0 5px;
  color: var(--mt-muted);
  font-size: 16px;
  line-height: 1.7;
}

.mt-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--mt-line);
  border-left: 1px solid var(--mt-line);
}

.mt-service-card {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
  background: var(--mt-white);
  padding: 33px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mt-service-card:hover {
  z-index: 2;
  box-shadow: 0 20px 50px rgba(20, 20, 20, .1);
  transform: translateY(-5px);
}

.mt-service-card > span {
  color: var(--mt-orange-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
}

.mt-service-card h2,
.mt-service-card h3 {
  max-width: 270px;
  margin: 67px 0 14px;
  font-size: 25px;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.mt-service-card p {
  margin: 0;
  color: var(--mt-muted);
  font-size: 14px;
  line-height: 1.7;
}

.mt-service-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--mt-line);
  padding-top: 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mt-service-card a b {
  color: var(--mt-orange-dark);
}

.mt-engineering {
  background: var(--mt-graphite);
  color: var(--mt-white);
}

.mt-engineering__layout {
  min-height: 630px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.mt-engineering__visual {
  min-height: 630px;
  position: relative;
  background:
    linear-gradient(150deg, rgba(15, 113, 184, .32), transparent 46%),
    linear-gradient(330deg, rgba(255, 0, 9, .12), transparent 38%),
    repeating-linear-gradient(90deg, #123451 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, #123451 0 1px, transparent 1px 82px),
    #061a2d;
}

.mt-tech-panel {
  position: absolute;
  inset: 190px 145px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 4px solid var(--mt-blue);
  background: #04111e;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .42);
}

.mt-tech-panel span {
  display: grid;
  place-items: center;
  border: 1px solid #173d5d;
  color: var(--mt-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.mt-engineering__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px 80px 90px;
}

.mt-engineering__copy > p:not(.mt-eyebrow) {
  max-width: 620px;
  margin: 24px 0;
  color: #b8bac0;
  font-size: 16px;
  line-height: 1.8;
}

.mt-engineering__copy ul {
  display: grid;
  gap: 12px;
  margin: 5px 0 31px;
  padding: 0;
  list-style: none;
  color: #e6e7e9;
  font-size: 14px;
}

.mt-engineering__copy li {
  position: relative;
  padding-left: 25px;
}

.mt-engineering__copy li::before {
  content: "";
  position: absolute;
  top: .45em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--mt-orange);
}

.mt-segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--mt-line);
  border-left: 1px solid var(--mt-line);
}

.mt-segment-grid > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
  background: #f9f9f7;
  padding: 22px 24px;
}

.mt-segment-grid span {
  color: var(--mt-orange-dark);
  font-size: 10px;
  font-weight: 900;
}

.mt-segment-grid strong {
  font-size: 20px;
}

.mt-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mt-post-card {
  background: #fff;
  border: 1px solid var(--mt-line);
}

.mt-post-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #24272c;
}

.mt-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mt-post-card__body {
  padding: 25px;
}

.mt-post-card time {
  color: var(--mt-orange-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mt-post-card h3 {
  margin: 12px 0;
  font-size: 21px;
}

.mt-post-card p {
  color: var(--mt-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mt-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(15, 113, 184, .32), transparent 28%),
    linear-gradient(120deg, #061a2d, #0a3153);
  color: #fff;
  padding-block: 85px;
}

.mt-page-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 0 44%;
  background:
    linear-gradient(90deg, #0a3153 0%, rgba(10, 49, 83, .72) 22%, rgba(10, 49, 83, .08) 58%),
    url("assets/images/manitec-equipamentos-generac.png") right -25px bottom -25px / 650px auto no-repeat;
  opacity: .94;
  pointer-events: none;
}

.mt-page-hero::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 420px;
  height: 190px;
  background: linear-gradient(118deg, transparent 0 28%, var(--mt-blue) 28% 58%, transparent 58% 65%, var(--mt-red) 65%);
  opacity: .72;
  transform: skewX(-10deg);
  pointer-events: none;
}

.mt-page-hero .mt-shell {
  position: relative;
  z-index: 1;
}

.mt-page-hero .mt-shell > * {
  max-width: 650px;
}

.mt-page-hero .mt-eyebrow {
  margin-bottom: 13px;
}

.mt-page-hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: #c2c4c8;
  font-size: 17px;
  line-height: 1.7;
}

.mt-content {
  padding-block: 75px;
}

.mt-content__inner {
  max-width: 850px;
}

.mt-content__inner > * {
  line-height: 1.75;
}

.mt-content__inner h2,
.mt-content__inner h3 {
  line-height: 1.2;
}

.mt-featured-image {
  margin-bottom: 42px;
}

.mt-section--dark {
  background: var(--mt-graphite);
  color: var(--mt-white);
}

.mt-section--dark .mt-section-heading > p,
.mt-section--dark .mt-prose {
  color: #b8bac0;
}

.mt-section--muted {
  background: #ecece8;
}

.mt-section-heading--single {
  grid-template-columns: 1fr;
}

.mt-section-heading--single h2 {
  max-width: 850px;
}

.mt-stats {
  background: linear-gradient(90deg, var(--mt-blue-dark), var(--mt-blue));
  color: var(--mt-white);
}

.mt-stats__grid {
  min-height: 155px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mt-stats__grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .23);
  padding: 25px 30px;
}

.mt-stats__grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, .23);
}

.mt-stats__grid strong {
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -.035em;
}

.mt-stats__grid span {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mt-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 38px;
  border-top: 1px solid #383b41;
  border-left: 1px solid #383b41;
}

.mt-solution-grid article {
  min-height: 330px;
  border-right: 1px solid #383b41;
  border-bottom: 1px solid #383b41;
  padding: 34px;
}

.mt-solution-grid span,
.mt-value-grid span,
.mt-sector-grid > article > span,
.mt-assistance-grid > article > span {
  color: var(--mt-orange);
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
}

.mt-solution-grid h3 {
  margin: 92px 0 18px;
  font-size: 27px;
}

.mt-solution-grid p {
  color: #aeb0b5;
  font-size: 14px;
  line-height: 1.75;
}

.mt-button--outline {
  border-color: #575a60;
  background: transparent;
  color: #fff;
}

.mt-button--outline:hover {
  border-color: var(--mt-orange);
  color: var(--mt-white);
}

.mt-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.mt-split h2,
.mt-contact-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.mt-prose {
  color: var(--mt-muted);
  font-size: 17px;
  line-height: 1.8;
}

.mt-prose p {
  margin: 0 0 22px;
}

.mt-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #383b41;
  border-left: 1px solid #383b41;
}

.mt-value-grid article {
  min-height: 310px;
  border-right: 1px solid #383b41;
  border-bottom: 1px solid #383b41;
  padding: 30px;
}

.mt-value-grid h3 {
  margin: 75px 0 13px;
  font-size: 22px;
}

.mt-value-grid p {
  color: #aeb0b5;
  font-size: 13px;
  line-height: 1.7;
}

.mt-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--mt-line);
  border-left: 1px solid var(--mt-line);
}

.mt-check-grid > div {
  min-height: 175px;
  border-right: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
  background: #fff;
  padding: 30px 32px;
}

.mt-check-grid strong {
  display: block;
  position: relative;
  padding-left: 22px;
  font-size: 19px;
}

.mt-check-grid strong::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--mt-orange);
}

.mt-check-grid p {
  margin: 15px 0 0;
  color: var(--mt-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mt-process {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid #383b41;
  list-style: none;
}

.mt-process li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  border-bottom: 1px solid #383b41;
  padding: 25px 0;
}

.mt-process > li > span {
  color: var(--mt-orange);
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
}

.mt-process strong {
  font-size: 20px;
}

.mt-process p {
  margin: 6px 0 0;
  color: #aeb0b5;
  font-size: 14px;
}

.mt-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--mt-line);
  border-left: 1px solid var(--mt-line);
}

.mt-product-grid article {
  min-height: 520px;
  border-right: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
  background:
    linear-gradient(160deg, rgba(15, 113, 184, .12), transparent 34%),
    linear-gradient(340deg, rgba(255, 0, 9, .05), transparent 28%),
    #fff;
  padding: 38px;
}

.mt-product-grid__tag {
  display: inline-flex;
  border: 1px solid var(--mt-orange);
  color: var(--mt-orange-dark);
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mt-product-grid h2 {
  margin: 105px 0 20px;
  font-size: 29px;
  line-height: 1.1;
}

.mt-product-grid p,
.mt-product-grid li {
  color: var(--mt-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mt-product-grid ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.mt-sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--mt-line);
  border-left: 1px solid var(--mt-line);
}

.mt-sector-grid article {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
  background: #fff;
  padding: 35px;
}

.mt-sector-grid h2,
.mt-assistance-grid h2 {
  margin: 65px 0 16px;
  font-size: 27px;
  line-height: 1.15;
}

.mt-sector-grid p,
.mt-assistance-grid p {
  color: var(--mt-muted);
  font-size: 14px;
  line-height: 1.75;
}

.mt-sector-grid .mt-text-link {
  align-self: flex-start;
  margin-top: auto;
}

.mt-assistance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--mt-line);
  border-left: 1px solid var(--mt-line);
}

.mt-assistance-grid article {
  min-height: 390px;
  border-right: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
  background: #fff;
  padding: 35px;
}

.mt-diagnostic-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mt-diagnostic-list li {
  position: relative;
  border-bottom: 1px solid var(--mt-line);
  padding: 16px 10px 16px 30px;
  color: #404247;
}

.mt-diagnostic-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mt-orange-dark);
  font-weight: 900;
}

.mt-contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.mt-contact-list {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--mt-line);
}

.mt-contact-list > div {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--mt-line);
  padding: 18px 0;
}

.mt-contact-list span {
  color: var(--mt-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mt-contact-list a,
.mt-contact-list strong {
  margin-top: 6px;
  font-size: 17px;
}

.mt-contact-list a:hover {
  color: var(--mt-orange-dark);
}

.mt-contact-form {
  min-width: 0;
}

.mt-plugin-notice {
  border: 1px solid var(--mt-line);
  background: #fff;
  padding: 38px;
}

.mt-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(108deg, var(--mt-red-dark), var(--mt-red));
  color: var(--mt-white);
  padding-block: 82px;
}

.mt-cta::after {
  content: "";
  position: absolute;
  top: -55%;
  right: -7%;
  width: min(40vw, 560px);
  height: 215%;
  background: linear-gradient(120deg, transparent 0 31%, rgba(255, 255, 255, .16) 31% 41%, transparent 41% 48%, rgba(6, 26, 45, .2) 48%);
  transform: skewX(-15deg);
  pointer-events: none;
}

.mt-cta .mt-shell {
  position: relative;
  z-index: 1;
}

.mt-cta .mt-eyebrow {
  color: var(--mt-white);
}

.mt-cta__layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 80px;
}

.mt-cta__layout p:not(.mt-eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.mt-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.mt-button--dark {
  border-color: var(--mt-navy);
  background: var(--mt-navy);
  color: var(--mt-white);
}

.mt-button--dark:hover {
  border-color: var(--mt-blue-dark);
  background: var(--mt-blue-dark);
  color: #fff;
}

.mt-site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(15, 113, 184, .14), transparent 34%),
    var(--mt-navy);
  color: #c6c7ca;
  padding-top: 68px;
}

.mt-site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(110deg, var(--mt-blue-dark) 0 58%, var(--mt-blue) 58% 66%, var(--mt-white) 66% 67%, var(--mt-red) 67% 90%, var(--mt-red-dark) 90%);
}

.mt-footer-brand .mt-brand__logo-link {
  width: fit-content;
  background: var(--mt-white);
  padding: 10px 12px;
}

.mt-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 52px;
}

.mt-footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  color: #8f9196;
  font-size: 14px;
  line-height: 1.7;
}

.mt-footer-col h3 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mt-footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mt-footer-col a,
.mt-footer-col li {
  color: #92949a;
  font-size: 13px;
  line-height: 1.6;
}

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

.mt-footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #25272b;
  color: #707278;
  font-size: 11px;
  text-transform: uppercase;
}

.mt-empty {
  border: 1px solid var(--mt-line);
  background: #fff;
  padding: 35px;
}

.pagination {
  margin-top: 35px;
}

@media (max-width: 1050px) {
  .mt-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    background: var(--mt-white);
    border: 1px solid var(--mt-line);
    box-shadow: 0 18px 45px rgba(6, 26, 45, .18);
    padding: 18px;
  }

  .mt-nav.is-open {
    display: block;
  }

  .mt-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .mt-nav li {
    border-bottom: 1px solid var(--mt-line);
  }

  .mt-nav a {
    display: block;
    padding: 13px 4px;
  }

  .mt-nav-row > .mt-button {
    display: none;
  }

  .mt-menu-toggle {
    display: block;
  }

  .mt-hero__layout {
    grid-template-columns: 1fr;
  }

  .mt-engineering__copy {
    padding-left: 55px;
  }

  .mt-tech-panel {
    inset: 210px 70px;
  }

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

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

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

  .mt-product-grid {
    grid-template-columns: 1fr;
  }

  .mt-product-grid article {
    min-height: 400px;
  }

  .mt-product-grid h2 {
    margin-top: 70px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .mt-site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  :root {
    --mt-shell: min(100% - 28px, 1180px);
  }

  .mt-topbar__inner {
    justify-content: center;
  }

  .mt-topbar__inner span {
    display: none;
  }

  .mt-nav-row {
    min-height: 72px;
  }

  .mt-brand__logo-image {
    width: 160px;
    max-height: 39px;
  }

  .mt-brand__logo-link--footer .mt-brand__logo-image {
    width: 205px;
    max-height: 54px;
  }

  .mt-brand__copy strong {
    font-size: 20px;
  }

  .mt-hero__layout {
    min-height: 0;
    padding-block: 64px;
  }

  .mt-hero h1 {
    font-size: 45px;
  }

  .mt-hero__lead {
    font-size: 16px;
  }

  .mt-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mt-text-link {
    align-self: flex-start;
  }

  .mt-hero__proof {
    gap: 15px;
  }

  .mt-hero__proof div {
    padding-right: 8px;
  }

  .mt-hero__proof div + div {
    padding-left: 10px;
  }

  .mt-hero__proof strong {
    font-size: 17px;
  }

  .mt-hero__proof span {
    font-size: 9px;
  }

  .mt-hero__visual {
    min-height: 350px;
  }

  .mt-hero__equipment {
    height: 320px;
    background-size: 580px auto;
  }

  .mt-page-hero::before {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(6, 26, 45, .95), rgba(6, 26, 45, .76)),
      url("assets/images/manitec-equipamentos-generac.png") center bottom / 560px auto no-repeat;
    opacity: .56;
  }

  .mt-trust__items {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 12px;
  }

  .mt-trust__items span {
    padding: 10px 4px;
  }

  .mt-trust__items span + span {
    border-left: 0;
  }

  .mt-section,
  .mt-section--compact {
    padding-block: 70px;
  }

  .mt-section-heading,
  .mt-cta__layout,
  .mt-split,
  .mt-contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mt-service-grid,
  .mt-segment-grid,
  .mt-post-grid,
  .mt-solution-grid,
  .mt-check-grid,
  .mt-sector-grid,
  .mt-assistance-grid {
    grid-template-columns: 1fr;
  }

  .mt-service-card {
    min-height: 305px;
  }

  .mt-service-card h3 {
    margin-top: 45px;
  }

  .mt-engineering__layout {
    grid-template-columns: 1fr;
  }

  .mt-engineering__visual {
    min-height: 390px;
  }

  .mt-tech-panel {
    inset: 130px 100px;
  }

  .mt-engineering__copy {
    padding: 65px 0;
  }

  .mt-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mt-value-grid,
  .mt-stats__grid {
    grid-template-columns: 1fr;
  }

  .mt-stats__grid > div,
  .mt-stats__grid > div:first-child {
    min-height: 115px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .23);
    border-left: 0;
  }

  .mt-process li {
    grid-template-columns: 55px 1fr;
  }

  .mt-contact-layout {
    gap: 55px;
  }

  .mt-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
