@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("fonts/manrope-latin-variable.woff2") format("woff2-variations");
}

:root {
  --ink: #151718;
  --ink-soft: #2d3944;
  --paper: #f3f1ed;
  --white: #ffffff;
  --orange: #c26e4e;
  --orange-bright: #c26e4e;
  --green: #3f503b;
  --slate: #2d3944;
  --gray: #74787b;
  --warm-gray: #8f8d89;
  --beige: #d9cfc4;
  --mist: #e2e0da;
  --line: rgba(21, 23, 24, 0.16);
  --font-display: "Abacaxi Latin VF", "Manrope Variable", Arial, Helvetica, sans-serif;
  --font-body: "Abacaxi Latin VF", "Manrope Variable", Arial, Helvetica, sans-serif;
}

/* Ajustes do instalador WordPress: os seletores de idioma são links. */
.locale-switcher a,
.mobile-locale-switcher a {
  width: 28px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.locale-switcher a.is-active {
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: rgba(21, 23, 24, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 52;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo { width: 214px; height: auto; display: block; }
.brand-logo-dark { display: none; }
.footer-brand .brand-logo { width: 236px; }
.site-header.menu-open .brand-logo-light { display: none; }
.site-header.menu-open .brand-logo-dark { display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  opacity: 0.88;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.main-nav > a.is-active:not(.nav-cta)::after {
  right: 0;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  transition: 180ms ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.locale-switcher {
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.locale-switcher button {
  width: 28px;
  height: 26px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.locale-switcher button.is-active {
  color: var(--ink);
  background: var(--white);
}

.header-currency {
  width: 63px;
  height: 34px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: #191b1a;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
}

.mobile-header-tools {
  position: relative;
  z-index: 52;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-locale-switcher,
.mobile-quick-nav { display: none; }

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #101111;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: hero-enter 1.4s ease both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 15, 14, 0.93) 0%, rgba(13, 15, 14, 0.72) 38%, rgba(13, 15, 14, 0.12) 74%),
    linear-gradient(0deg, rgba(13, 15, 14, 0.78), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 104px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker.light {
  color: #ed9a7b;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font: 800 clamp(56px, 7.2vw, 106px)/0.9 var(--font-display);
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.74);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--orange-bright);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(10, 10, 10, 0.14);
}

.button-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-marker {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-marker i {
  width: 54px;
  height: 54px;
  display: block;
  border: 9px solid var(--white);
  border-radius: 50%;
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.proof-grid > div {
  padding: 31px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid strong {
  color: var(--orange);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.proof-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.4;
}

.section {
  padding-block: 124px;
}

.section-heading h2 {
  margin: 0;
  max-width: 740px;
  font: 800 clamp(38px, 5vw, 67px)/0.97 var(--font-display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 5px;
  color: #5a5e5b;
  font-size: 16px;
  line-height: 1.7;
}

.service-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 420px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(24, 29, 26, 0.18);
}

.service-card.orange { background: var(--orange); }
.service-card.green { background: var(--green); }
.service-card.slate { background: var(--slate); }

.service-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-topline b {
  font-size: 16px;
}

.service-card h3 {
  margin: 0 0 17px;
  font-size: 36px;
  letter-spacing: -0.045em;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.card-link {
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.card-link b {
  font-size: 18px;
}

.fine-print {
  margin: 22px 0 0;
  color: #747976;
  font-size: 11px;
  line-height: 1.5;
}

.lead {
  color: inherit;
  font-size: 20px;
  line-height: 1.6;
}

.maintenance {
  padding-block: 126px;
  color: var(--white);
  background: var(--ink);
}

.maintenance-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 86px;
  align-items: center;
}

.maintenance-copy h2,
.rental-statement h2,
.about-title h2,
.contact-copy h2 {
  margin: 0;
  font: 800 clamp(40px, 5.5vw, 72px)/0.96 var(--font-display);
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.maintenance-copy > .lead {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.saving-callout {
  margin: 38px 0 34px;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 26px;
  align-items: center;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.saving-callout strong {
  color: var(--orange);
  font-size: 19px;
  text-transform: uppercase;
}

.saving-callout strong b {
  display: block;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.saving-callout span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.text-link {
  width: max-content;
  margin-top: 38px;
  padding-bottom: 8px;
  display: flex;
  gap: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.comparison {
  --split: 52%;
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: #292b2a;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.3);
}

.comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.comparison-before {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.comparison-before img {
  width: 100%;
}

.comparison-line {
  position: absolute;
  z-index: 4;
  left: var(--split);
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 2px solid var(--white);
  transform: translateX(-50%);
}

.comparison-line i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.28);
}

.comparison input {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-label {
  position: absolute;
  z-index: 3;
  top: 22px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(13, 15, 14, 0.78);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-label.before { left: 22px; }
.comparison-label.after { right: 22px; background: var(--orange); }

.compact-heading {
  max-width: 800px;
}

.process-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 290px;
  padding: 26px 22px 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.process-step:first-child { border-left: 1px solid var(--line); }
.process-step > span { color: var(--orange); font-size: 12px; font-weight: 800; }
.process-step h3 { margin: auto 0 13px; font-size: 21px; letter-spacing: -0.03em; }
.process-step p { min-height: 86px; margin: 0; color: #666b68; font-size: 13px; line-height: 1.6; }

.products {
  background: #e7e4dd;
}

.product-grid {
  margin-top: 70px;
  display: grid;
  gap: 20px;
}

.product-card {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  color: var(--ink);
  background: var(--white);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.product-card.reverse .product-image { order: 2; background: #d5d2cb; }
.product-card.reverse .product-content { order: 1; }

.product-image {
  min-height: 600px;
  padding: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #efeee9;
}

.product-image img {
  width: 100%;
  max-width: 570px;
  height: 100%;
  max-height: 530px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.product-card:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(21, 23, 22, 0.13); }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.product-content {
  padding: 70px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-code {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-content h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.product-content ul {
  margin: 35px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.product-content li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #555a57;
  font-size: 14px;
}

.product-card-link {
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card-link b { color: var(--orange); font-size: 18px; }

.nr-note {
  margin-top: 20px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 38px;
  align-items: start;
  color: var(--white);
  background: var(--green);
}

.nr-note strong {
  color: #f0a68b;
  font-size: 14px;
  text-transform: uppercase;
}

.nr-note p { margin: 0; color: rgba(255, 255, 255, 0.75); font-size: 13px; line-height: 1.65; }

.components {
  color: var(--white);
  background: var(--slate);
}

.light-heading h2 { color: var(--white); }
.light-heading > p { color: rgba(255, 255, 255, 0.62); }

.component-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.component-card {
  padding: 14px 14px 25px;
  display: block;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.component-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
}

.component-card:focus-visible { outline: 3px solid var(--orange-bright); outline-offset: 3px; }

.component-card > div {
  height: 175px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f7f5;
}

/* Navegação completa e páginas internas */
.page-hero {
  min-height: 570px;
  padding: 176px 0 100px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.page-hero-slate { background: var(--slate); }
.page-hero-green { background: var(--green); }
.page-hero-orange { background: var(--orange); }
.page-hero-ink { background: var(--ink); }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.page-hero-grid .kicker { grid-column: 1 / -1; margin-bottom: -24px; }
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font: 800 clamp(54px, 6.8vw, 98px)/0.92 var(--font-display);
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.page-hero-grid > p:last-child {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.home-explore { padding: 18px 0 96px; background: var(--paper); }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.explore-grid > a { min-height: 300px; padding: 27px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #ebe8e1; transition: transform 180ms ease, background 180ms ease; }
.explore-grid > a:hover { transform: translateY(-5px); background: var(--white); }
.explore-grid span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.explore-grid h2 { margin: auto 0 14px; font-size: 28px; letter-spacing: -0.045em; }
.explore-grid p { min-height: 76px; margin: 0; color: #656a67; font-size: 13px; line-height: 1.55; }
.explore-grid b { margin-top: 22px; font-size: 11px; }

.line-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.line-card { min-height: 270px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.line-card:nth-child(3n + 1) { border-left: 1px solid var(--line); }
.line-card > span, .service-detail-grid article > span, .benefit-grid article > span, .upholstery-service-grid article > span, .value-grid article > span { color: var(--orange); font-size: 11px; font-weight: 800; }
.line-card h3 { margin: 75px 0 13px; font-size: 23px; letter-spacing: -0.035em; }
.line-card p { margin: 0; color: #656a67; font-size: 13px; line-height: 1.6; }

.catalog-browser { background: #e5e2db; }
.catalog-toolbar { display: grid; grid-template-columns: 1fr 420px; gap: 70px; align-items: end; }
.catalog-toolbar h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); letter-spacing: -0.055em; text-transform: uppercase; }
.catalog-search { display: grid; gap: 9px; color: #686d69; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.catalog-search input { height: 56px; padding: 0 16px; border: 1px solid var(--line); outline: none; background: var(--white); }
.catalog-search input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(194, 110, 78, 0.14); }
.filter-row { margin: 38px 0 45px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter-row button { padding: 11px 14px; border: 1px solid rgba(21, 23, 22, 0.22); background: transparent; color: var(--ink); font-size: 11px; font-weight: 800; cursor: pointer; }
.filter-row button:hover, .filter-row button.is-active { color: var(--white); background: var(--ink); }
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.catalog-card { min-width: 0; display: flex; flex-direction: column; background: var(--white); }
.catalog-image { aspect-ratio: 1 / 0.86; overflow: hidden; background: #f5f3ed; }
.catalog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.catalog-card:hover .catalog-image img { transform: scale(1.025); }
.catalog-card-body { min-height: 235px; padding: 22px; display: flex; flex-direction: column; }
.catalog-card-body > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.catalog-card-body h3 { margin: 13px 0 9px; font-size: 20px; line-height: 1.1; letter-spacing: -0.035em; }
.catalog-card-body p { margin: 0; color: #777b78; font-size: 11px; line-height: 1.5; }
.catalog-card-body a { margin-top: auto; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; }
.load-more { min-width: 250px; min-height: 52px; margin: 44px auto 0; padding: 0 22px; display: block; border: 1px solid var(--ink); background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }
.load-more:hover { color: var(--white); background: var(--ink); }
.empty-state { padding: 60px 0; color: #666; text-align: center; }

.cta-band { padding: 72px 0; color: var(--white); background: var(--orange); }
.cta-band .shell { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-band h2 { max-width: 780px; margin: 0; font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -0.055em; text-transform: uppercase; }
.cta-band .button { flex: 0 0 auto; }
.green-band { background: var(--green); }

.parts-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.part-card { min-height: 480px; padding: 16px 22px 27px; display: flex; flex-direction: column; background: #e7e4dd; }
.part-card > div { height: 280px; margin: -16px -22px 22px; overflow: hidden; background: #f7f7f5; }
.part-card img { width: 100%; height: 100%; object-fit: contain; }
.part-card > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.part-card h3 { margin: 12px 0 9px; font-size: 23px; }
.part-card p { margin: 0; color: #686d69; font-size: 13px; line-height: 1.55; }
.technical-note { padding: 65px 0; color: var(--white); background: var(--slate); }
.technical-note .shell { display: grid; grid-template-columns: 0.55fr 1.25fr auto; gap: 55px; align-items: center; }
.technical-note strong { color: #f1a184; font-size: 20px; }
.technical-note p { margin: 0; color: rgba(255, 255, 255, 0.66); font-size: 14px; line-height: 1.65; }

.service-detail-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-detail-grid article { min-height: 300px; padding: 27px; background: var(--paper); }
.service-detail-grid h3 { margin: 85px 0 13px; font-size: 23px; }
.service-detail-grid p { margin: 0; color: #676c68; font-size: 13px; line-height: 1.6; }
.maintenance-models { color: var(--white); background: var(--ink); }
.model-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(4, 1fr); }
.model-grid article { min-height: 340px; padding: 26px; border: 1px solid rgba(255, 255, 255, 0.16); border-right: 0; }
.model-grid article:last-child { border-right: 1px solid rgba(255, 255, 255, 0.16); }
.model-grid span { color: var(--orange-bright); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.model-grid h3 { margin: 110px 0 14px; font-size: 22px; }
.model-grid p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 12px; line-height: 1.65; }
.portfolio-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.portfolio-grid figure { margin: 0; background: var(--white); }
.portfolio-grid img { width: 100%; aspect-ratio: 0.82 / 1; display: block; object-fit: cover; }
.portfolio-grid figcaption { padding: 20px; display: grid; gap: 7px; }
.portfolio-grid strong { font-size: 15px; }
.portfolio-grid span { color: #747975; font-size: 11px; line-height: 1.5; }
.saving-section { padding: 100px 0; color: var(--white); background: var(--green); }
.saving-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 90px; align-items: center; }
.saving-grid > strong { color: #f09877; font-size: 23px; }
.saving-grid > strong b { display: block; font-size: clamp(100px, 13vw, 190px); line-height: 0.8; letter-spacing: -0.09em; }
.saving-grid h2 { margin: 0; font-size: clamp(35px, 4.5vw, 64px); line-height: 1; letter-spacing: -0.06em; text-transform: uppercase; }
.saving-grid p { max-width: 620px; margin: 25px 0 0; color: rgba(255, 255, 255, 0.66); line-height: 1.7; }
.saving-grid .button { margin-top: 30px; }

.benefit-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.benefit-grid article { min-height: 280px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-grid article:nth-child(3n + 1) { border-left: 1px solid var(--line); }
.benefit-grid h3 { margin: 78px 0 12px; font-size: 22px; }
.benefit-grid p { margin: 0; color: #666b67; font-size: 13px; line-height: 1.6; }
.rental-journey { color: var(--white); background: var(--orange); }
.journey-list { margin-top: 64px; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.journey-list article { padding: 27px 0; display: grid; grid-template-columns: 90px 1fr; border-bottom: 1px solid rgba(255, 255, 255, 0.28); }
.journey-list > article > span { font-size: 11px; font-weight: 800; }
.journey-list h3 { margin: 0 0 8px; font-size: 24px; }
.journey-list p { max-width: 720px; margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 13px; line-height: 1.6; }
.rental-scope { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.rental-scope h2 { margin: 0; font-size: clamp(38px, 5vw, 68px); line-height: 0.98; letter-spacing: -0.06em; text-transform: uppercase; }
.rental-scope ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.rental-scope li { padding: 16px 0; border-bottom: 1px solid var(--line); color: #5d625f; font-size: 13px; line-height: 1.5; }
.fiscal-note { margin-top: 50px; padding: 28px; display: grid; grid-template-columns: 0.4fr 1.6fr; gap: 50px; border: 1px solid var(--line); }
.fiscal-note strong { color: var(--orange); text-transform: uppercase; font-size: 13px; }
.fiscal-note p { margin: 0; color: #696e6a; font-size: 12px; line-height: 1.65; }

.catalog-download-grid { display: grid; gap: 24px; }
.catalog-download-grid article { min-height: 560px; display: grid; grid-template-columns: 0.55fr 1fr; background: #e5e2db; }
.catalog-download-grid article:nth-child(even) { grid-template-columns: 1fr 0.55fr; }
.catalog-download-grid article:nth-child(even) .catalog-cover { order: 2; }
.catalog-download-grid article:nth-child(even) > div { order: 1; }
.catalog-cover { min-height: 560px; padding: 34px; display: grid; place-items: center; overflow: hidden; background: var(--slate); }
.catalog-cover img { max-width: 100%; max-height: 500px; object-fit: contain; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3); transition: transform 220ms ease; }
.catalog-cover:hover img { transform: translateY(-6px); }
.catalog-download-grid article > div { padding: 70px; display: flex; flex-direction: column; justify-content: center; }
.catalog-download-grid h2 { margin: 0; font-size: clamp(36px, 4.5vw, 62px); line-height: 1; letter-spacing: -0.06em; text-transform: uppercase; }
.catalog-download-grid article > div > p:not(.kicker) { margin: 24px 0 0; color: #666b68; font-size: 15px; line-height: 1.7; }
.dark-link { color: var(--ink); border-color: rgba(21, 23, 22, 0.45); }

.upholstery-feature { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; }
.upholstery-feature > img { width: 100%; min-height: 670px; object-fit: cover; }
.upholstery-feature h2 { margin: 0; font-size: clamp(40px, 5vw, 66px); line-height: 0.98; letter-spacing: -0.06em; text-transform: uppercase; }
.upholstery-feature > div > p:not(.kicker) { margin: 26px 0 0; color: #646965; font-size: 15px; line-height: 1.7; }
.upholstery-feature .button { margin-top: 30px; }
.upholstery-service-grid { margin-top: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.upholstery-service-grid article { min-height: 260px; padding: 25px; background: var(--paper); }
.upholstery-service-grid h3 { margin: 70px 0 11px; font-size: 21px; }
.upholstery-service-grid p { margin: 0; color: #676c68; font-size: 12px; line-height: 1.6; }
.material-band { padding: 70px 0; color: var(--white); background: var(--slate); }
.material-band .shell { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255, 255, 255, 0.2); }
.material-band .shell > div { min-height: 170px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.material-band .shell > div:first-child { border-left: 1px solid rgba(255, 255, 255, 0.2); }
.material-band strong { display: block; margin-bottom: 60px; color: #f0a184; font-size: 14px; text-transform: uppercase; }
.material-band span { color: rgba(255, 255, 255, 0.62); font-size: 12px; line-height: 1.6; }

.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.about-story h2 { margin: 0; font-size: clamp(40px, 5vw, 70px); line-height: 0.96; letter-spacing: -0.065em; text-transform: uppercase; }
.about-story > div:last-child p { margin: 0 0 24px; color: #5f6460; font-size: 17px; line-height: 1.75; }
.value-grid { margin-top: 75px; display: grid; grid-template-columns: repeat(4, 1fr); }
.value-grid article { min-height: 260px; padding: 24px; border: 1px solid var(--line); border-right: 0; }
.value-grid article:last-child { border-right: 1px solid var(--line); }
.value-grid h3 { margin: 75px 0 11px; font-size: 20px; }
.value-grid p { margin: 0; color: #676c68; font-size: 12px; line-height: 1.6; }
.expanded-clients { padding-block: 75px; }
.sector-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); }
.sector-grid span { min-height: 120px; padding: 23px; display: flex; align-items: flex-end; border: 1px solid var(--line); border-right: 0; border-bottom: 0; font-size: 16px; font-weight: 800; }
.sector-grid span:nth-child(4n) { border-right: 1px solid var(--line); }
.sector-grid span:nth-last-child(-n + 4) { border-bottom: 1px solid var(--line); }
.company-data { padding: 70px 0; color: var(--white); background: var(--green); }
.company-data .shell { display: grid; grid-template-columns: repeat(2, 1fr); }
.company-data .shell > div { padding: 22px; display: flex; flex-direction: column; gap: 12px; border: 1px solid rgba(255, 255, 255, 0.18); }
.company-data span { color: #f0a184; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.company-data strong { font-size: 14px; }
.company-data .presence-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, 0.18); }
.presence-card { min-width: 0; padding: 42px !important; border: 0 !important; background: var(--green); }
.presence-card h2 { max-width: 560px; margin: 18px 0 38px; font-size: clamp(30px, 3.8vw, 54px); line-height: 0.98; letter-spacing: -0.05em; text-transform: uppercase; }
.presence-card dl { margin: 0; display: grid; }
.presence-card dl > div { padding: 14px 0; display: grid; grid-template-columns: 120px 1fr; gap: 20px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.presence-card dt { color: rgba(255, 255, 255, 0.52); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.presence-card dd { margin: 0; font-size: 13px; font-weight: 800; }
.presence-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.presence-actions a { min-height: 44px; padding: 0 16px; display: inline-flex; align-items: center; border: 1px solid rgba(255, 255, 255, 0.28); font-size: 11px; font-weight: 800; }
.presence-actions a:hover { color: var(--ink); background: var(--white); }
.page-contact { padding-top: 110px; }

.expanded-footer { min-height: 270px; display: grid; grid-template-columns: 1.3fr 0.65fr 0.65fr 1fr; align-items: start; padding-block: 60px; }
.footer-summary { max-width: 320px; margin: 25px 0 0; color: rgba(255, 255, 255, 0.5); font-size: 12px; line-height: 1.6; }
.footer-column { display: grid; gap: 11px; color: rgba(255, 255, 255, 0.58); font-size: 11px; }
.footer-column strong { margin-bottom: 8px; color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-column a { min-height: 44px; display: flex; align-items: center; color: rgba(255, 255, 255, 0.74); }
.footer-column a:hover { color: var(--orange); }
.footer-contact span { line-height: 1.45; }

@media (max-width: 1100px) {
  .main-nav { gap: 13px; font-size: 11px; }
  .site-header { padding-inline: 22px; }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .page-hero { min-height: 520px; padding: 150px 0 80px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-grid .kicker { margin-bottom: -3px; }
  .page-hero h1 { font-size: clamp(48px, 10vw, 76px); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .line-grid, .parts-grid, .service-detail-grid, .benefit-grid, .upholstery-service-grid { grid-template-columns: repeat(2, 1fr); }
  .line-card:nth-child(3n + 1), .benefit-grid article:nth-child(3n + 1) { border-left: 0; }
  .line-card:nth-child(2n + 1), .benefit-grid article:nth-child(2n + 1) { border-left: 1px solid var(--line); }
  .catalog-toolbar { grid-template-columns: 1fr; gap: 30px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid article:nth-child(2) { border-right: 1px solid rgba(255, 255, 255, 0.16); }
  .model-grid article:nth-child(3) { border-top: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .saving-grid, .rental-scope, .upholstery-feature, .about-story { grid-template-columns: 1fr; gap: 55px; }
  .saving-grid > strong b { font-size: 140px; }
  .catalog-download-grid article, .catalog-download-grid article:nth-child(even) { grid-template-columns: 0.8fr 1fr; }
  .catalog-download-grid article:nth-child(even) .catalog-cover { order: 1; }
  .catalog-download-grid article:nth-child(even) > div { order: 2; }
  .catalog-download-grid article > div { padding: 45px; }
  .material-band .shell { grid-template-columns: 1fr; }
  .material-band .shell > div { border-left: 1px solid rgba(255, 255, 255, 0.2); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid span:nth-child(4n) { border-right: 0; }
  .sector-grid span:nth-child(2n) { border-right: 1px solid var(--line); }
  .sector-grid span:nth-last-child(-n + 4) { border-bottom: 0; }
  .sector-grid span:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .expanded-footer { grid-template-columns: 1.3fr 0.7fr 0.7fr; }
  .footer-contact { grid-column: 1 / -1; margin-top: 20px; }
}

@media (max-width: 560px) {
  .page-hero { min-height: 490px; padding: 135px 0 65px; }
  .page-hero h1 { font-size: clamp(43px, 13vw, 60px); }
  .page-hero-grid > p:last-child { font-size: 15px; }
  .home-explore { padding-bottom: 70px; }
  .explore-grid, .line-grid, .parts-grid, .service-detail-grid, .benefit-grid, .upholstery-service-grid, .portfolio-grid, .model-grid, .value-grid { grid-template-columns: 1fr; }
  .explore-grid > a { min-height: 260px; }
  .line-card, .benefit-grid article { border-left: 1px solid var(--line) !important; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card-body { min-height: 205px; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .filter-row button { flex: 0 0 auto; }
  .cta-band .shell { align-items: flex-start; flex-direction: column; }
  .technical-note .shell { grid-template-columns: 1fr; gap: 25px; }
  .part-card { min-height: 430px; }
  .part-card > div { height: 250px; }
  .model-grid article { min-height: 285px; border-right: 1px solid rgba(255, 255, 255, 0.16); border-top: 0; }
  .model-grid article:first-child { border-top: 1px solid rgba(255, 255, 255, 0.16); }
  .model-grid h3 { margin-top: 75px; }
  .saving-grid > strong b { font-size: 116px; }
  .journey-list article { grid-template-columns: 55px 1fr; }
  .fiscal-note { grid-template-columns: 1fr; gap: 15px; }
  .catalog-download-grid article, .catalog-download-grid article:nth-child(even) { min-height: 0; grid-template-columns: 1fr; }
  .catalog-cover, .catalog-download-grid article:nth-child(even) .catalog-cover { min-height: 460px; order: 1; }
  .catalog-download-grid article > div, .catalog-download-grid article:nth-child(even) > div { padding: 38px 26px; order: 2; }
  .upholstery-feature > img { min-height: 480px; }
  .material-band strong { margin-bottom: 35px; }
  .sector-grid, .company-data .shell, .company-data .presence-grid { grid-template-columns: 1fr; }
  .presence-card { padding: 32px 24px !important; }
  .presence-card dl > div { grid-template-columns: 95px 1fr; }
  .sector-grid span { border-right: 1px solid var(--line) !important; border-bottom: 0 !important; }
  .sector-grid span:last-child { border-bottom: 1px solid var(--line) !important; }
  .expanded-footer { grid-template-columns: 1fr 1fr; gap: 35px; }
  .expanded-footer > div:first-child { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
}

/* Páginas nativas da prévia WordPress. */
[hidden],
.catalog-card.is-paged-hidden {
  display: none !important;
}

.component-catalog-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.component-catalog-grid article {
  min-width: 0;
  min-height: 430px;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.component-catalog-grid article > div {
  height: 225px;
  margin: -18px -20px 22px;
  padding: 18px;
  display: grid;
  place-items: center;
  background: #f7f6f2;
}

.component-catalog-grid img { width: 100%; height: 100%; object-fit: contain; }
.component-catalog-grid article > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.component-catalog-grid h3 { margin: 13px 0 9px; font-size: 20px; line-height: 1.08; letter-spacing: -0.035em; }
.component-catalog-grid p { margin: 0; color: #6d726e; font-size: 12px; line-height: 1.55; }
.component-catalog-grid a { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 10px; font-weight: 800; }

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

.article-grid article {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #e9e6df;
}

.article-grid article > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; }
.article-grid h2 { max-width: 500px; margin: 70px 0 18px; font-size: clamp(28px, 3.3vw, 43px); line-height: 1; letter-spacing: -0.055em; }
.article-grid p { margin: 0; color: #606561; font-size: 14px; line-height: 1.65; }
.article-grid a { margin-top: auto; padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; }

.article-page { max-width: 830px; }
.article-page > .text-link { display: inline-flex; margin-bottom: 50px; }
.article-page > p { margin: 0 0 28px; color: #4f5551; font-size: 19px; line-height: 1.82; }
.article-page .fiscal-note { margin-top: 70px; grid-template-columns: 1fr; gap: 14px; background: #e8e5dd; }
.article-page .fiscal-note a { color: var(--orange); font-size: 12px; font-weight: 800; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.contact-options { display: grid; gap: 12px; }
.contact-options article { padding: 28px; border: 1px solid var(--line); background: #e9e6df; }
.contact-options article > span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.11em; }
.contact-options h2 { overflow-wrap: anywhere; margin: 36px 0 11px; font-size: clamp(23px, 3vw, 36px); letter-spacing: -0.045em; }
.contact-options p { margin: 0 0 22px; color: #666b67; font-size: 12px; }

.lead-form h2 { margin: 8px 0 30px; font-size: clamp(30px, 4vw, 48px); line-height: 1; letter-spacing: -0.05em; text-transform: uppercase; }
.lead-form textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 15px;
  resize: vertical;
  border: 1px solid rgba(21, 23, 22, 0.18);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: #faf9f6;
  font-size: 13px;
  font-weight: 400;
}

.lead-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(194, 110, 78, 0.14); }
.lead-form > .button { width: 100%; justify-content: space-between; border: 0; cursor: pointer; }

@media (max-width: 1180px) and (min-width: 901px) {
  .site-header { padding-inline: 22px; }
  .main-nav { gap: 12px; font-size: 10px; }
  .brand-logo { width: 188px; }
  .nav-cta { padding-inline: 12px; }
}

@media (max-width: 900px) {
  .mobile-locale-switcher a { width: 30px; height: 30px; color: rgba(255, 255, 255, 0.78); font-weight: 900; }
  .mobile-locale-switcher a.is-active { color: var(--white); background: var(--orange); }
  .site-header.menu-open .mobile-locale-switcher a { color: rgba(21, 23, 22, 0.7); }
  .site-header.menu-open .mobile-locale-switcher a.is-active { color: var(--white); background: var(--orange); }
  .component-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .catalog-toolbar { grid-template-columns: 1fr; gap: 28px; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-download-grid article,
  .catalog-download-grid article:nth-child(even) { grid-template-columns: 0.78fr 1fr; }
}

@media (max-width: 560px) {
  .mobile-locale-switcher a { width: 27px; }
  .component-catalog-grid,
  .catalog-grid { grid-template-columns: 1fr; }
  .component-catalog-grid article { min-height: 400px; }
  .article-grid article { min-height: 330px; padding: 26px; }
  .article-grid h2 { margin-top: 52px; }
  .article-page > p { font-size: 16px; }
  .contact-options .button { width: 100%; }
  .catalog-download-grid article,
  .catalog-download-grid article:nth-child(even) { min-height: 0; grid-template-columns: 1fr; }
  .catalog-download-grid article:nth-child(even) .catalog-cover { order: 1; }
  .catalog-download-grid article:nth-child(even) > div { order: 2; }
  .catalog-cover { min-height: 390px; padding: 24px; }
  .catalog-download-grid article > div { padding: 38px 26px; }
  .fiscal-note { grid-template-columns: 1fr; gap: 14px; }
}

.component-card img { width: 90%; height: 90%; object-fit: contain; }
.component-card h3 { margin: 20px 0 8px; font-size: 18px; }
.component-card p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 12px; line-height: 1.5; }
.component-card-link { margin-top: 22px; display: block; color: #f2a184; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }

.rental {
  padding-block: 132px;
  color: var(--white);
  background: var(--orange);
}

.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.rental-statement > p:not(.kicker) {
  max-width: 560px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.button-light {
  margin-top: 37px;
  color: var(--ink);
  background: var(--white);
}

.rental-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
}

.rental-benefits article {
  min-height: 230px;
  padding: 27px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.rental-benefits article:nth-child(3),
.rental-benefits article:nth-child(4) { border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
.rental-benefits article:nth-child(2),
.rental-benefits article:nth-child(4) { border-right: 1px solid rgba(255, 255, 255, 0.25); }
.rental-benefits span { font-size: 11px; font-weight: 800; opacity: 0.62; }
.rental-benefits h3 { margin: 64px 0 12px; font-size: 19px; }
.rental-benefits p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 12px; line-height: 1.6; }

.upholstery { background: #e6dfd4; }

.upholstery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.upholstery-image { min-height: 630px; overflow: hidden; }
.upholstery-image img { width: 100%; height: 100%; min-height: 630px; object-fit: cover; }
.upholstery-copy h2 { margin: 0; font: 800 clamp(40px, 5vw, 66px)/0.97 var(--font-display); letter-spacing: -0.065em; text-transform: uppercase; }
.upholstery-copy > p:not(.kicker) { margin: 28px 0 0; color: #5b5e5a; font-size: 16px; line-height: 1.7; }
.upholstery-tags { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 8px; }
.upholstery-tags span { padding: 10px 13px; border: 1px solid rgba(21, 23, 22, 0.25); font-size: 11px; font-weight: 800; }

.clients {
  padding-block: 58px;
  color: var(--white);
  background: var(--ink);
}

.client-wrap > p { margin: 0 0 28px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.client-list { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid rgba(255, 255, 255, 0.14); }
.client-list strong { padding: 30px 20px; display: grid; place-items: center; border-left: 1px solid rgba(255, 255, 255, 0.14); font-size: 15px; text-align: center; }
.client-list strong:last-child { border-right: 1px solid rgba(255, 255, 255, 0.14); }
.client-wrap small { display: block; margin-top: 16px; color: rgba(255, 255, 255, 0.38); font-size: 10px; }

.about {
  color: var(--white);
  background: var(--green);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.about-copy > .lead { margin: 0; color: var(--white); font-size: 22px; }
.about-copy > p:not(.lead) { margin: 28px 0 0; color: rgba(255, 255, 255, 0.65); font-size: 15px; line-height: 1.75; }
.about-values { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); }
.about-values article { padding: 22px 18px; border-left: 1px solid rgba(255, 255, 255, 0.2); }
.about-values article:last-child { border-right: 1px solid rgba(255, 255, 255, 0.2); }
.about-values b { color: var(--orange-bright); font-size: 11px; }
.about-values strong { display: block; margin: 40px 0 8px; font-size: 14px; }
.about-values span { color: rgba(255, 255, 255, 0.55); font-size: 11px; line-height: 1.45; }

.faq-list {
  margin-top: 66px;
  border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 0; color: var(--ink); background: transparent; text-align: left; cursor: pointer; }
.faq-item button span { font-size: 18px; font-weight: 800; letter-spacing: -0.025em; }
.faq-item button b { color: var(--orange); font-size: 28px; font-weight: 400; }
.faq-item > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 220ms ease; }
.faq-item > div > p { min-height: 0; margin: 0; overflow: hidden; max-width: 770px; color: #646865; font-size: 14px; line-height: 1.7; }
.faq-item.is-open > div { grid-template-rows: 1fr; }
.faq-item.is-open > div > p { padding-bottom: 27px; }

.contact {
  padding-block: 126px;
  color: var(--white);
  background: var(--slate);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.contact-copy > p:not(.kicker) { max-width: 520px; margin: 28px 0 0; color: rgba(255, 255, 255, 0.65); font-size: 16px; line-height: 1.7; }
.direct-contact { margin-top: 48px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.direct-contact > * { padding: 17px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.direct-contact span { color: rgba(255, 255, 255, 0.5); font-size: 11px; }
.direct-contact strong { font-size: 12px; }

.lead-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: grid; gap: 8px; margin-bottom: 17px; color: #5f6461; font-size: 11px; font-weight: 800; }
.lead-form input,
.lead-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(21, 23, 22, 0.18);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: #faf9f6;
  font-size: 13px;
  font-weight: 400;
}

.lead-form input:focus,
.lead-form select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(194, 110, 78, 0.14); }
.submit-button { width: 100%; margin-top: 6px; border: 0; cursor: pointer; }
.lead-form small { display: block; margin-top: 13px; color: #858986; font-size: 10px; line-height: 1.5; }

.footer { color: var(--white); background: #101110; }
.footer-main { min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 27px; color: rgba(255, 255, 255, 0.6); font-size: 12px; font-weight: 700; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.4); font-size: 9px; }

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  min-height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.25);
  font-size: 11px;
  font-weight: 800;
}

@keyframes hero-enter {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 900px) {
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }

  .site-header {
    height: 72px;
    padding: 0 22px;
  }

  .site-header.menu-open {
    color: var(--ink);
    background: var(--paper);
    border-bottom-color: var(--line);
  }

  .brand-logo { width: 176px; }
  .menu-toggle { display: block; z-index: 52; }

  .mobile-locale-switcher {
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 11, 10, 0.18);
  }

  .mobile-locale-switcher button {
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    font-size: 9px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-locale-switcher button.is-active { color: var(--white); background: var(--orange); }
  .site-header.menu-open .mobile-locale-switcher { border-color: rgba(21, 23, 22, 0.25); background: var(--white); }
  .site-header.menu-open .mobile-locale-switcher button { color: rgba(21, 23, 22, 0.7); }
  .site-header.menu-open .mobile-locale-switcher button.is-active { color: var(--white); background: var(--orange); }

  .main-nav {
    position: fixed;
    inset: 0;
    padding: 110px 30px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    z-index: 51;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a:not(.nav-cta) { color: var(--ink); opacity: 1; font-size: 18px; }
  .main-nav > a:not(.nav-cta)::after { bottom: -5px; }
  .main-nav .locale-switcher { display: none; }
  .locale-switcher button { width: 44px; height: 38px; font-size: 11px; }
  .locale-switcher button { color: rgba(21, 23, 22, 0.7); }
  .locale-switcher button.is-active { color: var(--white); background: var(--ink); }
  .header-currency { width: 134px; height: 44px; border-color: rgba(21, 23, 22, 0.28); color: var(--ink); background: var(--white); font-size: 11px; }
  .nav-cta { margin-top: auto; width: 100%; justify-content: center; border-color: var(--orange); color: var(--ink); background: var(--orange); font-size: 16px; }
  .nav-cta:hover { color: var(--ink); background: var(--orange-bright); }

  .mobile-quick-nav {
    position: fixed;
    z-index: 45;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -9px 28px rgba(21, 23, 22, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .mobile-quick-nav a {
    min-width: 0;
    padding: 8px 3px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-right: 1px solid rgba(21, 23, 22, 0.08);
  }

  .mobile-quick-nav a:last-child { border-right: 0; }
  .mobile-quick-nav span { color: #6f7471; font-size: 20px; line-height: 1; }
  .mobile-quick-nav b { overflow: hidden; max-width: 100%; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
  .mobile-quick-nav a.is-active { color: #294231; background: #eef3ed; }
  .mobile-quick-nav a.is-active span { color: #294231; }
  .floating-whatsapp { z-index: 46; bottom: 82px; }

  .hero {
    min-height: 720px;
    height: 92svh;
  }

  .hero-media img { object-position: 58% center; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(13, 15, 14, 0.94) 0%, rgba(13, 15, 14, 0.7) 54%, rgba(13, 15, 14, 0.22));
  }

  .hero-content { padding-bottom: 76px; }
  .hero h1 { max-width: 680px; }
  .hero-marker { display: none; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }

  .section { padding-block: 90px; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }

  .maintenance-grid,
  .rental-grid,
  .upholstery-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .comparison { min-height: 620px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(odd) { border-left: 1px solid var(--line); }
  .product-card { grid-template-columns: 1fr; }
  .product-card.reverse .product-image { order: 1; }
  .product-card.reverse .product-content { order: 2; }
  .product-image { min-height: 500px; }
  .component-grid { grid-template-columns: repeat(3, 1fr); }
  .client-list { grid-template-columns: repeat(2, 1fr); }
  .client-list strong:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .client-list strong:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.14); border-right: 1px solid rgba(255, 255, 255, 0.14); }
  .about-values { max-width: 640px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 32px, 1180px); }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero h1 span { -webkit-text-stroke-width: 1px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { padding: 24px 10px; }
  .section-heading h2 { font-size: 39px; }

  .maintenance,
  .rental,
  .contact { padding-block: 90px; }
  .maintenance-copy h2,
  .rental-statement h2,
  .about-title h2,
  .contact-copy h2,
  .upholstery-copy h2 { font-size: 41px; }
  .saving-callout { grid-template-columns: 1fr; }
  .comparison { min-height: 540px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 235px; border-left: 1px solid var(--line); }
  .process-step h3 { margin-top: 45px; }
  .product-card { min-height: 0; }
  .product-image { min-height: 390px; padding: 16px; }
  .product-content { padding: 42px 26px; }
  .nr-note { grid-template-columns: 1fr; gap: 16px; }
  .component-grid { grid-template-columns: 1fr 1fr; }
  .component-card > div { height: 145px; }
  .rental-benefits { grid-template-columns: 1fr; }
  .rental-benefits article { min-height: 200px; border-right: 1px solid rgba(255, 255, 255, 0.25); }
  .rental-benefits article:nth-child(2),
  .rental-benefits article:nth-child(3) { border-bottom: 0; }
  .upholstery-image,
  .upholstery-image img { min-height: 460px; }
  .client-list { grid-template-columns: 1fr; }
  .client-list strong { border-right: 1px solid rgba(255, 255, 255, 0.14); border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .about-values { grid-template-columns: 1fr; }
  .about-values article { min-height: 155px; border-right: 1px solid rgba(255, 255, 255, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .about-values strong { margin-top: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 28px 20px; }
  .footer-main { padding-block: 45px; flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 48px; justify-content: center; padding: 0; border-radius: 50%; }
}

@media (max-width: 380px) {
  .site-header { padding-inline: 14px; }
  .brand-logo { width: 150px; }
  .mobile-header-tools { gap: 4px; }
  .mobile-locale-switcher button { width: 27px; }
}

/* Mantém o rodapé multipágina após as regras legadas da página inicial. */
.footer-main.expanded-footer {
  min-height: 270px;
  padding-block: 60px;
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.65fr 1fr;
  align-items: start;
}

@media (max-width: 900px) {
  .footer-main.expanded-footer { grid-template-columns: 1.3fr 0.7fr 0.7fr; }
  .footer-main.expanded-footer .footer-contact { grid-column: 1 / -1; margin-top: 20px; }
}

@media (max-width: 560px) {
  .footer-main.expanded-footer {
    padding-block: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
  }
  .footer-main.expanded-footer > div:first-child,
  .footer-main.expanded-footer .footer-contact { grid-column: 1 / -1; }
}

/* Loja online assistida */
.shop-assurance {
  color: var(--white);
  background: var(--ink);
}

.shop-assurance .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.shop-assurance .shell > div {
  min-height: 155px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.shop-assurance .shell > div:last-child { border-right: 1px solid rgba(255, 255, 255, 0.14); }
.shop-assurance b { color: var(--orange-bright); font-size: 10px; }
.shop-assurance strong { margin-top: auto; font-size: 15px; }
.shop-assurance span { margin-top: 7px; color: rgba(255, 255, 255, 0.55); font-size: 11px; line-height: 1.45; }

.shop-paths {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.shop-paths a {
  min-height: 310px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #ebe8e1;
  transition: transform 180ms ease, background 180ms ease;
}

.shop-paths a:hover { transform: translateY(-5px); background: var(--white); }
.shop-paths span { color: var(--orange); font-size: 10px; font-weight: 800; }
.shop-paths h3 { margin: auto 0 13px; font-size: 28px; letter-spacing: -0.04em; }
.shop-paths p { min-height: 70px; margin: 0; color: #656a67; font-size: 12px; line-height: 1.6; }
.shop-paths b { margin-top: 20px; font-size: 11px; }
.currency-panel {
  margin-bottom: 72px;
  padding: 36px;
  color: var(--white);
  background: var(--slate);
}
.currency-panel-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; }
.currency-panel h2 { max-width: 660px; margin: 0; font-size: clamp(30px, 4vw, 52px); line-height: 0.96; letter-spacing: -0.055em; text-transform: uppercase; }
.currency-options { flex: 0 0 auto; display: flex; gap: 7px; }
.currency-options button { min-height: 45px; padding: 0 15px; border: 1px solid rgba(255, 255, 255, 0.32); color: rgba(255, 255, 255, 0.7); background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.currency-options button.is-active { color: var(--ink); background: var(--white); }
.rate-status { margin-top: 32px; padding-top: 18px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 25px; border-top: 1px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.68); font-size: 10px; }
.rate-status a { color: var(--orange-bright); font-weight: 800; }
.currency-disclaimer { max-width: 850px; margin: 14px 0 0; color: rgba(255, 255, 255, 0.48); font-size: 10px; line-height: 1.55; }
.shop-toolbar-note { margin: 14px 0 0; color: #666b68; font-size: 13px; }
.shop-card .catalog-card-body { min-height: 310px; }

.shop-price {
  margin-top: 20px;
  padding-top: 17px;
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
}

.shop-price strong { font-size: 13px; }
.shop-price small { color: #7a7e7b; font-size: 9px; line-height: 1.45; }
.shop-price.is-published > span { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.shop-price.is-published strong { color: var(--ink); font-size: 22px; letter-spacing: -0.035em; }
.shop-price.is-published em { color: #777c79; font-size: 9px; font-style: normal; font-weight: 700; }
.catalog-published-price { margin: 17px 0 0 !important; padding-top: 14px; display: grid; gap: 4px; border-top: 1px solid var(--line); }
.catalog-published-price small { color: var(--orange); font-size: 8px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.catalog-published-price strong { color: var(--ink); font-size: 17px; }
.catalog-published-price em { color: #777c79; font-size: 8px; font-style: normal; font-weight: 700; }

.add-to-quote,
.quantity-control {
  min-height: 48px;
  margin-top: auto;
  border: 1px solid var(--ink);
  background: transparent;
}

.add-to-quote {
  width: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.add-to-quote:hover { color: var(--white); background: var(--ink); }

.quantity-control {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  text-align: center;
}

.quantity-control button {
  height: 46px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.quantity-control button:hover { color: var(--white); background: var(--ink); }
.quantity-control strong { font-size: 13px; }

.shop-help {
  padding: 80px 0;
  color: var(--white);
  background: var(--green);
}

.shop-help .shell { display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.shop-help h2 { margin: 0; font-size: clamp(37px, 5vw, 68px); line-height: 0.95; letter-spacing: -0.06em; text-transform: uppercase; }
.shop-help p:not(.kicker) { max-width: 760px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 15px; line-height: 1.7; }
.shop-help .button { flex: 0 0 auto; }

.cart-launcher {
  position: fixed;
  z-index: 45;
  left: 22px;
  bottom: 22px;
  min-height: 50px;
  padding: 0 8px 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.25);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.cart-launcher strong { width: 34px; height: 34px; display: grid; place-items: center; color: var(--ink); background: var(--white); border-radius: 50%; }
.cart-overlay { position: fixed; z-index: 70; inset: 0; visibility: hidden; opacity: 0; background: rgba(10, 11, 10, 0.66); transition: 200ms ease; }
.cart-overlay.is-open { visibility: visible; opacity: 1; }

.quote-cart {
  position: fixed;
  z-index: 71;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(470px, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.quote-cart.is-open { transform: translateX(0); }
.quote-cart-head { padding: 27px; display: flex; align-items: start; justify-content: space-between; color: var(--white); background: var(--slate); }
.quote-cart-head span { color: #f0a184; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.quote-cart-head h2 { margin: 8px 0 0; font-size: 31px; letter-spacing: -0.045em; }
.quote-cart-head > button { width: 40px; height: 40px; border: 1px solid rgba(255, 255, 255, 0.28); color: var(--white); background: transparent; font-size: 25px; cursor: pointer; }
.quote-cart-items { padding: 12px 20px; overflow-y: auto; }
.quote-cart-items article { padding: 13px 0; display: grid; grid-template-columns: 72px 1fr auto; gap: 13px; align-items: center; border-bottom: 1px solid var(--line); }
.quote-cart-items img { width: 72px; height: 64px; object-fit: cover; background: var(--white); }
.quote-cart-items article > div:nth-child(2) { display: grid; gap: 3px; }
.quote-cart-items small { color: var(--orange); font-size: 8px; font-weight: 800; }
.quote-cart-items article strong { font-size: 12px; }
.quote-cart-items article span { color: #777b78; font-size: 9px; }
.cart-item-actions { display: grid; grid-template-columns: 27px 24px 27px; align-items: center; text-align: center; }
.cart-item-actions button { width: 27px; height: 27px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.cart-item-actions b { font-size: 10px; }
.cart-empty { padding: 75px 15px; text-align: center; }
.cart-empty strong { font-size: 20px; }
.cart-empty p { color: #777b78; font-size: 12px; line-height: 1.6; }
.quote-cart-footer { padding: 22px 27px 27px; border-top: 1px solid var(--line); background: var(--white); }
.quote-cart-footer p { margin: 0 0 16px; font-size: 11px; }
.quote-cart-footer .button { width: 100%; margin: 0; border: 0; }
.quote-cart-footer .button:disabled { color: #8a8d8b; background: #e1e0dc; cursor: not-allowed; }
.quote-cart-footer small { display: block; margin-top: 11px; color: #828682; font-size: 9px; text-align: center; }

/* Blog e artigos */
.blog-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 75px; align-items: center; }
.blog-featured > img { width: 100%; min-height: 590px; object-fit: cover; }
.blog-featured h2 { margin: 0; font-size: clamp(40px, 5vw, 68px); line-height: 0.98; letter-spacing: -0.065em; text-transform: uppercase; }
.blog-featured > div > p:not(.kicker) { margin: 25px 0 0; color: #626763; font-size: 16px; line-height: 1.7; }
.blog-featured .button { margin-top: 30px; }
.blog-list-section { background: #e5e2db; }
.blog-grid { margin-top: 65px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.blog-grid article { min-width: 0; display: grid; grid-template-columns: 0.8fr 1.2fr; background: var(--white); }
.blog-card-image { min-height: 350px; overflow: hidden; background: #d7d4cc; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.blog-card-image:hover img { transform: scale(1.03); }
.blog-grid article > div { padding: 29px; display: flex; flex-direction: column; }
.blog-grid article span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.blog-grid h3 { margin: 45px 0 14px; font-size: 25px; line-height: 1.08; letter-spacing: -0.04em; }
.blog-grid p { margin: 0; color: #6a6f6b; font-size: 12px; line-height: 1.6; }
.blog-grid article > div > a { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; }

.article-hero { padding: 170px 0 95px; color: var(--white); background: var(--slate); }
.article-hero .shell > a { display: inline-block; margin-bottom: 55px; color: rgba(255, 255, 255, 0.68); font-size: 11px; font-weight: 800; }
.article-hero h1 { max-width: 1010px; margin: 0; font: 800 clamp(50px, 6.4vw, 92px)/0.94 var(--font-display); letter-spacing: -0.07em; text-transform: uppercase; }
.article-hero .shell > p:last-child { max-width: 760px; margin: 30px 0 0; color: rgba(255, 255, 255, 0.7); font-size: 18px; line-height: 1.65; }
.article-image { width: min(1180px, calc(100% - 48px)); height: min(70vw, 720px); margin: 0 auto; overflow: hidden; background: #ddd; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { padding-block: 95px 130px; display: grid; grid-template-columns: 0.36fr 1fr; gap: 95px; align-items: start; }
.article-layout > aside { position: sticky; top: 110px; padding: 25px; border-top: 3px solid var(--orange); background: #e7e4dd; }
.article-layout > aside span { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.article-layout > aside strong { display: block; margin: 55px 0 15px; font-size: 20px; line-height: 1.15; }
.article-layout > aside p { margin: 0; color: #666b67; font-size: 12px; line-height: 1.65; }
.article-body { max-width: 760px; }
.article-intro { margin: 0 0 70px; font-size: 24px; line-height: 1.55; letter-spacing: -0.02em; }
.article-body section { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--line); }
.article-body h2 { margin: 0 0 22px; font-size: clamp(31px, 4vw, 46px); line-height: 1.02; letter-spacing: -0.055em; }
.article-body section p { margin: 0 0 20px; color: #585d59; font-size: 16px; line-height: 1.78; }
.article-body ul { margin: 27px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-body li { padding: 16px 0 16px 28px; position: relative; border-bottom: 1px solid var(--line); color: #555a56; font-size: 14px; line-height: 1.5; }
.article-body li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 800; }
.article-note { margin-top: 75px; padding: 35px; color: var(--white); background: var(--green); }
.article-note strong { font-size: 24px; }
.article-note p { margin: 15px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 13px; line-height: 1.65; }
.article-note .button { margin-top: 25px; }

.catalog-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.catalog-actions .text-link { margin-top: 0; }
.catalog-download-button { min-height: 48px; padding: 0 17px; display: inline-flex; align-items: center; gap: 25px; border: 1px solid var(--ink); font-size: 11px; font-weight: 800; }
.catalog-download-button:hover { color: var(--white); background: var(--ink); }

/* Instalação no celular */
.install-app-button {
  width: 100%;
  min-height: 47px;
  margin-top: 14px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
  font: 800 10px/1 var(--font-display);
  text-transform: uppercase;
  cursor: pointer;
}

.install-app-button:hover { border-color: var(--orange-bright); color: var(--orange-bright); }
.install-app-button b { font-size: 18px; }
.app-installed-label { margin-top: 14px; color: rgba(255, 255, 255, 0.55); font-size: 10px; line-height: 1.5; }

.install-guide-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(5, 6, 5, 0.78);
}

.install-guide {
  position: relative;
  width: min(620px, 100%);
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.install-guide-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.install-guide h2 { max-width: 500px; margin: 0; font-size: clamp(34px, 6vw, 54px); line-height: 0.98; letter-spacing: -0.055em; text-transform: uppercase; }
.install-guide > div { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.install-guide article { padding: 24px 20px 24px 0; }
.install-guide article + article { padding-left: 20px; border-left: 1px solid var(--line); }
.install-guide article strong { font-size: 13px; }
.install-guide article p { margin: 10px 0 0; color: #626763; font-size: 12px; line-height: 1.6; }
.install-guide > small { display: block; padding-top: 22px; border-top: 1px solid var(--line); color: #777b78; font-size: 10px; line-height: 1.55; }

@media (max-width: 1100px) {
  .blog-grid article { grid-template-columns: 1fr; }
  .blog-card-image { min-height: 310px; }
  .blog-grid article > div { min-height: 330px; }
}

@media (max-width: 900px) {
  .shop-assurance .shell { grid-template-columns: repeat(2, 1fr); }
  .shop-assurance .shell > div:nth-child(2) { border-right: 1px solid rgba(255, 255, 255, 0.14); }
  .shop-assurance .shell > div:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .shop-paths { grid-template-columns: repeat(2, 1fr); }
  .currency-panel-heading { align-items: flex-start; flex-direction: column; }
  .shop-help .shell { align-items: flex-start; flex-direction: column; }
  .blog-featured { grid-template-columns: 1fr; gap: 50px; }
  .blog-featured > img { min-height: 520px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid article { grid-template-columns: 0.8fr 1.2fr; }
  .article-layout { grid-template-columns: 1fr; gap: 55px; }
  .article-layout > aside { position: static; }
}

@media (max-width: 560px) {
  .shop-assurance .shell { width: 100%; grid-template-columns: 1fr; }
  .shop-assurance .shell > div { min-height: 135px; padding-inline: 24px; border-right: 0 !important; border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .shop-assurance .shell > div:first-child { border-top: 0; }
  .shop-paths { grid-template-columns: 1fr; }
  .shop-paths a { min-height: 270px; }
  .currency-panel { margin-inline: -24px; padding: 32px 24px; }
  .currency-options { width: 100%; }
  .currency-options button { flex: 1; padding-inline: 8px; }
  .rate-status { flex-direction: column; }
  .shop-card .catalog-card-body { min-height: 290px; }
  .cart-launcher { left: 16px; bottom: 82px; }
  .quote-cart-head { padding: 23px 20px; }
  .quote-cart-items { padding-inline: 14px; }
  .quote-cart-items article { grid-template-columns: 62px 1fr; }
  .quote-cart-items img { width: 62px; height: 58px; }
  .cart-item-actions { grid-column: 2; justify-self: start; }
  .quote-cart-footer { padding-inline: 20px; }
  .blog-featured > img { min-height: 420px; }
  .blog-featured h2 { font-size: 42px; }
  .blog-grid article { grid-template-columns: 1fr; }
  .blog-card-image { min-height: 310px; }
  .blog-grid article > div { min-height: 350px; padding: 25px; }
  .article-hero { padding: 135px 0 65px; }
  .article-hero .shell > a { margin-bottom: 40px; }
  .article-hero h1 { font-size: clamp(43px, 13vw, 59px); }
  .article-hero .shell > p:last-child { font-size: 15px; }
  .article-image { width: 100%; height: 105vw; max-height: 590px; }
  .article-layout { padding-block: 65px 90px; }
  .article-intro { margin-bottom: 55px; font-size: 20px; }
  .article-body section { margin-top: 50px; }
  .article-body section p { font-size: 15px; }
  .article-note { padding: 28px 22px; }
  .catalog-actions { align-items: stretch; flex-direction: column; }
  .catalog-download-button { justify-content: space-between; }
  .install-guide { padding: 36px 22px 25px; }
  .install-guide > div { grid-template-columns: 1fr; }
  .install-guide article { padding: 20px 0; }
  .install-guide article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
}
