@font-face {
  font-family: "Tecprint Computerfont";
  src: url("../fonts/computerfont.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muli";
  src: url("../fonts/muli-variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muli";
  src: url("../fonts/muli-italic-variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --tp-red: #9b1006;
  --tp-red-deep: #6f0b04;
  --tp-red-soft: #fff4f2;
  --tp-dark: #6f0b04;
  --tp-ink: #2b1512;
  --tp-gray: #4d3835;
  --tp-muted: #7a6865;
  --tp-line: #dedede;
  --tp-light: #f6f6f6;
  --tp-white: #ffffff;
  --tp-whatsapp: #25d366;
  --tp-radius-sm: 6px;
  --tp-radius: 8px;
  --tp-radius-lg: 12px;
  --tp-max: 1180px;
  --tp-shadow: 0 18px 44px rgba(43, 21, 18, 0.08);
  --tp-shadow-soft: 0 10px 28px rgba(43, 21, 18, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Muli", Arial, sans-serif;
  color: var(--tp-ink);
  background: var(--tp-white);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  z-index: 9999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--tp-white);
  background: var(--tp-red);
}

.wrap {
  width: min(100% - 40px, var(--tp-max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--tp-line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(100% - 40px, var(--tp-max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 190px;
  max-width: 46vw;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.primary-nav {
  flex: 1;
}

.menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.primary-nav .menu-item {
  position: relative;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--tp-gray);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .is-current > a {
  color: var(--tp-red);
}

.menu-item--has-submenu > .menu-link {
  gap: 7px;
}

.menu-item--has-submenu > .menu-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.equipment-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 4px;
  width: min(580px, calc(100vw - 40px));
  margin: 0;
  padding: 12px;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-white);
  box-shadow: var(--tp-shadow);
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.equipment-submenu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.menu-item--has-submenu:hover .equipment-submenu,
.menu-item--has-submenu:focus-within .equipment-submenu,
.menu-item--has-submenu.is-submenu-open .equipment-submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.equipment-submenu a {
  display: flex;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: var(--tp-radius-sm);
}

.equipment-submenu a:hover,
.equipment-submenu a:focus-visible {
  color: var(--tp-red);
  background: #fff7f6;
}

.icon-action,
.btn {
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 999px;
}

.header-actions,
.footer-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-action {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--tp-white);
  border-radius: 50%;
  background: var(--tp-red);
}

.icon-action svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.icon-action--static {
  color: var(--tp-red);
  background: var(--tp-white);
  opacity: 0.72;
}

.icon-action:hover,
.btn:hover {
  transform: translateY(-1px);
}

.icon-action:focus-visible,
.btn:focus-visible,
.primary-nav a:focus-visible,
.site-footer a:focus-visible,
.contact-item:focus-visible,
.social-link:focus-visible {
  outline: 3px solid rgba(155, 16, 6, 0.28);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  background: var(--tp-white);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--tp-red-deep);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
.title-font {
  font-family: "Muli", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  max-width: 890px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.02;
}

.hero-title {
  font-family: "Muli", Arial, sans-serif;
  font-weight: 900;
}

.hero-title--blog {
  max-width: 780px;
  font-size: clamp(30px, 3.4vw, 48px);
}

h2 {
  max-width: 790px;
  margin-bottom: 18px;
  font-family: "Muli", Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

p {
  color: var(--tp-gray);
  font-size: 17px;
}

.lead {
  max-width: 710px;
  font-size: 19px;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--tp-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 82px 0;
}

.section-sm {
  padding: 58px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center h2,
.section-heading--center p {
  margin-inline: auto;
}

.section-light {
  background: var(--tp-light);
}

.about-intro-section--compact {
  padding-top: 58px;
}

.about-intro-section--compact .split {
  gap: 38px;
}

.section-red {
  position: relative;
  overflow: hidden;
  color: var(--tp-white);
  background: var(--tp-red);
}

.section-red::after,
.hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -330px;
  bottom: -340px;
  border: 84px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.section-red .wrap {
  position: relative;
  z-index: 1;
}

.section-red p,
.section-red .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.section-red--slim {
  padding: 42px 0;
}

.section-red--slim::after {
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: -220px;
  border-width: 54px;
}

.center-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.center-copy h2 {
  max-width: 780px;
  margin-inline: auto;
  font-family: "Muli", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}

.center-copy .btn-row {
  justify-content: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary {
  color: var(--tp-white);
  background: var(--tp-red);
}

.btn-dark {
  color: var(--tp-white);
  background: var(--tp-red-deep);
}

.btn-white {
  color: var(--tp-red);
  background: var(--tp-white);
}

.btn-outline {
  color: var(--tp-red);
  border-color: var(--tp-red);
  background: var(--tp-white);
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  color: var(--tp-white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(43, 21, 18, 0.9) 0%, rgba(43, 21, 18, 0.58) 46%, rgba(155, 16, 6, 0.16) 100%),
    var(--hero-image, url("../images/ambient/hero-office.jpg")) center / cover;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero p,
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero-note {
  max-width: 550px;
  margin-top: 46px;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tp-radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-modern {
  background:
    linear-gradient(90deg, rgba(43, 21, 18, 0.9), rgba(43, 21, 18, 0.58) 42%, rgba(155, 16, 6, 0.08)),
    var(--hero-image, url("../images/ambient/hero-automation.jpg")) center / cover;
}

.hero-modern::after {
  display: none;
}

.hero-immersive {
  min-height: min(680px, calc(100vh - 76px));
  overflow: hidden;
  background-position: center right;
}

.hero-immersive::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--tp-white) 86%);
  pointer-events: none;
  z-index: 2;
}

.hero-slider {
  background: var(--tp-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  background:
    linear-gradient(90deg, rgba(43, 21, 18, 0.9), rgba(43, 21, 18, 0.58) 42%, rgba(155, 16, 6, 0.08)),
    var(--hero-image, url("../images/ambient/hero-automation.jpg")) center right / cover;
}

.hero-slide--retail {
  background-position: center right;
}

.hero-slide--spacepixel {
  background-position: center center;
}

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

.hero-slide .wrap {
  z-index: 3;
}

.hero-slider-controls {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  top: 52%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.hero-slider-arrow {
  width: 64px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tp-white);
  border: 0;
  border-radius: var(--tp-radius);
  background: transparent;
  cursor: pointer;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
  text-shadow: 0 6px 18px rgba(43, 21, 18, 0.5);
  opacity: 0.92;
  transition: opacity 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  color: var(--tp-white);
  background: transparent;
  outline: 0;
  opacity: 1;
  text-shadow:
    0 2px 0 rgba(43, 21, 18, 0.32),
    0 10px 18px rgba(43, 21, 18, 0.5);
  transform: translateX(4px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.44fr);
  gap: 42px;
  align-items: center;
}

.hero-grid--single {
  grid-template-columns: minmax(0, 720px);
}

.hero-copy h1 {
  max-width: 620px;
  font-family: "Muli", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
}

.hero-panel {
  align-self: end;
  max-width: 390px;
  padding: 24px;
  border-left: 4px solid var(--tp-red);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--tp-shadow-soft);
  backdrop-filter: blur(10px);
}

.hero-panel--floating {
  align-self: end;
  margin-bottom: -76px;
}

.hero-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--tp-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel p {
  margin: 0;
  color: var(--tp-gray);
  font-size: 17px;
}

.page-hero {
  padding: 112px 0 88px;
  color: var(--tp-white);
  background:
    linear-gradient(90deg, rgba(43, 21, 18, 0.88), rgba(111, 11, 4, 0.64)),
    var(--hero-image, url("../images/ambient/retail-automation.jpg")) center / cover;
}

.page-hero--compact {
  padding: 92px 0 72px;
}

.page-hero--contact {
  padding: 72px 0 54px;
}

.hero-title--contato {
  font-size: clamp(30px, 3.5vw, 46px);
}

.page-hero--equipment {
  background:
    linear-gradient(90deg, rgba(43, 21, 18, 0.98), rgba(111, 11, 4, 0.9)),
    var(--hero-image, url("../images/ambient/retail-automation.jpg")) center / cover;
  background-position: center, 70% center;
}

.page-hero--product {
  padding: 128px 0 104px;
  background:
    linear-gradient(90deg, rgba(43, 21, 18, 0.86), rgba(111, 11, 4, 0.58)),
    var(--hero-image, url("../images/ambient/retail-automation.jpg")) center / cover;
}

.page-hero p,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.media-frame {
  min-height: 430px;
  border-radius: var(--tp-radius-lg);
  overflow: hidden;
  background: var(--tp-light);
  box-shadow: var(--tp-shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-media-grid .media-frame {
  min-height: 360px;
}

.media-frame--product {
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f5f5f5);
}

.media-frame--product img {
  width: 100%;
  max-width: 460px;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.teaser-grid,
.blog-grid,
.download-grid,
.product-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

.teaser-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.teaser-card,
.post-card,
.product-card,
.download-card,
.form-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-white);
}

.teaser-card {
  min-height: 230px;
  padding: 30px;
}

.teaser-card::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 168px;
  height: 168px;
  border: 24px solid rgba(155, 16, 6, 0.06);
  border-radius: 50%;
}

.section-red .teaser-card {
  color: var(--tp-ink);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.about-value-card {
  min-height: 190px;
  padding: 28px;
  color: var(--tp-white);
  border-radius: var(--tp-radius);
  background: var(--tp-red);
  box-shadow: var(--tp-shadow-soft);
}

.about-value-card h3,
.about-value-card p {
  color: var(--tp-white);
}

.about-value-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.locacao-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1fr;
  gap: 2px;
  color: var(--tp-white);
  background: var(--tp-red);
}

.locacao-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  color: var(--tp-ink);
  background: transparent;
}

.locacao-intro,
.locacao-card {
  min-height: 310px;
  padding: 36px;
  background: var(--tp-red);
}

.locacao-grid--two .locacao-card {
  min-height: 260px;
  border-radius: var(--tp-radius-lg);
  box-shadow: var(--tp-shadow-soft);
}

.locacao-card .btn-row {
  margin-top: 22px;
}

.locacao-intro {
  background:
    linear-gradient(135deg, rgba(43, 21, 18, 0.18), rgba(155, 16, 6, 0)),
    var(--tp-red);
}

.locacao-intro h2,
.locacao-card h3,
.locacao-intro p,
.locacao-card p {
  color: var(--tp-white);
}

.locacao-intro h2,
.locacao-card h3 {
  max-width: 360px;
}

.locacao-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--tp-red);
  font-size: 13px;
  font-weight: 900;
  border-radius: 50%;
  background: var(--tp-white);
}

.locacao-tags {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.locacao-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--tp-red);
  font-weight: 900;
  border-radius: var(--tp-radius-sm);
  background: var(--tp-white);
}

.sectors-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
}

.sectors-layout--balanced {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.proof-wrap {
  text-align: center;
}

.proof-wrap h2 {
  margin-inline: auto;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.proof-row div {
  padding: 24px 18px;
  border-top: 2px solid var(--tp-red);
  background: var(--tp-light);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  color: var(--tp-red);
  font-size: 30px;
  line-height: 1;
}

.proof-row span {
  margin-top: 8px;
  color: var(--tp-gray);
  font-weight: 800;
}

.num {
  display: block;
  margin-bottom: 26px;
  color: var(--tp-red);
  font-weight: 900;
}

.sector-grid,
.clients-strip {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.sector-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sector-grid--balanced {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector,
.client-logo {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 14px;
  color: var(--tp-gray);
  text-align: center;
  font-weight: 900;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-white);
}

.sector-card {
  align-content: center;
  gap: 10px;
  width: 100%;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.sector-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
  color: var(--tp-red);
}

.sector-card-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.sector-card small {
  display: none;
}

.sector-card:hover,
.sector-card:focus-visible {
  color: var(--tp-white);
  transform: translateY(-3px);
  border-color: var(--tp-red);
  background: var(--tp-red);
  box-shadow: var(--tp-shadow-soft);
}

.sector-card:hover .sector-card-icon,
.sector-card:focus-visible .sector-card-icon {
  color: var(--tp-white);
}

.sector-card:focus-visible {
  outline: 3px solid rgba(155, 16, 6, 0.28);
  outline-offset: 3px;
}

.sector-modal[hidden] {
  display: none;
}

.sector-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.sector-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 21, 18, 0.62);
}

.sector-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-lg);
  background: var(--tp-white);
  box-shadow: 0 24px 70px rgba(43, 21, 18, 0.22);
}

.sector-modal-dialog:focus {
  outline: none;
}

.sector-modal-dialog h3 {
  margin-bottom: 12px;
  color: var(--tp-ink);
  font-size: clamp(24px, 4vw, 34px);
}

#sector-modal-summary {
  margin-bottom: 14px;
  color: var(--tp-red);
  font-weight: 900;
}

.sector-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--tp-ink);
  font-size: 24px;
  line-height: 1;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  background: var(--tp-white);
  cursor: pointer;
}

.sector-modal-open {
  overflow: hidden;
}

.clients-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.client-logo {
  min-height: 82px;
  color: #a5a5a5;
}

.clients-section {
  overflow: hidden;
  background: var(--tp-white);
}

.clients-section.section-light {
  background: var(--tp-light);
}

.clients-wrap {
  text-align: center;
}

.clients-wrap h2 {
  margin-inline: auto;
  font-family: "Muli", Arial, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.clients-marquee {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, rgba(43, 21, 18, 1) 8%, rgba(43, 21, 18, 1) 92%, transparent);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: clients-marquee 34s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.clients-track-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.clients-marquee .client-logo {
  min-width: 180px;
  min-height: 96px;
  padding: 18px 26px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.clients-marquee .client-logo img {
  max-width: 210px;
  max-height: 66px;
  object-fit: contain;
}

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

  to {
    transform: translateX(-50%);
  }
}

.product-toolbar {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 18px;
  margin-top: 38px;
}

.input-like {
  padding: 16px 22px;
  color: var(--tp-muted);
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  background: var(--tp-white);
}

.product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 100%;
  border-color: #ead8d4;
  box-shadow: 0 8px 20px rgba(43, 21, 18, 0.035);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card-link {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 4px;
  border-radius: 999px;
  background: var(--tp-red);
  transform: scaleY(0.55);
  transform-origin: top;
  transition: transform 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 16, 6, 0.28);
  box-shadow: var(--tp-shadow-soft);
}

.product-card:hover::before {
  transform: scaleY(1);
}

.product-card-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100%;
  padding: 20px;
  border-right: 1px solid var(--tp-line);
  background: var(--tp-white);
}

.product-card img {
  width: 100%;
  max-width: 190px;
  height: 100%;
  min-height: 178px;
  object-fit: contain;
  transition: transform 200ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card-body,
.post-card-body,
.download-card {
  padding: 22px;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 24px 24px 22px;
}

.product-card p,
.post-card p,
.download-card p {
  font-size: 16px;
}

.download-card h2 {
  margin-bottom: 10px;
  font-family: "Muli", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.product-card h2,
.product-card h3 a,
.post-card h2 a,
.post-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card-action {
  margin-top: 16px;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--tp-red);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  pointer-events: none;
}

.product-card:hover .product-card-cta {
  color: var(--tp-red-deep);
  border-color: rgba(155, 16, 6, 0.18);
  background: var(--tp-red-soft);
}

.application-copy {
  max-width: 820px;
}

.application-copy p {
  max-width: 760px;
  margin-inline: auto;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.benefit-list span {
  padding: 12px 14px;
  color: var(--tp-gray);
  font-weight: 900;
  border-left: 3px solid var(--tp-red);
  background: var(--tp-light);
}

.submenu-wire {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-lg);
  background: var(--tp-white);
}

.submenu-title {
  padding: 18px 24px;
  color: var(--tp-white);
  font-weight: 900;
  background: var(--tp-red);
}

.submenu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submenu-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  color: var(--tp-ink);
  font-weight: 800;
  text-decoration: none;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
}

.submenu-list a:nth-child(even) {
  border-right: 0;
}

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: var(--tp-light);
}

.pattern-grid span {
  padding: 16px;
  color: var(--tp-gray);
  font-weight: 800;
  border: 1px dashed #c9c9c9;
  border-radius: 16px;
  background: var(--tp-white);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card-cover {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  height: auto;
  color: #999;
  font-weight: 900;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(155, 16, 6, 0.1), rgba(255, 255, 255, 0.6)),
    url("../images/ambient/info-display.jpg") center / cover;
}

.post-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 26px rgba(43, 21, 18, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 16, 6, 0.28);
  box-shadow: var(--tp-shadow-soft);
}

.post-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-cover--contain {
  background: var(--tp-white);
}

.post-card-cover--contain img {
  object-fit: contain;
  padding: 10px;
}

.post-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  background: var(--tp-white);
}

.blog-grid--clean .post-card:nth-child(2) .post-card-cover {
  background:
    linear-gradient(135deg, rgba(155, 16, 6, 0.12), rgba(255, 255, 255, 0.55)),
    url("../images/ambient/retail-automation.jpg") center / cover;
}

.blog-grid--clean .post-card:nth-child(3) .post-card-cover {
  background:
    linear-gradient(135deg, rgba(155, 16, 6, 0.12), rgba(255, 255, 255, 0.55)),
    url("../images/ambient/support-office.jpg") center / cover;
}

.blog-grid--clean .post-card-body p {
  display: none;
}

.blog-grid--clean .post-card h2,
.blog-grid--clean .post-card h3 {
  margin: 0;
  font-family: "Muli", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  text-transform: none;
}

.blog-grid--clean .post-card h2 a,
.blog-grid--clean .post-card h3 a {
  display: -webkit-box;
  min-height: 3.75em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 36px;
}

.navigation.pagination {
  margin-top: 42px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--tp-gray);
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  background: var(--tp-white);
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--tp-white);
  border-color: var(--tp-red);
  background: var(--tp-red);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  margin-top: 42px;
}

.contact-grid--clean {
  margin-top: 0;
}

.contact-page-section {
  padding-top: 42px;
}

.contact-intro-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.contact-intro-lead {
  color: var(--tp-dark);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.form-card,
.contact-card {
  padding: 30px;
}

.form-card--clean,
.contact-card--clean {
  border: 0;
  border-top: 2px solid var(--tp-red);
  border-radius: 0;
  box-shadow: none;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 0;
  border-bottom: 1px solid var(--tp-line);
  border-radius: 0;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 16, 6, 0.32);
  box-shadow: var(--tp-shadow-soft);
}

.contact-item-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--tp-white);
  border-radius: var(--tp-radius);
  background: var(--tp-red);
}

.contact-item-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-item strong,
.contact-item em {
  display: block;
}

.contact-item em {
  margin-top: 3px;
  color: var(--tp-muted);
  font-style: normal;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-item .contact-item-copy {
  min-width: 0;
}

.wpcf7 form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.wpcf7 label {
  display: grid;
  gap: 8px;
  color: var(--tp-gray);
  font-weight: 800;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select,
.site-main input,
.site-main textarea,
.site-main select {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--tp-ink);
  font: inherit;
  border: 1px solid var(--tp-line);
  border-radius: 16px;
  background: var(--tp-white);
}

.wpcf7 textarea,
.site-main textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7-submit {
  width: auto !important;
  min-width: 180px;
  color: var(--tp-white) !important;
  font-weight: 900 !important;
  border-color: var(--tp-red) !important;
  border-radius: 999px !important;
  background: var(--tp-red) !important;
  cursor: pointer;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-row a,
.social-pill {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--tp-red);
  font-weight: 900;
  text-decoration: none;
  border-radius: 50%;
  background: var(--tp-light);
}

.map-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius-lg);
  background: var(--tp-light);
  box-shadow: var(--tp-shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.download-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  margin-top: 42px;
}

.support-side {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 30px;
  color: var(--tp-white);
  border-radius: var(--tp-radius-lg);
  background: var(--tp-red);
}

.support-side p {
  color: rgba(255, 255, 255, 0.84);
}

.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.download-empty {
  padding: 32px;
  border-top: 2px solid var(--tp-red);
  background: var(--tp-light);
}

.file-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--tp-red);
  font-weight: 900;
  border-radius: 16px;
  background: var(--tp-light);
}

.single-content {
  max-width: 850px;
  padding: 72px 0;
}

.single-content p,
.single-content li {
  font-size: 19px;
}

.single-cover {
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: var(--tp-radius-lg);
}

.single-cover--contain {
  display: grid;
  place-items: center;
  background: var(--tp-light);
}

.single-cover--contain img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.site-footer {
  padding: 48px 0 28px;
  color: var(--tp-white);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.13), transparent 34%),
    linear-gradient(145deg, var(--tp-red-deep), #8d0f07 54%, var(--tp-red));
}

.footer-brand {
  display: grid;
  gap: 14px;
  justify-items: center;
  align-self: center;
  text-align: center;
}

.brand-footer {
  padding: 0;
}

.brand-footer img {
  width: 92px;
  max-width: 58vw;
  max-height: none;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(260px, 1.4fr) minmax(150px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: "Muli", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-transform: none;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a {
  display: block;
  margin: 9px 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links--left {
  justify-items: start;
}

.footer-links--right {
  justify-items: end;
  text-align: right;
}

.footer-links a,
.footer-map-link {
  font-weight: 900;
}

.footer-links .footer-link-featured {
  padding: 9px 14px;
  color: var(--tp-red-deep);
  border-radius: 999px;
  background: var(--tp-white);
}

.site-footer .footer-links .footer-link-featured:hover,
.site-footer .footer-links .footer-link-featured:focus-visible {
  color: var(--tp-white);
  background: var(--tp-red);
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
}

.footer-brand .footer-map-link {
  display: inline-flex;
  margin: 0;
}

.site-footer .footer-icons {
  justify-content: center;
  margin-top: 2px;
}

.site-footer .icon-action {
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--tp-red);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.site-footer a:hover,
.site-footer .icon-action:hover {
  color: var(--tp-white);
}

.site-footer .icon-action:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cookie-notice {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(560px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: var(--tp-white);
  box-shadow: var(--tp-shadow);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  margin: 0;
  font-size: 15px;
}

.cookie-notice a {
  color: var(--tp-red);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .nav-wrap {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 22px;
    border-bottom: 1px solid var(--tp-line);
    background: var(--tp-white);
  }

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

  .primary-nav .menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    width: min(100% - 40px, var(--tp-max));
    margin-inline: auto;
  }

  .primary-nav .menu-item {
    width: 100%;
  }

  .primary-nav a {
    width: 100%;
  }

  .menu-item--has-submenu > .menu-link {
    justify-content: space-between;
  }

  .equipment-submenu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 0 8px;
    padding: 4px 0 4px 12px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    border: 0;
    border-left: 2px solid rgba(155, 16, 6, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .equipment-submenu::before {
    display: none;
  }

  .equipment-submenu a {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 13px;
    border-radius: var(--tp-radius-sm);
  }

  .menu-item--has-submenu:hover .equipment-submenu,
  .menu-item--has-submenu:focus-within .equipment-submenu,
  .menu-item--has-submenu.is-submenu-open .equipment-submenu {
    transform: none;
  }

  .whatsapp-cta {
    display: none;
  }

  .split,
  .contact-grid,
  .download-layout,
  .hero-grid,
  .locacao-grid,
  .sectors-layout,
  .about-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-immersive {
    min-height: 620px;
    overflow: hidden;
  }

  .hero-panel--floating {
    margin-bottom: 0;
  }

  .teaser-grid,
  .about-values-grid,
  .blog-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector-grid,
  .clients-strip,
  .sector-grid--balanced,
  .pattern-grid,
  .proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-toolbar,
  .submenu-list {
    grid-template-columns: 1fr;
  }

  .submenu-list a {
    border-right: 0;
  }

  .support-side {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-links--left,
  .footer-links--right {
    justify-items: center;
    text-align: center;
  }

}

@media (max-width: 700px) {
  .wrap,
  .nav-wrap {
    width: min(100% - 28px, var(--tp-max));
  }

  .brand img {
    width: 158px;
    max-width: 50vw;
  }

  .brand-footer img {
    width: 84px;
    max-width: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-immersive {
    min-height: 600px;
  }

  .hero-slider-controls {
    right: 14px;
    top: 58%;
  }

  .hero-slider-arrow {
    width: 52px;
    height: 70px;
    font-size: 60px;
  }

  .hero-slide--retail {
    background-position: center center;
  }

  .hero-slide--spacepixel {
    background-position: 58% center;
  }

  .hero-panel,
  .locacao-intro,
  .locacao-card {
    padding: 24px;
  }

  .section {
    padding: 68px 0;
  }

  .section-sm {
    padding: 52px 0;
  }

  h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .lead,
  p {
    font-size: 17px;
  }

  .product-grid,
  .sector-grid,
  .sector-grid--balanced,
  .clients-strip,
  .pattern-grid,
  .proof-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .product-card::before {
    inset: 0 0 auto;
    width: auto;
    height: 4px;
    transform: scaleX(0.24);
    transform-origin: left;
  }

  .product-card:hover::before {
    transform: scaleX(1);
  }

  .product-card-media {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--tp-line);
  }

  .product-card img {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
  }

  .clients-marquee {
    margin-inline: -14px;
  }

  .clients-track-group {
    gap: 20px;
    padding-right: 20px;
  }

  .clients-marquee .client-logo {
    min-width: 150px;
    padding: 14px 18px;
  }

  .blog-search,
  .cookie-notice {
    grid-template-columns: 1fr;
  }

  .contact-item {
    align-items: flex-start;
  }

  .contact-item .contact-item-copy {
    text-align: left;
  }

  .sector-modal {
    padding: 14px;
  }

  .sector-modal-dialog {
    padding: 28px 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .clients-track {
    animation: none;
  }

  .btn,
  .icon-action,
  .equipment-submenu,
  .sector-card,
  .post-card,
  .product-card,
  .product-card::before,
  .product-card img,
  .product-card-cta,
  .contact-item {
    transition: none;
  }
}
