@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@500;600;700;800&display=swap");

/* Variables */
:root {
  --color-orange: #ff5a00;
  --color-orange-dark: #d94700;
  --color-black: #080808;
  --color-graphite: #171717;
  --color-dark-gray: #2b2b2b;
  --color-gray: #6f6f6f;
  --color-light-gray: #f3f3f3;
  --color-border: #dedede;
  --color-white: #ffffff;
  --color-green: #18b05b;
  --color-red: #ef3b2d;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-title: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --shadow-soft: 0 14px 32px rgba(8, 8, 8, .08);
  --shadow-orange: 0 18px 38px rgba(255, 90, 0, .28);
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--color-orange-dark);
}

.btn:hover,
.product-card a:hover,
.product-post-card a:hover,
.service-card a:hover,
.service-feature-card a:hover {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 90, 0, .45);
  outline-offset: 4px;
}

.container {
  width: min(100% - 48px, var(--container));
  max-width: var(--container) !important;
  margin-inline: auto;
  padding-inline: 0 !important;
}

.section-pad {
  padding: 48px 0 60px;
}

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

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px !important;
  padding: 0 !important;
  color: var(--color-gray);
  background: transparent !important;
  border-radius: 0 !important;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--color-orange);
}

.section-heading--wide {
  max-width: 1020px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--color-orange);
  font-size: .92rem;
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label {
  margin: 0 0 8px;
  color: var(--color-orange);
  font-size: .92rem;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-title);
  line-height: .96;
  font-weight: 700;
}

h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 5.45vw, 6rem);
}

h1 span {
  color: var(--color-orange);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-title);
  line-height: 1;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn i {
  font-size: 1.05em;
  line-height: 1;
}

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

.btn--primary {
  color: var(--color-white);
  background: var(--color-orange);
  box-shadow: 0 8px 18px rgba(255, 90, 0, .24);
}

.btn--primary:hover {
  background: var(--color-orange-dark);
}

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

.btn--outline:hover {
  color: var(--color-white);
  background: var(--color-orange);
}

.btn--light {
  color: var(--color-black);
  background: var(--color-white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}

.btn--light:hover {
  background: #fff3eb;
}

.btn--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: .92rem;
}

.icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.icon--wa,
.icon--wa-dark {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon--wa::after,
.icon--wa-dark::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: -2px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(35deg);
}

.icon--wa::before,
.icon--wa-dark::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-36deg);
}

.icon--arrow::before {
  content: "";
  position: absolute;
  inset: 4px 5px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Dot Pattern */
.dot-pattern {
  position: absolute;
  width: 120px;
  height: 210px;
  background-image: radial-gradient(circle, rgba(255, 90, 0, .42) 0 6px, transparent 7px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 8px 28px rgba(8, 8, 8, .04);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

.logo img {
  width: 184px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  padding: 32px 0 28px;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-title);
}

.nav__item {
  position: relative;
}

.nav .menu-item-has-children {
  position: relative;
}

.nav__item--has-dropdown::after,
.nav .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 10px;
}

.nav__item .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  z-index: 40;
  display: grid;
  min-width: 220px;
  padding: 8px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .08);
  border-top: 3px solid var(--color-orange);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 28px rgba(8, 8, 8, .14);
  opacity: 0;
  transform: translateY(4px);
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  z-index: 40;
  display: grid;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, .08);
  border-top: 3px solid var(--color-orange);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 28px rgba(8, 8, 8, .14);
  opacity: 0;
  transform: translateY(4px);
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav__dropdown a {
  padding: 11px 12px;
  color: var(--color-black);
  border-radius: 7px;
  font-family: var(--font-title);
  font-weight: 700;
}

.nav .sub-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--color-black);
  border-radius: 7px;
  font-family: var(--font-title);
  font-weight: 700;
}

.nav__dropdown a:hover,
.nav__dropdown a:focus-visible {
  color: var(--color-white);
  background: var(--color-orange);
}

.nav .sub-menu a:hover,
.nav .sub-menu a:focus-visible {
  color: var(--color-white);
  background: var(--color-orange);
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav .menu-item-has-children:hover > .sub-menu,
.nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-orange);
}

.current-menu-item > .nav__link,
.current-menu-ancestor > .nav__link,
.current_page_item > .nav__link {
  color: var(--color-orange);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.current-menu-item > .nav__link::after,
.current-menu-ancestor > .nav__link::after,
.current_page_item > .nav__link::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-black);
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: var(--color-white);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(430px, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 52px;
  min-height: 560px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 0 58px;
}

.hero__content p {
  max-width: 470px;
  margin-bottom: 28px;
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__media {
  position: relative;
  align-self: center;
  aspect-ratio: 1.06 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 16px 30px rgba(8, 8, 8, .08);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, .04), rgba(8, 8, 8, .18));
}

.hero__media::before {
  content: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__dots--left {
  left: max(20px, calc((100vw - var(--container)) / 2 - 62px));
  top: 120px;
  opacity: .24;
}

.hero__dots--image {
  right: 18px;
  top: 76px;
  z-index: 2;
  opacity: .9;
}

/* Products */
.products {
  background: linear-gradient(180deg, #fbfbfb 0, #f3f3f3 100%);
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
  border-color: rgba(255, 90, 0, .42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.product-card__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 135px;
  padding: 42px 18px 24px;
  text-align: center;
}

.product-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.product-card__icon {
  position: absolute;
  top: -25px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--color-white);
  background: var(--color-orange);
  border: 5px solid var(--color-white);
  border-radius: 50%;
  transform: translateX(-50%);
}

.product-card__icon i {
  font-size: 1.28rem;
  line-height: 1;
}

.product-card--featured {
  min-height: 308px;
  color: var(--color-white);
  background: var(--color-graphite);
  border-color: rgba(255, 90, 0, .4);
  box-shadow: var(--shadow-orange);
}

.product-card--featured img {
  height: 170px;
}

.product-card--featured .product-card__body {
  min-height: 145px;
  background: linear-gradient(160deg, #242424, #0d0d0d);
}

.product-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  padding: 8px 18px;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 0 0 8px 8px;
  font-size: .9rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.product-card__icon--zn {
  font-weight: 800;
}

/* Services */
.services {
  background: #f2f2f2;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  color: var(--color-white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .78) 45%, rgba(0, 0, 0, .14) 100%);
  background-position: center right;
  background-size: cover;
  border-radius: 12px;
}

.service-card--scrap {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .76) 45%, rgba(0, 0, 0, .12) 100%), url("../img/servico-sucatas.jpg");
}

.service-card--trading {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .76) 45%, rgba(0, 0, 0, .12) 100%), url("../img/servico-trading.jpg");
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(255, 90, 0, .22), transparent 36%);
}

.service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 42px 38px 34px;
}

.service-card h3 {
  margin-bottom: 22px;
  padding-bottom: 18px;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 3vw, 3.15rem);
  line-height: 1;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 16px;
  background: var(--color-orange);
}

.service-card p {
  max-width: 500px;
  margin-bottom: 24px;
  font-weight: 500;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.check-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.check-list--cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 26px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 14px;
  height: 14px;
  background: var(--color-orange);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: .53em;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* LME */
.lme {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  color: var(--color-white);
  background: linear-gradient(135deg, #141414, #080808);
}

.lme__inner {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  gap: 42px;
  min-height: 300px;
}

.lme__copy {
  position: relative;
  padding-left: 70px;
}

.lme__copy h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.lme__dots {
  left: 0;
  top: 0;
  height: 190px;
  width: 84px;
  opacity: .72;
}

.lme-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
}

.lme-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--color-white);
  background: rgba(255, 255, 255, .05);
}

.lme-table th,
.lme-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  text-align: left;
  font-weight: 600;
}

.lme-table th {
  color: #f0f0f0;
  background: rgba(255, 255, 255, .09);
  font-size: .82rem;
}

.lme-table td:first-child {
  width: 25%;
}

.is-positive {
  color: var(--color-green);
}

.is-negative {
  color: var(--color-red);
}

.sparkline {
  width: 132px;
  height: 28px;
  fill: none;
}

.sparkline polyline {
  fill: none;
  stroke-width: 2;
}

.sparkline--up polyline {
  stroke: var(--color-green);
}

.sparkline--down polyline {
  stroke: var(--color-red);
}

.lme-table__note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 11px 14px;
  color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .04);
  font-size: .82rem;
}

/* Value Strip */
.value-strip {
  padding: 44px 0;
  background: var(--color-white);
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-item {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 120px;
  padding: 10px 34px;
  text-align: center;
  border-right: 1px solid #cfcfcf;
}

.value-item:last-child {
  border-right: 0;
}

.value-item > i {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 16px;
  color: var(--color-orange);
  font-size: 3.25rem;
}

.value-item h3 {
  max-width: 190px;
  margin: 0;
  font-size: 1.18rem;
  font-weight: 900;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(255, 90, 0, .98), rgba(255, 90, 0, .92)),
    url("../img/bg-contato.jpg") right center / auto 100% no-repeat,
    var(--color-orange);
}

.contact-cta__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 54px;
  min-height: 300px;
  padding: 48px 0;
}

.contact-cta__copy {
  max-width: 520px;
}

.contact-cta__copy h2 {
  margin-bottom: 26px;
  padding-bottom: 18px;
  color: var(--color-white);
  font-size: clamp(2.5rem, 4.2vw, 4.3rem);
}

.contact-cta__copy h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 18px;
  background: var(--color-white);
}

.contact-cta__copy p {
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 500;
}

.contact-cta__info {
  display: grid;
  gap: 22px;
  padding-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, .55);
  font-style: normal;
}

.contact-cta__info a,
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.contact-cta__info i,
.footer__contact i {
  width: 30px;
  color: currentColor;
  font-size: 1.7rem;
  text-align: center;
}

.contact-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.contact-icon--mail {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.contact-icon--mail::before,
.contact-icon--mail::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 15px;
  height: 2px;
  background: currentColor;
}

.contact-icon--mail::before {
  left: 1px;
  transform: rotate(34deg);
}

.contact-icon--mail::after {
  right: 1px;
  transform: rotate(-34deg);
}

.contact-icon--site {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.contact-icon--site::before {
  content: "";
  position: absolute;
  inset: 6px 3px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
}

.contact-icon--site::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 13px;
  border-top: 2px solid currentColor;
}

.contact-cta__button {
  min-width: 230px;
}

.contact-cta__dots {
  right: 18px;
  top: 34px;
  opacity: .35;
  filter: brightness(0) invert(1);
}

/* Footer */
.site-footer,
.site-footer:not(.dynamic-footer) {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding: 0 !important;
  color: var(--color-white);
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, .97), rgba(27, 27, 27, .98)),
    radial-gradient(circle at 8% 20%, rgba(255, 90, 0, .16), transparent 28%);
}

.site-footer .container,
.site-footer .footer__inner,
.site-footer .footer__bottom {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
  padding-inline: clamp(24px, 5vw, 72px) !important;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(280px, .95fr) minmax(260px, 1fr);
  gap: clamp(28px, 4vw, 72px);
  padding: 54px 0 38px;
}

.footer__brand,
.footer__nav {
  padding-right: clamp(22px, 3vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.footer__logo img {
  width: 250px;
}

.footer__nav h2,
.footer__contact h2 {
  margin: 0 0 14px;
  color: var(--color-orange);
  font-size: 1rem;
  font-weight: 700;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 8px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links a,
.footer__contact a {
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--color-orange);
}

.footer__links li {
  list-style: none;
}

.footer__contact {
  display: grid;
  align-content: start;
  gap: 14px;
  font-style: normal;
}

.footer__contact .contact-icon {
  width: 24px;
  height: 24px;
}

.footer__bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

/* Internal Pages */
.internal-page main {
  background: var(--color-white);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--color-gray);
  font-size: .88rem;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--color-orange);
}

.page-intro {
  position: relative;
  overflow: hidden;
  padding: 30px 0 28px;
  background: linear-gradient(180deg, var(--color-white), #f7f7f7);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.page-intro::after {
  content: "";
  position: absolute;
  right: max(16px, calc((100vw - var(--container)) / 2));
  top: 18px;
  width: 112px;
  height: 84px;
  background-image: radial-gradient(circle, rgba(255, 90, 0, .18) 0 4px, transparent 5px);
  background-size: 22px 22px;
  pointer-events: none;
}

.page-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 32px;
}

.page-intro .breadcrumb,
.page-intro .eyebrow,
.page-intro h1,
.page-intro p {
  grid-column: 1;
}

.page-intro .breadcrumb {
  margin-bottom: 2px;
}

.page-intro h1 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4.3rem);
}

.page-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #252525;
  font-size: 1.04rem;
  font-weight: 500;
}

.page-intro .btn {
  grid-column: 2;
  grid-row: 3 / span 2;
  white-space: nowrap;
}

.page-intro + .page-section {
  padding-top: 44px;
}

.page-intro + .page-section--soft {
  padding: 28px 0;
}

.page-section {
  position: relative;
  padding: 70px 0;
  background: var(--color-white);
}

.page-section--soft {
  background: #f4f4f4;
}

.page-section--dark {
  color: var(--color-white);
  background: linear-gradient(135deg, #121212, #080808);
}

.page-section__header {
  max-width: 820px;
  margin-bottom: 34px;
}

.page-section__header h2,
.internal-cta h2 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
}

.page-section__header p,
.editorial-copy p {
  color: #303030;
  font-size: 1.08rem;
  font-weight: 500;
}

.page-section--dark .page-section__header p,
.page-section--dark .editorial-copy p,
.page-section--dark .service-detail p {
  color: rgba(255, 255, 255, .82);
}

.editorial-copy {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

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

.info-card,
.feature-card,
.contact-card {
  position: relative;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(8, 8, 8, .04);
}

.info-card i,
.feature-card i,
.contact-card i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 50%;
  font-size: 1.25rem;
}

.info-card h3,
.feature-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.info-card p,
.feature-card p,
.contact-card p {
  margin-bottom: 18px;
  color: #353535;
  font-weight: 500;
}

.info-card p:last-child,
.feature-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.internal-cta {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(255, 90, 0, .98), rgba(255, 90, 0, .9)),
    url("../img/bg-contato.jpg") right center / cover no-repeat;
}

.internal-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.internal-cta p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 500;
}

.internal-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.internal-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 24px 26px;
  color: var(--color-white);
  background: var(--color-graphite);
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
}

.internal-nav a:hover {
  color: var(--color-white);
  background: var(--color-orange);
}

.services-landing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-feature-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-feature-card:hover {
  border-color: rgba(255, 90, 0, .4);
  box-shadow: 0 18px 38px rgba(8, 8, 8, .12);
  transform: translateY(-4px);
}

.service-feature-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.service-feature-card__body {
  position: relative;
  padding: 34px;
}

.service-feature-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(255, 90, 0, .22);
}

.service-feature-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.service-feature-card p:not(.eyebrow) {
  color: #303030;
  font-size: 1.02rem;
  font-weight: 500;
}

.service-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--color-orange);
  font-weight: 800;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.service-detail-media {
  position: sticky;
  top: 96px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-detail-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-detail-content {
  display: grid;
  gap: 22px;
}

.service-detail-content h2 {
  margin-bottom: 0;
}

.service-detail-block {
  padding: 22px 24px;
  background: #f8f8f8;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.service-detail-block h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.service-detail-block p {
  margin: 0;
  color: #333;
  font-weight: 500;
}

.service-detail-list {
  margin: 0;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

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

.product-detail-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.product-detail-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-detail-card__body {
  padding: 28px;
}

.product-detail-card h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
  font-weight: 800;
}

.product-detail-card p {
  color: #333;
  font-weight: 500;
}

.product-detail-card--featured {
  color: var(--color-white);
  background: var(--color-graphite);
  border-color: rgba(255, 90, 0, .7);
  box-shadow: var(--shadow-orange);
}

.product-detail-card--featured .product-detail-card__body {
  background: linear-gradient(160deg, #242424, #0b0b0b);
}

.product-detail-card--featured p {
  color: rgba(255, 255, 255, .78);
}

.product-detail-card__badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 800;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 44px;
  align-items: center;
}

.service-detail--dark {
  color: var(--color-white);
}

.service-detail__media {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.service-detail__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.partner-box {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 90, 0, .09);
  border-left: 4px solid var(--color-orange);
  border-radius: 8px;
  font-weight: 700;
}

.partner-box a {
  color: var(--color-orange);
}

.quote-panel {
  overflow-x: auto;
  padding: 24px;
  color: var(--color-white);
  background: var(--color-graphite);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.quote-panel table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.quote-panel th,
.quote-panel td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  text-align: left;
  font-weight: 600;
}

.quote-panel th {
  color: var(--color-orange);
  font-family: var(--font-title);
}

.quote-panel__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: .9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-card a {
  color: var(--color-black);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--color-black);
  background: #f8f8f8;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: -4px 0 0;
  color: var(--color-gray);
  font-size: .9rem;
  font-weight: 500;
}

.product-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.product-post-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(8, 8, 8, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.product-post-card:hover {
  border-color: rgba(255, 90, 0, .45);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.product-post-card a {
  display: grid;
  min-height: 100%;
}

.product-post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-post-card h3,
.product-post-card p,
.product-post-card__tag,
.product-post-card__link {
  margin-inline: 24px;
}

.product-post-card__tag {
  display: inline-flex;
  justify-self: start;
  margin-top: 22px;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--color-orange);
  background: rgba(255, 90, 0, .1);
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 800;
}

.product-post-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  font-weight: 800;
}

.product-post-card p {
  margin-bottom: 22px;
  color: #333;
  font-weight: 500;
}

.product-post-card__link {
  align-self: end;
  margin-bottom: 24px;
  color: var(--color-orange);
  font-family: var(--font-title);
  font-weight: 800;
}

.product-post-card--featured {
  color: var(--color-white);
  background: var(--color-graphite);
  border-color: rgba(255, 90, 0, .75);
  box-shadow: var(--shadow-orange);
}

.product-post-card--featured p {
  color: rgba(255, 255, 255, .78);
}

.product-post-card--featured .product-post-card__link {
  color: var(--color-white);
}

.product-post-card--featured h3,
.product-post-card--featured p {
  color: var(--color-white);
}

.product-post-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 12px;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 800;
}

.product-single {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) 1fr;
  align-items: center;
  gap: 44px;
}

.product-single > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.product-single__content {
  max-width: 640px;
}

.product-lme-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.product-lme-panel__copy {
  max-width: 760px;
}

.product-lme-panel__chart {
  min-width: 0;
}

.product-lme-panel__chart--wide {
  width: 100%;
}

.product-lme-panel__actions {
  display: flex;
  margin-top: 20px;
}

.wp-content > *:last-child {
  margin-bottom: 0;
}

.wp-content a:not(.btn) {
  color: var(--color-orange);
  font-weight: 700;
}

.wp-content .wp-block-gallery {
  margin-top: 28px;
}

.wp-content .wp-block-image img,
.wp-content .wp-block-gallery img {
  border-radius: var(--radius);
}

.wp-content .wp-block-table {
  overflow-x: auto;
}

.wp-content .wp-block-table table,
.wp-content table {
  width: 100%;
  border-collapse: collapse;
}

.wp-content th,
.wp-content td {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
}

.wp-content thead th {
  color: var(--color-white);
  background: var(--color-black);
}

.lme-plugin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 28px;
  align-items: start;
}

.lme-radar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lme-radar-card {
  min-width: 0;
}

.lme-plugin-layout > * {
  min-width: 0;
}

.lme-plugin-layout--single {
  grid-template-columns: 1fr;
}

.lme-plugin-card,
.cotacao-tabela-container,
.lme-chart-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.lme-plugin-card {
  overflow: hidden;
}

.lme-plugin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  color: var(--color-white);
  background: linear-gradient(135deg, #151515, #242424);
}

.lme-plugin-heading h3,
.lme-chart-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.7rem;
}

.lme-filter {
  display: grid;
  gap: 8px;
  min-width: 260px;
}

.lme-filter label {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.lme-filter select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  font: inherit;
}

.lme-filter--light label {
  color: var(--color-gray);
}

.lme-chart-card .lme-filter label {
  color: var(--color-gray);
}

.lme-chart-card .lme-filter select {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-border);
}

.lme-month-controls,
.radar-month-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.lme-month-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lme-month-pagination a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  color: var(--color-white);
  background: #303030;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}

.lme-month-pagination a:hover {
  color: var(--color-white);
  background: var(--color-orange);
}

.lme-month-pagination--light a {
  color: #303030;
  background: #f3f3f3;
  border: 1px solid var(--color-border);
}

.lme-month-pagination--light a:hover {
  color: var(--color-white);
  border-color: var(--color-orange);
}

.lme-data-table-wrap {
  overflow-x: auto;
}

.lme-data-table,
.cotacao-tabela {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
}

.lme-data-table th,
.lme-data-table td,
.cotacao-tabela th,
.cotacao-tabela td {
  padding: 10px 11px;
  border: 1px solid #ddd;
  text-align: center;
  white-space: nowrap;
}

.lme-data-table thead th,
.cotacao-tabela th {
  color: var(--color-white);
  background: var(--color-black);
}

.lme-data-table tbody tr:nth-child(even) {
  background: #f7f7f7;
}

.lme-data-table tr.zebra,
.lme-data-table tfoot th,
.lme-data-table tfoot td {
  background: #ececec;
}

.lme-plugin-side {
  display: grid;
  gap: 24px;
}

.cotacao-tabela-container {
  padding: 20px;
}

.cotacao-tabela .destaque {
  font-weight: 800;
}

.cotacao-tabela-caption {
  margin-top: 10px;
  color: var(--color-gray);
  font-size: .92rem;
  font-weight: 600;
  text-align: right;
}

.lme-chart-card {
  padding: 24px;
  max-width: 100%;
  overflow: hidden;
}

.lme-chart-card--product {
  min-height: 100%;
}

.lme-chart-subtitle {
  margin: 10px 0 0;
  color: var(--color-gray);
  font-weight: 600;
}

.lme-chart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.lme-chart-tabs button {
  padding: 8px 10px;
  color: var(--color-white);
  background: #686a78;
  border: 0;
  border-radius: 5px;
  font-weight: 800;
  cursor: pointer;
}

.lme-chart-tabs button:hover,
.lme-chart-tabs button:focus-visible {
  background: var(--color-orange);
}

.lme-chart-tabs button.is-active {
  background: var(--color-orange);
}

.lme-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
  color: var(--color-gray);
  font-weight: 800;
}

.lme-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lme-chart-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.lme-chart-legend__dot--metal {
  background: var(--color-orange);
}

.lme-chart-legend__dot--currency {
  background: #686a78;
}

.lme-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

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

.lme-summary-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #fafafa;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.lme-summary-card__label {
  color: var(--color-gray);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lme-summary-card__value {
  font-family: var(--font-title);
  font-size: 1.45rem;
  line-height: 1;
}

.lme-chart-canvas-wrap {
  position: relative;
  min-height: 320px;
  max-width: 100%;
  margin-top: 16px;
  padding: 12px;
  background:
    linear-gradient(#f0f0f0 1px, transparent 1px),
    linear-gradient(90deg, #f0f0f0 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.lme-chart-canvas-wrap canvas {
  display: block;
  max-width: 100%;
}

.lme-plugin-toolbar {
  display: grid;
  gap: 18px;
  align-items: end;
}

.lme-plugin-heading--compact {
  padding: 20px 24px;
}

.lme-filter select {
  background: #fff;
}

.lme-chart-card--interactive {
  display: grid;
  gap: 8px;
}

.lme-chart-canvas-wrap--short {
  min-height: 290px;
}

.lme-chart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.lme-chart-tabs button {
  min-height: 38px;
  padding: 0 12px;
  color: #414141;
  background: #f4f4f4;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}

.lme-chart-tabs button:hover,
.lme-chart-tabs button:focus-visible {
  color: var(--color-white);
  background: #303030;
  border-color: #303030;
}

.lme-chart-tabs button.is-active {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.lme-chart-legend {
  margin: 6px 0 0;
  font-size: .92rem;
}

.lme-chart-legend span.is-dimmed {
  opacity: .32;
}

.lme-plugin-card--table {
  overflow: hidden;
}

.lme-table-intro {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: .94rem;
  font-weight: 600;
}

.lme-data-table--compact {
  font-size: .76rem;
}

.lme-data-table--compact th,
.lme-data-table--compact td {
  padding: 5px 6px;
  line-height: 1.12;
  font-weight: 500;
}

.lme-data-table--compact thead th {
  font-size: .7rem;
  letter-spacing: .01em;
}

.lme-average-row td {
  color: #111;
  background: #e6e6e6;
  font-weight: 800;
}

.lme-average-row td:first-child {
  text-transform: uppercase;
  letter-spacing: .02em;
}

.lme-average-row--month td {
  color: var(--color-white) !important;
  background: var(--color-graphite) !important;
}

.market-radar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

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

.market-radar-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid #9a9a9a;
  border-radius: 10px;
}

.market-radar-card--oportunidade {
  border-left-color: #2f9e44;
}

.market-radar-card--estavel {
  border-left-color: #686a78;
}

.market-radar-card--atencao {
  border-left-color: var(--color-orange);
}

.market-radar-card__label {
  color: var(--color-gray);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.market-radar-card strong {
  font-family: var(--font-title);
  font-size: 1.9rem;
  line-height: 1;
}

.market-radar-card p {
  margin: 0;
  color: var(--color-gray);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.45;
}

.lme-chart-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 14px;
  color: var(--color-gray);
  background:
    linear-gradient(#e8e8e8 1px, transparent 1px),
    linear-gradient(90deg, #e8e8e8 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-weight: 800;
}

.lme-chart-placeholder--small {
  min-height: 170px;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav {
    gap: 20px;
  }

  .hero__inner {
    grid-template-columns: minmax(350px, .9fr) minmax(440px, 1.1fr);
    gap: 34px;
  }

  .products__grid {
    gap: 18px;
  }

  .product-card__body h3 {
    font-size: .96rem;
  }
}

@media (max-width: 900px) {
  .logo img {
    width: 166px;
  }

  .nav {
    gap: 13px;
  }

  .nav__menu {
    gap: 13px;
  }

  .nav__link {
    font-size: .82rem;
  }

  .nav__cta {
    min-height: 46px;
    padding-inline: 17px;
    margin-left: 6px;
  }

  .hero__content {
    padding-left: 0;
    padding-right: 18px;
  }

  .hero__inner {
    grid-template-columns: minmax(310px, .9fr) minmax(360px, 1.1fr);
    gap: 26px;
  }

  .hero__content h1 {
    font-size: 2.5rem;
  }

  .hero,
  .hero__inner,
  .hero__media {
    min-height: 350px;
  }

  .hero__content {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .hero__content p {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: .9rem;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .btn {
    min-height: 46px;
    padding-inline: 18px;
    font-size: .9rem;
  }

  .products__grid {
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .service-detail,
  .contact-grid,
  .lme-plugin-layout,
  .lme-radar-grid,
  .product-single,
  .product-lme-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .service-detail-layout,
  .services-landing__grid {
    grid-template-columns: 1fr;
  }

  .service-detail-media {
    position: static;
  }

  .service-detail-media img {
    min-height: 360px;
  }

  .internal-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .header__inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    z-index: 35;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 20px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 24px 42px rgba(0, 0, 0, .16);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav__menu {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .nav .sub-menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 6px 0 12px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav .sub-menu a {
    padding: 9px 0;
    color: var(--color-gray);
  }

  .nav .sub-menu a:hover,
  .nav .sub-menu a:focus-visible {
    color: var(--color-orange);
    background: transparent;
  }

  .nav__link {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__item .nav__link {
    display: flex;
    justify-content: space-between;
  }

  .nav__dropdown {
    position: static;
    min-width: 0;
    padding: 6px 0 12px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav__dropdown a {
    padding: 9px 0;
    color: var(--color-gray);
  }

  .nav__dropdown a:hover,
  .nav__dropdown a:focus-visible {
    color: var(--color-orange);
    background: transparent;
  }

  .nav__link::after {
    bottom: 8px;
    right: auto;
    width: 38px;
  }

  .nav__cta {
    margin: 18px 0 0;
  }

  .hero__inner {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 58px 0 34px;
  }

  .hero__media {
    min-height: 380px;
    clip-path: none;
    border-left: 0;
    border-top: 4px solid var(--color-orange);
  }

  .hero__dots--left {
    left: -18px;
  }

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

  .services__grid,
  .services-landing__grid,
  .lme__inner,
  .contact-cta__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .lme-month-controls,
  .radar-month-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .lme-filter {
    min-width: 0;
  }

  .lme__copy {
    padding-left: 92px;
  }

  .contact-cta__inner {
    gap: 28px;
  }

  .contact-cta__info {
    padding-left: 0;
    border-left: 0;
  }

  .contact-cta__button {
    justify-self: start;
  }

  .footer__brand,
  .footer__nav {
    padding-bottom: 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .page-section {
    padding: 50px 0;
  }

  .page-intro {
    padding: 26px 0 24px;
  }

  .page-intro::after {
    opacity: .55;
    right: -36px;
  }

  .page-intro__inner {
    grid-template-columns: 1fr;
  }

  .page-intro .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    white-space: normal;
  }

  .page-grid,
  .page-grid--2,
  .internal-nav,
  .form-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
  }

  .service-detail__media img {
    height: 300px;
  }

  .lme-plugin-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .lme-summary-grid {
    grid-template-columns: 1fr;
  }

  .market-radar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-pad {
    padding: 46px 0 56px;
  }

  .logo img {
    width: 154px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

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

  .hero__actions .btn {
    width: 100%;
  }

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

  .service-card,
  .service-card__content {
    min-height: 560px;
  }

  .service-card__content {
    padding: 34px 24px 26px;
  }

  .check-list--cols {
    grid-template-columns: 1fr;
  }

  .lme__copy {
    padding-left: 0;
    padding-top: 120px;
  }

  .lme__dots {
    top: 0;
  }

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

  .value-item:nth-child(2n) {
    border-right: 0;
  }

  .value-item:nth-child(-n + 2) {
    border-bottom: 1px solid #cfcfcf;
  }

  .contact-cta__inner {
    min-height: auto;
  }

  .footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products__grid,
  .value-strip__grid,
  .product-post-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: 0;
    border-bottom: 1px solid #cfcfcf;
  }

  .value-item:last-child {
    border-bottom: 0;
  }

  .product-card,
  .product-card--featured {
    min-height: auto;
  }

  .product-card img,
  .product-card--featured img {
    height: 190px;
  }

  .service-card,
  .service-card__content {
    min-height: 660px;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .lme-table__note {
    flex-direction: column;
  }

  .footer__logo img {
    width: 210px;
  }
}
