:root {
  --fx-gold: #F2A516;
  --fx-copper: #A64208;
  --fx-wine: #730202;
  --fx-black: #000000;
  --fx-white: #FFFFFF;
  --fx-paper: #F4F1EC;
  --fx-linen: #E6E1D8;
  --fx-steel: #2A2A2A;
  --fx-ink: #121212;
  --fx-font: "Source Sans 3", system-ui, sans-serif;
  --fx-display: "Source Sans 3", system-ui, sans-serif;
  --fx-mono: "IBM Plex Mono", ui-monospace, monospace;
  --fx-radius: 2px;
  --fx-max: 1200px;
  --fx-space-1: .5rem;
  --fx-space-2: 1rem;
  --fx-space-3: 1.5rem;
  --fx-space-4: 2.5rem;
  --fx-space-5: 4rem;
  --fx-rule: 1px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

.fx-hero,
.fx-split,
.fx-cta,
.fx-main,
.fx-stats {
  scroll-margin-top: 8.5rem;
}

body.fx-body {
  margin: 0;
  font-family: var(--fx-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fx-ink);
  background: var(--fx-paper);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
}

#conteudo {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

h1,
h2 {
  text-transform: none;
}

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

a {
  color: var(--fx-copper);
  text-decoration: none;
}

a:hover {
  color: var(--fx-wine);
}

.fx-skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.fx-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--fx-gold);
  color: var(--fx-black);
  padding: .5rem .8rem;
}

.fx-wrap {
  width: min(100% - 2rem, var(--fx-max));
  margin-inline: auto;
}

/* Header: branco, busca, orçamento; barra de categorias */
.fx-header {
  background: var(--fx-white);
  color: var(--fx-ink);
  border-bottom: var(--fx-rule) solid var(--fx-linen);
  box-shadow: 0 1px 0 rgba(18, 18, 18, .04);
  position: sticky;
  top: 0;
  z-index: 40;
}

.fx-header a {
  color: var(--fx-ink);
}

.fx-header a:hover,
.fx-header a:focus-visible {
  color: var(--fx-wine);
}

.fx-header__top {
  background: var(--fx-paper);
  border-bottom: var(--fx-rule) solid var(--fx-linen);
}

.fx-header__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .85rem;
  padding: .38rem 0;
  font-size: .78rem;
}

.fx-header__loc {
  margin-right: auto;
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--fx-steel);
}

.fx-header__contact a {
  font-family: var(--fx-mono);
  font-size: .78rem;
  font-weight: 500;
  color: var(--fx-ink);
  white-space: nowrap;
}

.fx-header__contact a:hover,
.fx-header__contact a:focus-visible {
  color: var(--fx-wine);
}

.fx-header__wa {
  color: var(--fx-wine);
}

.fx-header .fx-header__quote {
  color: var(--fx-black);
}

.fx-header .fx-header__quote:hover,
.fx-header .fx-header__quote:focus-visible {
  color: #fff;
}

.fx-header__bar {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: .65rem 0;
}

.fx-header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.fx-header__quote {
  white-space: nowrap;
  text-decoration: none;
  padding: .6rem 1rem;
  font-size: .75rem;
}

.fx-header__quote-short {
  display: none;
}

.fx-header__quote .fx-badge {
  background: var(--fx-white);
  color: var(--fx-ink);
  border: var(--fx-rule) solid var(--fx-linen);
  margin-left: .2rem;
}

.fx-search {
  display: flex;
  min-width: 0;
  max-width: 480px;
  width: 100%;
  justify-self: stretch;
  gap: 0;
  border: var(--fx-rule) solid var(--fx-linen);
  background: var(--fx-paper);
  border-radius: var(--fx-radius);
  overflow: hidden;
}

.fx-search:focus-within {
  border-color: var(--fx-steel);
  box-shadow: 0 0 0 1px var(--fx-gold);
}

.fx-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--fx-ink);
  font-family: var(--fx-mono);
  font-size: .85rem;
  padding: .55rem .85rem;
}

.fx-search input::placeholder {
  color: #8a847c;
}

.fx-search input:focus {
  outline: 0;
}

.fx-header .fx-search .fx-btn {
  border-radius: 0;
  border: 0;
  border-left: var(--fx-rule) solid var(--fx-linen);
  padding: .5rem .85rem;
  background: transparent;
  color: var(--fx-steel);
  font-size: .72rem;
  letter-spacing: .04em;
}

.fx-header .fx-search .fx-btn:hover,
.fx-header .fx-search .fx-btn:focus-visible {
  background: var(--fx-white);
  color: var(--fx-wine);
  border-color: transparent;
  border-left-color: var(--fx-linen);
}

.fx-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.fx-logo img {
  height: 46px;
  width: auto;
}

.fx-header__cats {
  background: var(--fx-white);
  border-top: var(--fx-rule) solid var(--fx-linen);
}

.fx-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
}

.fx-nav > li > a,
.fx-nav__drop-btn {
  display: block;
  padding: .5rem .75rem;
  color: var(--fx-steel);
}

.fx-nav > li > a:hover,
.fx-nav > li > a:focus-visible,
.fx-nav__drop-btn:hover,
.fx-nav__drop:hover > a,
.fx-nav__drop:focus-within > a,
.fx-nav__drop:focus-within .fx-nav__drop-btn {
  color: var(--fx-ink);
  background: var(--fx-paper);
}

.fx-nav a[aria-current="page"] {
  color: var(--fx-ink);
  box-shadow: inset 0 -2px 0 var(--fx-gold);
}

.fx-nav__drop {
  position: relative;
}

.fx-nav__drop > a::after,
.fx-nav__drop-btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .35rem;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid currentColor;
  opacity: .45;
  vertical-align: 2px;
}

.fx-nav__drop-btn {
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--fx-steel);
}

.fx-nav__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  max-height: 70vh;
  overflow: auto;
  margin: 0;
  padding: .35rem 0;
  list-style: none;
  background: var(--fx-white);
  border: var(--fx-rule) solid var(--fx-linen);
  border-left: 2px solid var(--fx-gold);
  box-shadow: 0 6px 20px rgba(18, 18, 18, .08);
  text-transform: none;
  z-index: 20;
}

.fx-nav__drop:hover > .fx-nav__sub,
.fx-nav__drop:focus-within > .fx-nav__sub {
  display: block;
}

.fx-nav__sub a {
  display: block;
  padding: .45rem .9rem;
  white-space: nowrap;
  box-shadow: none;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fx-steel);
}

.fx-nav__all {
  font-weight: 500;
  color: var(--fx-ink);
}

.fx-nav__sub a:hover,
.fx-nav__sub a:focus-visible {
  background: var(--fx-paper);
  color: var(--fx-wine);
}

.fx-nav__sub a[aria-current="page"] {
  color: var(--fx-wine);
  background: var(--fx-paper);
  box-shadow: none;
}

.fx-nav__group {
  padding: .15rem 0 .35rem;
  border-bottom: var(--fx-rule) solid var(--fx-linen);
}

.fx-nav__group:last-child {
  border-bottom: 0;
}

.fx-nav__group-title {
  color: var(--fx-ink) !important;
  font-size: .78rem;
  font-weight: 600;
}

.fx-nav__nested {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fx-nav__nested a {
  padding-left: 1.35rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.fx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
  border: 1px solid var(--fx-gold);
  background: var(--fx-gold);
  color: var(--fx-black);
  padding: .7rem 1.1rem;
  border-radius: var(--fx-radius);
  cursor: pointer;
}

.fx-btn:hover,
.fx-btn:focus-visible {
  background: var(--fx-copper);
  border-color: var(--fx-copper);
  color: #fff;
}

.fx-btn--ghost {
  background: transparent;
  color: var(--fx-wine);
  border-color: var(--fx-steel);
}

.fx-btn--ghost:hover,
.fx-btn--ghost:focus-visible {
  background: var(--fx-steel);
  border-color: var(--fx-steel);
  color: #fff;
}

.fx-btn--ghost-dark,
.fx-hero .fx-btn--ghost,
.fx-cta .fx-btn--ghost,
.fx-pagehead .fx-btn--ghost,
.fx-section--dark .fx-btn--ghost {
  background: transparent;
  color: var(--fx-gold);
  border-color: var(--fx-gold);
}

.fx-btn--ghost-dark:hover,
.fx-btn--ghost-dark:focus-visible,
.fx-hero .fx-btn--ghost:hover,
.fx-hero .fx-btn--ghost:focus-visible,
.fx-cta .fx-btn--ghost:hover,
.fx-cta .fx-btn--ghost:focus-visible,
.fx-pagehead .fx-btn--ghost:hover,
.fx-pagehead .fx-btn--ghost:focus-visible,
.fx-section--dark .fx-btn--ghost:hover,
.fx-section--dark .fx-btn--ghost:focus-visible {
  background: var(--fx-gold);
  border-color: var(--fx-gold);
  color: var(--fx-black);
}

.fx-btn--wine {
  background: var(--fx-wine);
  border-color: var(--fx-wine);
  color: #fff;
}

.fx-btn--wine:hover {
  background: var(--fx-copper);
  border-color: var(--fx-copper);
  color: #fff;
}

/* Hero */
.fx-hero {
  --fx-hero-pad: clamp(2.75rem, 6vw, 4.5rem);
  background: var(--fx-black);
  color: #fff;
  padding: 0;
  border-bottom: var(--fx-rule) solid var(--fx-steel);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.fx-hero--home {
  min-height: clamp(520px, 78vh, 680px);
  display: flex;
  flex-direction: column;
}

.fx-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--fx-black);
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.fx-hero__backdrop--mesh {
  background-image:
    linear-gradient(135deg, rgba(242, 165, 22, .06) 0%, transparent 42%),
    linear-gradient(180deg, #0a0a0a 0%, #121212 48%, #000 100%);
}

.fx-hero__backdrop--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.fx-hero--banner .fx-hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .62) 42%, rgba(0, 0, 0, .28) 72%, rgba(0, 0, 0, .45) 100%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .75) 100%);
}

.fx-hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .72fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: var(--fx-hero-pad) 0 clamp(1.5rem, 3vw, 2.25rem);
}

.fx-hero__brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.1rem;
}

.fx-hero__mark {
  flex: 0 0 2px;
  align-self: stretch;
  min-height: 2.4rem;
  background: linear-gradient(180deg, var(--fx-gold) 0%, var(--fx-copper) 100%);
}

.fx-hero__kicker {
  font-family: var(--fx-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fx-gold);
  margin: 0;
}

.fx-hero h1 {
  font-family: var(--fx-display);
  font-weight: 700;
  font-size: clamp(2.15rem, 4.8vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 1.15rem;
  max-width: 14em;
  text-wrap: balance;
}

.fx-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  color: #d8d2c8;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.65;
}

.fx-hero__trust {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: .55rem;
  max-width: 34rem;
}

.fx-hero__trust li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .92rem;
  color: #c4bdb2;
  line-height: 1.45;
}

.fx-hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: .42rem;
  height: 1px;
  background: var(--fx-gold);
}

.fx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.fx-hero__panel {
  padding: 1.35rem 1.35rem 1.15rem;
  background: rgba(8, 8, 8, .62);
  border: 1px solid rgba(242, 165, 22, .28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .04) inset,
    0 18px 40px rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
}

.fx-hero__panel-k {
  margin: 0 0 1rem;
  font-family: var(--fx-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fx-gold);
}

.fx-hero__specs {
  margin: 0;
  display: grid;
  gap: .85rem;
}

.fx-hero__spec {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: .65rem;
  align-items: baseline;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.fx-hero__spec:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fx-hero__spec dt {
  margin: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8f8880;
}

.fx-hero__spec dd {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  color: #f0ebe3;
  line-height: 1.35;
}

.fx-hero__spec dd.fx-code {
  font-family: var(--fx-mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.fx-hero__panel-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-gold);
  border-bottom: 1px solid rgba(242, 165, 22, .35);
  padding-bottom: .12rem;
}

.fx-hero__panel-link:hover,
.fx-hero__panel-link:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

.fx-hero__stats {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid rgba(242, 165, 22, .22);
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
}

.fx-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fx-hero__stat {
  padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.fx-hero__stat:last-child {
  border-right: 0;
}

.fx-hero__stat strong {
  display: block;
  font-family: var(--fx-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
}

.fx-hero__stat span {
  display: block;
  margin-top: .2rem;
  font-family: var(--fx-mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a948c;
}

/* Hero legado (banner secundário em outras páginas, se houver) */
.fx-hero:not(.fx-hero--home) {
  padding: var(--fx-space-5) 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .42) 55%, rgba(0, 0, 0, .18) 100%), var(--fx-black);
}

.fx-hero:not(.fx-hero--home)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: var(--fx-gold);
  z-index: 1;
}

.fx-hero:not(.fx-hero--home) p:not(.fx-hero__kicker) {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  color: #e6e1d8;
  font-size: 1.05rem;
}

.fx-hero--banner:not(.fx-hero--home) {
  background-size: cover;
  background-position: center;
  background-color: var(--fx-black);
}

.fx-hero--banner:not(.fx-hero--home)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .4) 52%, rgba(0, 0, 0, .18) 100%);
}

.fx-hero--banner:not(.fx-hero--home) .fx-wrap {
  position: relative;
  z-index: 1;
}

.fx-banners .fx-hero--banner + .fx-hero--banner {
  border-top: 1px solid var(--fx-steel);
}

.fx-prose {
  max-width: 42rem;
}

.fx-prose h1,
.fx-prose h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
}

.fx-prose h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
}

.fx-prose h2 {
  font-size: 1.15rem;
  color: var(--fx-wine);
  margin: 1.75rem 0 .6rem;
  padding-bottom: .3rem;
  border-bottom: var(--fx-rule) solid var(--fx-linen);
}

.fx-prose__cover {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  margin: 0 0 1.25rem;
  border: var(--fx-rule) solid var(--fx-linen);
}

.fx-prose__body {
  color: var(--fx-steel);
  max-width: 38rem;
  line-height: 1.65;
}

.fx-prose__body p {
  margin: 0 0 1rem;
}

.fx-prose .fx-diffs {
  margin-top: 1.75rem;
}

.fx-main--tight {
  padding-top: 0;
}

.fx-contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* —— Contato (página) —— */
.fx-ctt-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .9fr);
  gap: 1.5rem 2rem;
  margin: 0 0 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-ctt-intro__copy h2 {
  margin: .3rem 0 .7rem;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  font-weight: 700;
}

.fx-ctt-intro__lead {
  margin: 0 0 1.1rem;
  max-width: 52ch;
  line-height: 1.6;
  color: var(--fx-steel, #2a2a2a);
}

.fx-ctt-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-ctt-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.fx-ctt-facts li {
  display: grid;
  gap: .2rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
  border-left: 2px solid var(--fx-gold);
}

.fx-ctt-facts .fx-code {
  color: var(--fx-copper);
  font-size: .82rem;
}

.fx-ctt-facts strong {
  font-size: .9rem;
}

.fx-ctt-sec {
  margin: 0 0 1rem;
}

.fx-ctt-sec h2 {
  margin: .25rem 0 .4rem;
  font-size: 1.3rem;
}

.fx-ctt-sec p {
  margin: 0;
  max-width: 52ch;
  color: #5a554e;
}

.fx-ctt-intents,
.fx-ctt-canais {
  margin: 0 0 2.25rem;
}

.fx-ctt-intents__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  margin-bottom: .85rem;
}

.fx-ctt-intent {
  appearance: none;
  text-align: left;
  padding: .9rem 1rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color .12s linear;
}

.fx-ctt-intent:hover,
.fx-ctt-intent:focus-visible,
.fx-ctt-intent.is-active {
  border-color: var(--fx-gold);
  outline: none;
}

.fx-ctt-intent.is-active {
  box-shadow: inset 0 -2px 0 var(--fx-gold);
}

.fx-ctt-intent__n {
  display: block;
  margin-bottom: .35rem;
  font-size: .72rem;
  color: var(--fx-copper);
}

.fx-ctt-intent strong {
  font-size: .95rem;
  line-height: 1.3;
}

.fx-ctt-intent-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1.25rem;
  padding: 1.1rem 1.2rem;
  background: var(--fx-paper, #f4f1ec);
  border: 1px solid var(--fx-linen);
}

.fx-ctt-intent-panel p {
  margin: 0;
  max-width: 48ch;
  line-height: 1.55;
  color: #4a4640;
}

.fx-ctt-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1rem;
}

.fx-ctt-filters__btn {
  appearance: none;
  padding: .4rem .75rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  font: inherit;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--fx-ink, #2a2a2a);
}

.fx-ctt-filters__btn:hover,
.fx-ctt-filters__btn:focus-visible {
  border-color: var(--fx-gold);
  color: var(--fx-wine);
  outline: none;
}

.fx-ctt-filters__btn.is-active {
  border-color: var(--fx-gold);
  box-shadow: inset 0 -2px 0 var(--fx-gold);
}

.fx-ctt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.fx-ctt-card {
  background: #fff;
  border: 1px solid var(--fx-linen);
  padding: 1rem 1.1rem 1.1rem;
  cursor: pointer;
  transition: border-color .12s linear;
}

.fx-ctt-card:hover,
.fx-ctt-card:focus-within,
.fx-ctt-card.is-open {
  border-color: var(--fx-gold);
}

.fx-ctt-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}

.fx-ctt-card__tag {
  font-size: .68rem;
  color: var(--fx-copper);
}

.fx-ctt-card__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--fx-copper);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.fx-ctt-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}

.fx-ctt-card__lead {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: #4a4640;
}

.fx-ctt-card__meta {
  margin: .55rem 0 0;
  font-size: .88rem;
  color: var(--fx-wine);
}

.fx-ctt-card__body {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--fx-linen);
}

.fx-ctt-card__extra {
  margin: 0 0 .75rem;
  font-size: .88rem;
}

.fx-ctt-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.fx-ctt-empty {
  margin: .75rem 0 0;
  color: #7a746c;
}

.fx-ctt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin: 0 0 2rem;
  align-items: start;
}

.fx-ctt-dados h2 {
  margin: .25rem 0 1rem;
  font-size: 1.25rem;
}

.fx-ctt-dl {
  margin: 0;
}

.fx-ctt-dl > div {
  padding: .7rem 0;
  border-top: 1px solid var(--fx-linen);
}

.fx-ctt-dl > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.fx-ctt-dl dt {
  font-family: var(--fx-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a746c;
  margin: 0 0 .2rem;
}

.fx-ctt-dl dd {
  margin: 0;
  line-height: 1.45;
}

.fx-ctt-dl a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.fx-ctt-dl a:hover {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-gold);
}

.fx-ctt-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  min-height: 320px;
  border: 1px solid var(--fx-linen);
  background: #e6e1d8;
}

.fx-ctt-map__link {
  margin: .55rem 0 0;
  font-size: .88rem;
}

.fx-ctt-map__link a {
  color: var(--fx-copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 66, 8, .35);
}

.fx-ctt-map__link a:hover {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-gold);
}

.fx-ctt-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.35rem 1.4rem;
  background: var(--fx-black);
  color: #e6e1d8;
}

.fx-ctt-cta .fx-kicker {
  color: var(--fx-gold);
}

.fx-ctt-cta h2 {
  margin: .2rem 0 .4rem;
  font-size: 1.2rem;
  color: #fff;
}

.fx-ctt-cta p {
  margin: 0;
  max-width: 46ch;
  font-size: .92rem;
}

.fx-ctt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.fx-ctt-cta .fx-btn--ghost {
  color: #e6e1d8;
  border-color: rgba(230, 225, 216, .35);
}

.fx-ctt-cta .fx-btn--ghost:hover,
.fx-ctt-cta .fx-btn--ghost:focus-visible {
  color: #fff;
  border-color: var(--fx-gold);
}

@media (max-width: 980px) {
  .fx-ctt-intro,
  .fx-ctt-intents__grid,
  .fx-ctt-grid,
  .fx-ctt-split {
    grid-template-columns: 1fr;
  }
}

.fx-dl {
  margin: 0 0 1.5rem;
}

.fx-dl dt {
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--fx-steel);
  margin: .9rem 0 .2rem;
}

.fx-dl dd {
  margin: 0;
}

.fx-dl dd.fx-code,
.fx-dl dd.fx-code a {
  font-family: var(--fx-mono);
  font-weight: 500;
  font-size: .95rem;
  color: var(--fx-ink);
}

.fx-map iframe {
  width: 100%;
  height: 320px;
  min-height: 320px;
  border: var(--fx-rule) solid var(--fx-linen);
  background: var(--fx-linen);
}

.fx-map__link {
  margin: .55rem 0 0;
  font-size: .9rem;
}

.fx-map__link a {
  color: var(--fx-wine);
}

.fx-map__link a:hover {
  color: var(--fx-copper);
}

.fx-wa {
  position: fixed;
  inset: auto max(12px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: 0;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .22);
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  contain: layout style paint;
}

.fx-wa:hover,
.fx-wa:focus-visible {
  background: #20bd5a;
  color: #fff;
}

.fx-wa__icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: inherit;
  pointer-events: none;
}

.fx-404 h1 {
  max-width: 18ch;
}

.fx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.5rem;
}

.fx-tags span {
  font-family: var(--fx-mono);
  font-size: .78rem;
  border: 1px solid var(--fx-linen);
  padding: .2rem .5rem;
  color: var(--fx-steel);
}

.fx-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  margin: 1rem 0 0;
}

.fx-logos img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .85;
}

.fx-logos--footer {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.fx-logos--footer img {
  max-height: 40px;
  filter: grayscale(1) brightness(1.4);
}

/* Main / sections */
.fx-main {
  padding: var(--fx-space-5) 0;
}

.fx-main--tight {
  padding-top: 0;
}

.fx-section h1,
.fx-section h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 1.4rem;
  margin: 0 0 .35rem;
}

.fx-section h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.fx-section__lead {
  margin: 0 0 var(--fx-space-3);
  color: var(--fx-steel);
  max-width: 36rem;
}

.fx-lines {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--fx-linen);
  border: 1px solid var(--fx-linen);
}

.fx-lines span {
  background: #fff;
  padding: .85rem 1rem;
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .01em;
  font-size: .82rem;
}

.fx-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fx-space-2);
  background: transparent;
  border: 0;
}

.fx-tile {
  position: relative;
  background: var(--fx-black);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.fx-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.fx-tile span {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  padding: .85rem 1rem;
  color: var(--fx-paper);
}

.fx-tile:hover span {
  color: #fff;
}

/* Home — linhas de catálogo */
.fx-home-catalog {
  background: var(--fx-white);
  border-top: 2px solid var(--fx-gold);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  scroll-margin-top: 8.5rem;
}

.fx-home-catalog__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.fx-home-catalog__intro {
  max-width: 40rem;
}

.fx-home-catalog__intro h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  letter-spacing: -.01em;
  margin: 0 0 .45rem;
  color: var(--fx-ink);
}

.fx-home-catalog__intro .fx-section__lead {
  margin: 0;
}

.fx-home-catalog__all {
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-copper);
  border-bottom: 1px solid rgba(166, 66, 8, .35);
  padding-bottom: .15rem;
  white-space: nowrap;
}

.fx-home-catalog__all:hover,
.fx-home-catalog__all:focus-visible {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-wine);
}

.fx-home-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--fx-space-2);
}

.fx-home-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--fx-white);
  border: 1px solid var(--fx-linen);
  color: inherit;
  transition: border-color .12s linear, box-shadow .12s linear;
}

.fx-home-cat:hover,
.fx-home-cat:focus-visible {
  border-color: var(--fx-gold);
  box-shadow: 0 0 0 1px rgba(242, 165, 22, .15);
}

.fx-home-cat__index {
  position: absolute;
  top: .65rem;
  left: .75rem;
  z-index: 2;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--fx-gold);
  background: rgba(0, 0, 0, .62);
  padding: .2rem .45rem;
  border: 1px solid rgba(242, 165, 22, .25);
}

.fx-home-cat__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}

.fx-home-cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.fx-home-cat:hover .fx-home-cat__media img,
.fx-home-cat:focus-visible .fx-home-cat__media img {
  transform: scale(1.03);
}

.fx-home-cat__ph {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(242, 165, 22, .08) 0%, transparent 45%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, .04) 0,
      rgba(255, 255, 255, .04) 1px,
      transparent 1px,
      transparent 24px
    ),
    #111;
}

.fx-home-cat__body {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1rem 1.05rem 1.1rem;
  border-top: 1px solid var(--fx-linen);
}

.fx-home-cat__name {
  font-family: var(--fx-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--fx-ink);
}

.fx-home-cat__meta {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-home-catalog__empty {
  padding: 2rem 1.5rem;
  border: 1px dashed var(--fx-linen);
  background: var(--fx-paper);
  text-align: center;
}

.fx-home-catalog__empty p {
  margin: 0 0 1rem;
  color: var(--fx-steel);
}

/* Home — institucional */
.fx-home-empresa {
  background: var(--fx-white);
  border-top: 1px solid var(--fx-linen);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  scroll-margin-top: 8.5rem;
}

.fx-home-empresa__grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.fx-home-empresa__aside {
  background: var(--fx-black);
  color: #fff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 2px solid var(--fx-gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fx-home-empresa__aside .fx-kicker {
  color: var(--fx-gold);
  font-family: var(--fx-mono);
  font-size: .62rem;
  letter-spacing: .14em;
}

.fx-home-empresa__aside h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .65rem;
  color: #fff;
}

.fx-home-empresa__tagline {
  margin: 0 0 1.35rem;
  font-size: .92rem;
  color: #c4bdb2;
  line-height: 1.5;
}

.fx-home-empresa__facts {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: .85rem;
}

.fx-home-empresa__facts li {
  padding-left: .85rem;
  border-left: 1px solid rgba(242, 165, 22, .35);
}

.fx-home-empresa__facts strong {
  display: block;
  font-family: var(--fx-display);
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .15rem;
}

.fx-home-empresa__facts span {
  display: block;
  font-size: .78rem;
  color: #9a948c;
  line-height: 1.4;
}

.fx-home-empresa__map {
  margin: 0;
  font-family: var(--fx-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-gold);
  border-bottom: 1px solid rgba(242, 165, 22, .35);
  padding-bottom: .12rem;
  align-self: flex-start;
}

.fx-home-empresa__map:hover,
.fx-home-empresa__map:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

.fx-home-empresa__map--text {
  border-bottom: 0;
  padding-bottom: 0;
  color: #9a948c;
  text-transform: none;
  letter-spacing: .02em;
}

.fx-home-empresa__main {
  background: var(--fx-paper);
  border: 1px solid var(--fx-linen);
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.fx-home-empresa__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fx-home-empresa__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1.15rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-home-empresa__nav label {
  cursor: pointer;
  font-family: var(--fx-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-steel);
  padding: .45rem .75rem;
  border: 1px solid transparent;
  transition: color .12s linear, border-color .12s linear, background .12s linear;
}

.fx-home-empresa__nav label:hover {
  color: var(--fx-ink);
}

#fx-emp-sobre:checked ~ .fx-home-empresa__nav label[for="fx-emp-sobre"],
#fx-emp-qual:checked ~ .fx-home-empresa__nav label[for="fx-emp-qual"],
#fx-emp-contato:checked ~ .fx-home-empresa__nav label[for="fx-emp-contato"] {
  color: var(--fx-ink);
  background: var(--fx-white);
  border-color: var(--fx-gold);
}

.fx-home-empresa__panels {
  flex: 1;
  position: relative;
}

.fx-home-empresa__panel {
  display: none;
  animation: fxEmpFade .22s ease;
}

#fx-emp-sobre:checked ~ .fx-home-empresa__panels #fx-emp-panel-sobre,
#fx-emp-qual:checked ~ .fx-home-empresa__panels #fx-emp-panel-qual,
#fx-emp-contato:checked ~ .fx-home-empresa__panels #fx-emp-panel-contato {
  display: block;
}

@keyframes fxEmpFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fx-home-empresa__text {
  margin: 0 0 1rem;
  color: var(--fx-steel);
  line-height: 1.65;
  max-width: 42rem;
}

.fx-home-empresa__prose {
  margin: 0 0 1rem;
  color: var(--fx-steel);
  line-height: 1.65;
  max-width: 42rem;
}

.fx-home-empresa__prose p {
  margin: 0 0 .75rem;
}

.fx-home-empresa__list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
  max-width: 40rem;
}

.fx-home-empresa__list li {
  position: relative;
  padding-left: 1rem;
  font-size: .92rem;
  color: var(--fx-steel);
  line-height: 1.45;
}

.fx-home-empresa__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: .35rem;
  height: 1px;
  background: var(--fx-gold);
}

.fx-home-empresa__contact {
  margin: 0 0 1.15rem;
  display: grid;
  gap: .85rem;
}

.fx-home-empresa__contact div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: .65rem;
  align-items: baseline;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-home-empresa__contact div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fx-home-empresa__contact dt {
  margin: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-home-empresa__contact dd {
  margin: 0;
  font-size: .88rem;
  color: var(--fx-ink);
  line-height: 1.45;
}

.fx-home-empresa__contact dd a {
  display: inline-block;
  margin-right: .75rem;
  color: var(--fx-copper);
}

.fx-home-empresa__contact dd a:hover {
  color: var(--fx-wine);
}

.fx-home-empresa__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1rem;
  margin-top: auto;
  padding-top: .35rem;
}

.fx-home-empresa__inline {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-copper);
  border-bottom: 1px solid rgba(166, 66, 8, .3);
  padding-bottom: .1rem;
}

.fx-home-empresa__inline:hover,
.fx-home-empresa__inline:focus-visible {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-wine);
}

.fx-home-empresa__main .fx-btn--ghost {
  color: var(--fx-wine);
  border-color: var(--fx-steel);
}

.fx-home-empresa__main .fx-btn--ghost:hover,
.fx-home-empresa__main .fx-btn--ghost:focus-visible {
  background: var(--fx-steel);
  border-color: var(--fx-steel);
  color: #fff;
}

/* Home — diferenciais */
.fx-home-diffs {
  background: var(--fx-paper);
  border-top: 1px solid var(--fx-linen);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  scroll-margin-top: 8.5rem;
}

.fx-home-diffs__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}

.fx-home-diffs__intro {
  max-width: 40rem;
}

.fx-home-diffs__intro h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  letter-spacing: -.01em;
  margin: 0 0 .45rem;
  color: var(--fx-ink);
}

.fx-home-diffs__intro .fx-kicker {
  font-family: var(--fx-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  color: var(--fx-copper);
}

.fx-home-diffs__intro .fx-section__lead {
  margin: 0;
}

.fx-home-diffs__all {
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-copper);
  border-bottom: 1px solid rgba(166, 66, 8, .35);
  padding-bottom: .15rem;
  white-space: nowrap;
}

.fx-home-diffs__all:hover,
.fx-home-diffs__all:focus-visible {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-wine);
}

.fx-home-diffs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fx-space-2);
}

.fx-home-diff {
  position: relative;
  background: var(--fx-white);
  border: 1px solid var(--fx-linen);
  padding: 1.25rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  outline: none;
  transition: border-color .15s linear, box-shadow .15s linear, transform .15s linear;
}

.fx-home-diff::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--fx-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .18s ease;
}

.fx-home-diff:hover,
.fx-home-diff:focus-within {
  border-color: rgba(242, 165, 22, .45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
}

.fx-home-diff:hover::before,
.fx-home-diff:focus-within::before {
  transform: scaleY(1);
}

.fx-home-diff__n {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--fx-copper);
  margin-bottom: .55rem;
}

.fx-home-diff h3 {
  font-family: var(--fx-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
  margin: 0 0 .45rem;
  color: var(--fx-ink);
}

.fx-home-diff__lead {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--fx-steel);
}

.fx-home-diff__detail {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .22s ease, opacity .18s ease, margin .18s ease;
}

.fx-home-diff:hover .fx-home-diff__detail,
.fx-home-diff:focus-within .fx-home-diff__detail {
  max-height: 12rem;
  opacity: 1;
  margin-top: .85rem;
}

.fx-home-diff__points {
  list-style: none;
  margin: 0 0 .75rem;
  padding: 0;
  display: grid;
  gap: .4rem;
}

.fx-home-diff__points li {
  position: relative;
  padding-left: .85rem;
  font-size: .82rem;
  color: var(--fx-steel);
  line-height: 1.4;
}

.fx-home-diff__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .35rem;
  height: 1px;
  background: var(--fx-gold);
}

.fx-home-diff__link {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-copper);
  border-bottom: 1px solid rgba(166, 66, 8, .3);
  padding-bottom: .1rem;
}

.fx-home-diff__link:hover,
.fx-home-diff__link:focus-visible {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-wine);
}

@media (hover: none), (pointer: coarse) {
  .fx-home-diff__detail {
    max-height: none;
    opacity: 1;
    margin-top: .85rem;
  }

  .fx-home-diff::before {
    transform: scaleY(1);
  }
}

/* Home — CTA orçamento */
.fx-home-cta {
  position: relative;
  isolation: isolate;
  background: var(--fx-black);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-top: 2px solid var(--fx-gold);
  scroll-margin-top: 8.5rem;
  overflow: hidden;
}

.fx-home-cta__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(242, 165, 22, .07) 0%, transparent 42%),
    linear-gradient(180deg, #080808 0%, #000 100%);
}

.fx-home-cta__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

.fx-home-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .72fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.fx-home-cta__copy h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  letter-spacing: -.015em;
  margin: 0 0 .65rem;
  color: #fff;
}

.fx-home-cta__lead {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  font-size: clamp(.98rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  color: #d0c9be;
}

.fx-home-cta__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  max-width: 34rem;
}

.fx-home-cta__steps li {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  font-size: .88rem;
  color: #b8b0a4;
  line-height: 1.45;
}

.fx-home-cta__steps .fx-code {
  flex: 0 0 auto;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--fx-gold);
}

.fx-home-cta__panel {
  padding: 1.35rem 1.25rem;
  background: rgba(8, 8, 8, .72);
  border: 1px solid rgba(242, 165, 22, .28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .04) inset,
    0 16px 36px rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
}

.fx-home-cta__status {
  margin: 0 0 .85rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-gold);
}

.fx-home-cta__btn {
  width: 100%;
  justify-content: center;
  margin-bottom: .65rem;
}

.fx-home-cta__note {
  margin: 0 0 .85rem;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8f8880;
  text-align: center;
}

.fx-home-cta__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1rem;
  padding-top: .15rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.fx-home-cta__ghost {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-gold);
  border-bottom: 1px solid rgba(242, 165, 22, .35);
  padding-bottom: .1rem;
}

.fx-home-cta__ghost:hover,
.fx-home-cta__ghost:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

/* Home — grade de produtos em destaque */
.fx-home-products {
  background: var(--fx-paper);
  border-top: 1px solid var(--fx-linen);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  scroll-margin-top: 8.5rem;
}

.fx-home-products__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}

.fx-home-products__intro {
  max-width: 38rem;
}

.fx-home-products__intro h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  letter-spacing: -.01em;
  margin: 0 0 .45rem;
  color: var(--fx-ink);
}

.fx-home-products__intro .fx-section__lead {
  margin: 0;
}

.fx-home-products__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .45rem;
}

.fx-home-products__count {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-home-products__orc {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-copper);
  border-bottom: 1px solid rgba(166, 66, 8, .35);
  padding-bottom: .15rem;
  white-space: nowrap;
}

.fx-home-products__orc:hover,
.fx-home-products__orc:focus-visible {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-wine);
}

.fx-prod-grid,
.fx-home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--fx-space-2);
}

.fx-list:not(.fx-list--solo) .fx-prod-grid {
  grid-template-columns: repeat(3, 1fr);
}

.fx-prod-card {
  display: flex;
  flex-direction: column;
  background: var(--fx-white);
  border: 1px solid var(--fx-linen);
  transition: border-color .15s linear, box-shadow .15s linear;
}

.fx-prod-card:hover,
.fx-prod-card:focus-within {
  border-color: var(--fx-gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}

.fx-prod-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.fx-prod-card__link:hover {
  color: inherit;
}

.fx-prod-card__media {
  position: relative;
  background: #111;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fx-prod-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.fx-prod-card:hover .fx-prod-card__media img,
.fx-prod-card:focus-within .fx-prod-card__media img {
  transform: scale(1.04);
}

.fx-prod-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: .85rem;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .72) 100%);
  opacity: 0;
  transition: opacity .18s linear;
  pointer-events: none;
}

.fx-prod-card:hover .fx-prod-card__overlay,
.fx-prod-card:focus-within .fx-prod-card__overlay {
  opacity: 1;
}

.fx-prod-card__overlay-txt {
  font-family: var(--fx-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fx-gold);
  border: 1px solid rgba(242, 165, 22, .45);
  background: rgba(0, 0, 0, .55);
  padding: .35rem .55rem;
}

.fx-prod-card__ph {
  color: #8a847c;
  font-family: var(--fx-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fx-prod-card__body {
  padding: .85rem .95rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .28rem;
  flex: 1;
}

.fx-prod-card__line {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-prod-card__code {
  font-size: .82rem;
  font-weight: 600;
  color: var(--fx-copper);
  line-height: 1.25;
}

.fx-prod-card__title {
  font-family: var(--fx-display);
  font-weight: 600;
  font-size: .88rem;
  line-height: 1.35;
  color: var(--fx-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fx-prod-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem .75rem .7rem;
  border-top: 1px solid var(--fx-linen);
  background: linear-gradient(180deg, #faf8f5 0%, var(--fx-white) 100%);
}

.fx-prod-card__ghost {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-steel);
  white-space: nowrap;
}

.fx-prod-card__ghost:hover,
.fx-prod-card__ghost:focus-visible {
  color: var(--fx-wine);
}

.fx-btn--compact {
  padding: .38rem .62rem;
  font-size: .68rem;
  letter-spacing: .04em;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .fx-prod-card__bar {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .15s linear, transform .15s linear;
  }

  .fx-prod-card:hover .fx-prod-card__bar,
  .fx-prod-card:focus-within .fx-prod-card__bar {
    opacity: 1;
    transform: none;
  }
}

.fx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .85rem;
  background: transparent;
  border: 0;
}

.fx-card {
  background: #fff;
  border: var(--fx-rule) solid var(--fx-linen);
  border-radius: var(--fx-radius);
  transition: border-color .12s linear;
}

.fx-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.fx-card__link:hover {
  color: inherit;
}

.fx-card__media {
  background: #111;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fx-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fx-card__ph {
  color: #8a847c;
  font-family: var(--fx-display);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fx-card__body {
  padding: .85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}

.fx-card:hover {
  border-color: var(--fx-gold);
}

.fx-card__code {
  margin: 0;
  font-family: var(--fx-mono);
  font-weight: 600;
  font-size: .88rem;
  color: var(--fx-copper);
  line-height: 1.25;
}

.fx-card__title {
  font-family: var(--fx-display);
  font-weight: 600;
  font-size: .95rem;
  margin: 0;
  letter-spacing: .01em;
  line-height: 1.35;
  color: var(--fx-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fx-btn.add.is-added {
  background: var(--fx-wine);
  border-color: var(--fx-wine);
  color: #fff;
}

.fx-prod-card.is-in-orc {
  border-color: var(--fx-wine);
  box-shadow: 0 0 0 1px rgba(115, 2, 2, .12);
}

.fx-prod-card.is-in-orc .fx-prod-card__code {
  color: var(--fx-wine);
}

.fx-badge {
  display: inline-block;
  min-width: 1.25rem;
  margin-left: .25rem;
  padding: 0 .28rem;
  background: var(--fx-gold);
  color: var(--fx-black);
  font-family: var(--fx-mono);
  font-size: .7rem;
  line-height: 1.2rem;
  text-align: center;
}

.fx-qty {
  width: 4.5rem;
  font-family: var(--fx-mono);
  padding: .3rem .4rem;
  border: 1px solid var(--fx-linen);
}

.fx-orc-table img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #111;
}

.fx-orc-actions {
  margin-top: 1.25rem;
}

.fx-orc-steps {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.5rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-bottom: var(--fx-rule) solid var(--fx-linen);
  padding-bottom: 1rem;
}

.fx-orc-steps li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  color: var(--fx-steel);
}

.fx-orc-steps .fx-code {
  color: inherit;
}

.fx-orc-steps .is-current {
  color: var(--fx-ink);
  font-weight: 600;
}

.fx-orc-steps .is-current .fx-code {
  color: var(--fx-copper);
}

.fx-orc-empty {
  max-width: 36rem;
}

.fx-orc-empty h2 {
  margin: .2rem 0 .6rem;
}

.fx-orc-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0 1.5rem;
}

.fx-orc-how {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.fx-orc-how li {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  color: var(--fx-steel);
  font-size: .92rem;
}

.fx-orc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17.5rem;
  gap: 2rem;
  align-items: start;
}

.fx-orc-main__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem 1rem;
  margin: 0 0 1rem;
}

.fx-orc-main__count {
  margin: 0;
  font-size: .92rem;
}

.fx-orc-main__head a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--fx-copper);
}

.fx-orc-main__head a:hover {
  color: var(--fx-wine);
}

.fx-orc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: var(--fx-rule) solid var(--fx-linen);
}

.fx-orc-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
  gap: .85rem 1rem;
  align-items: center;
  padding: .85rem 0;
  border-bottom: var(--fx-rule) solid var(--fx-linen);
}

.fx-orc-item__media {
  width: 72px;
  height: 72px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-orc-item__media img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.fx-orc-item__ph {
  display: block;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
}

.fx-orc-item__line {
  margin: 0 0 .15rem;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-orc-item__code {
  margin: 0 0 .2rem;
  font-size: .92rem;
  color: var(--fx-copper);
}

.fx-orc-item__name {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.3;
}

.fx-orc-item__name a {
  color: inherit;
}

.fx-orc-item__name a:hover {
  color: var(--fx-copper);
}

.fx-orc-item__ficha {
  display: inline-block;
  margin-top: .35rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-orc-item__ficha:hover {
  color: var(--fx-copper);
}

.fx-orc-item__qty-label {
  display: block;
  margin-bottom: .3rem;
  font-family: var(--fx-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--fx-linen);
  background: var(--fx-white);
}

.fx-qty-ctrl__btn {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--fx-ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.fx-qty-ctrl__btn:hover,
.fx-qty-ctrl__btn:focus-visible {
  color: var(--fx-copper);
}

.fx-qty-ctrl .fx-qty {
  width: 3rem;
  border: 0;
  border-left: 1px solid var(--fx-linen);
  border-right: 1px solid var(--fx-linen);
  text-align: center;
  padding: .35rem 0;
}

.fx-orc-item__del {
  border: 0;
  background: none;
  padding: .25rem 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-steel);
  cursor: pointer;
}

.fx-orc-item__del:hover,
.fx-orc-item__del:focus-visible {
  color: var(--fx-wine);
}

.fx-orc-panel {
  position: sticky;
  top: 8.75rem;
  padding: 1.15rem 1.15rem 1.25rem;
  background: var(--fx-paper);
  border: 1px solid var(--fx-linen);
}

.fx-orc-panel h2 {
  margin: .15rem 0 .5rem;
  font-size: 1.15rem;
}

.fx-orc-panel > p {
  margin: 0 0 1rem;
  font-size: .88rem;
  color: var(--fx-steel);
  line-height: 1.5;
}

.fx-orc-panel .fx-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: .5rem;
}

.fx-orc-panel__meta {
  margin: 1rem 0 0;
  padding-top: .9rem;
  border-top: var(--fx-rule) solid var(--fx-linen);
  display: grid;
  gap: .55rem;
}

.fx-orc-panel__meta div {
  display: grid;
  gap: .1rem;
}

.fx-orc-panel__meta dt {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-orc-panel__meta dd {
  margin: 0;
  font-size: .88rem;
}

@media (max-width: 960px) {
  .fx-orc-layout {
    grid-template-columns: 1fr;
  }

  .fx-orc-panel {
    position: static;
  }
}

@media (max-width: 800px) {
  .fx-orc-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .fx-orc-item__qty,
  .fx-orc-item__del {
    grid-column: 2;
  }

  .fx-orc-item__del {
    justify-self: start;
  }

  .fx-orc-item__media,
  .fx-orc-item__media img {
    width: 64px;
    height: 64px;
  }
}

.fx-form fieldset {
  border: var(--fx-rule) solid var(--fx-linen);
  margin: 0 0 1rem;
  padding: .8rem 1rem;
}

.fx-form legend {
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--fx-steel);
}

.fx-form__check {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-right: 1rem;
  font-size: .9rem;
}

.fx-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1rem;
  margin-bottom: 1.25rem;
}

.fx-form label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  font-size: .85rem;
  color: var(--fx-steel);
}

.fx-form input[type="text"],
.fx-form input[type="email"] {
  padding: .55rem .65rem;
  border: var(--fx-rule) solid var(--fx-linen);
  border-radius: var(--fx-radius);
  font-family: var(--fx-font);
  color: var(--fx-ink);
  background: #fff;
}

.fx-form input[type="text"]:focus,
.fx-form input[type="email"]:focus {
  outline: 0;
  border-color: var(--fx-gold);
}

@media (max-width: 800px) {
  .fx-form__grid {
    grid-template-columns: 1fr;
  }
}

/* Finalizar orçamento */
.fx-orc-steps .is-done a {
  color: var(--fx-steel);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.fx-orc-steps .is-done a:hover {
  color: var(--fx-copper);
}

.fx-fin-alert {
  margin: 0 0 1.25rem;
  padding: .85rem 1.1rem;
  border-left: 3px solid var(--fx-copper);
  background: #fff8f0;
  color: var(--fx-ink);
  font-size: .92rem;
}

.fx-wiz-nav {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .4rem;
  border-bottom: 1px solid var(--fx-linen);
  padding-bottom: .85rem;
}

.fx-wiz-nav li {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--fx-steel);
  padding: .35rem .2rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -.85rem;
  padding-bottom: .75rem;
}

.fx-wiz-nav .fx-code {
  font-size: .72rem;
  color: inherit;
}

.fx-wiz-nav .is-current {
  color: var(--fx-ink);
  font-weight: 600;
  border-bottom-color: var(--fx-gold);
}

.fx-wiz-nav .is-current .fx-code {
  color: var(--fx-copper);
}

.fx-wiz-nav .is-done {
  color: #2f6b3a;
  border-bottom-color: #3d8b4a;
}

.fx-wiz-nav .is-done .fx-code {
  color: #2f6b3a;
}

.fx-wiz-nav .is-locked {
  opacity: .45;
  pointer-events: none;
}

.fx-wiz-nav li:not(.is-locked) {
  cursor: pointer;
}

.fx-wiz {
  margin: 0 0 1.15rem;
}

.fx-wiz-card {
  border: 1px solid var(--fx-linen);
  background: #fff;
  padding: 1.15rem 1.2rem 1.25rem;
}

.fx-wiz-card[hidden] {
  display: none !important;
}

.fx-wiz-card.is-valid {
  border-color: #3d8b4a;
  box-shadow: inset 3px 0 0 #3d8b4a;
}

.fx-wiz-card__head {
  margin: 0 0 1rem;
}

.fx-wiz-card__head h2 {
  margin: .15rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.fx-wiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}

.fx-wiz-actions [hidden] {
  display: none !important;
}

.fx-wiz-actions .fx-btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
}

.fx-fin-tipo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}

.fx-fin-tipo__opt {
  margin: 0;
  cursor: pointer;
}

.fx-fin-tipo__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fx-fin-tipo__card {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .85rem 1rem;
  border: 1px solid var(--fx-linen);
  background: var(--fx-paper);
  transition: border-color .15s ease, background .15s ease;
}

.fx-fin-tipo__opt input:focus-visible + .fx-fin-tipo__card {
  outline: 2px solid var(--fx-gold);
  outline-offset: 2px;
}

.fx-fin-tipo__opt input:checked + .fx-fin-tipo__card {
  border-color: var(--fx-gold);
  background: #fff;
  box-shadow: inset 0 -2px 0 var(--fx-gold);
}

.fx-fin-tipo__label {
  font-weight: 600;
  color: var(--fx-ink);
  font-size: .92rem;
}

.fx-fin-tipo__desc {
  color: var(--fx-steel);
  font-size: .78rem;
  font-family: var(--fx-mono);
}

.fx-fin-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .84rem;
  color: var(--fx-steel);
}

.fx-fin-field--wide {
  grid-column: 1 / -1;
}

.fx-fin-field__label {
  font-weight: 500;
  color: var(--fx-ink);
  font-size: .82rem;
}

.fx-fin-field__label abbr {
  text-decoration: none;
  color: var(--fx-copper);
}

.fx-fin .fx-form__grid {
  gap: .9rem 1rem;
}

.fx-fin-field input,
.fx-form .fx-fin-field input[type="text"],
.fx-form .fx-fin-field input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: .65rem .75rem;
  border: 1px solid #ddd6cb;
  border-radius: 0;
  font-family: var(--fx-font);
  font-size: .95rem;
  color: var(--fx-ink);
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}

.fx-fin-field input:hover {
  border-color: #c9bda8;
}

.fx-fin-field input:focus,
.fx-form .fx-fin-field input[type="text"]:focus,
.fx-form .fx-fin-field input[type="email"]:focus {
  outline: 0;
  border-color: var(--fx-gold);
  background: #fffdf8;
}

.fx-fin-field input.is-autofilled {
  border-color: #b7d4be;
  background: #f7fbf8;
}

.fx-fin-field input.is-invalid,
.fx-form .fx-fin-field input.is-invalid {
  border-color: #b42318;
  box-shadow: inset 0 0 0 1px #b42318;
}

.fx-fin-status {
  min-height: 1.1em;
  font-size: .78rem;
  color: var(--fx-steel);
}

.fx-fin-status.is-loading {
  color: var(--fx-copper);
}

.fx-fin-status.is-ok {
  color: #2f6b3a;
}

.fx-fin-status.is-err {
  color: var(--fx-wine);
}

.fx-fin-status--form {
  margin: .65rem 0 0;
  font-size: .88rem;
}

.fx-fin-form.is-looking-cnpj #fx-cnpj,
.fx-fin-form.is-looking-cep #fx-cep {
  border-color: var(--fx-gold);
  background: #fffdf8;
}

.fx-fin-submit__note {
  margin: .85rem 0 0;
  color: var(--fx-steel);
  font-size: .85rem;
  line-height: 1.45;
}

.fx-fin-status--form {
  margin: .65rem 0 0;
}

.fx-fin-panel__count {
  margin: .15rem 0 .85rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.fx-fin-panel__count .fx-code {
  color: var(--fx-copper);
  font-size: 1rem;
}

.fx-fin-codes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: .4rem;
  border-top: 1px solid var(--fx-linen);
  border-bottom: 1px solid var(--fx-linen);
  padding: .75rem 0;
}

.fx-fin-codes li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
}

.fx-fin-codes .fx-code {
  font-size: .78rem;
  color: var(--fx-ink);
  word-break: break-all;
}

.fx-fin-codes__q {
  font-family: var(--fx-mono);
  font-size: .75rem;
  color: var(--fx-steel);
  flex-shrink: 0;
}

.fx-fin-panel__edit {
  margin: 0 0 1.15rem;
}

.fx-fin-panel__edit a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--fx-copper);
}

.fx-fin-panel__edit a:hover {
  color: var(--fx-wine);
}

@media (max-width: 800px) {
  .fx-fin-tipo {
    grid-template-columns: 1fr;
  }

  .fx-wiz-nav {
    grid-template-columns: 1fr 1fr;
    gap: .25rem .5rem;
  }

  .fx-wiz-nav li {
    margin-bottom: 0;
    border-bottom-width: 1px;
    padding-bottom: .45rem;
  }
}

/* Confirmação de orçamento */
.fx-ok-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: 2rem;
  align-items: start;
}

.fx-ok-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-ok-status__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #3d8b4a;
  position: relative;
  flex-shrink: 0;
  margin-top: .15rem;
}

.fx-ok-status__mark::after {
  content: "";
  position: absolute;
  left: .65rem;
  top: .4rem;
  width: .4rem;
  height: .75rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fx-ok-status__title {
  margin: .1rem 0 .4rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.fx-ok-status__lead {
  margin: 0;
  color: var(--fx-steel);
  font-size: .92rem;
  line-height: 1.5;
  max-width: 36rem;
}

.fx-ok-meta {
  display: grid;
  gap: .85rem;
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--fx-paper);
  border: 1px solid var(--fx-linen);
}

.fx-ok-meta__label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-steel);
  margin-bottom: .25rem;
}

.fx-ok-meta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
}

.fx-ok-meta__value {
  font-size: 1rem;
  color: var(--fx-ink);
  word-break: break-all;
}

.fx-ok-meta__value.fx-code {
  font-size: 1.15rem;
  color: var(--fx-copper);
}

.fx-ok-copy {
  appearance: none;
  border: 1px solid var(--fx-linen);
  background: #fff;
  color: var(--fx-ink);
  font-family: var(--fx-font);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .65rem;
  cursor: pointer;
}

.fx-ok-copy:hover,
.fx-ok-copy:focus-visible {
  border-color: var(--fx-gold);
  outline: 0;
}

.fx-ok-next {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.fx-ok-next li {
  display: flex;
  gap: .65rem;
  align-items: baseline;
  font-size: .92rem;
  color: var(--fx-steel);
  line-height: 1.45;
}

.fx-ok-next .fx-code {
  color: var(--fx-copper);
  flex-shrink: 0;
}

.fx-ok-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.fx-ok-copy-status {
  margin: .75rem 0 0;
  font-size: .85rem;
  color: #2f6b3a;
}

.fx-ok-aside {
  padding: 1.15rem 1.15rem 1.25rem;
  background: var(--fx-paper);
  border: 1px solid var(--fx-linen);
  position: sticky;
  top: 8.75rem;
}

.fx-ok-aside h2 {
  margin: .15rem 0 .5rem;
  font-size: 1.1rem;
}

.fx-ok-aside > p {
  margin: 0 0 1rem;
  font-size: .88rem;
  color: var(--fx-steel);
  line-height: 1.5;
}

.fx-ok-contact {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.fx-ok-contact__label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-steel);
  margin-bottom: .15rem;
}

.fx-ok-contact a {
  color: var(--fx-ink);
  font-weight: 500;
}

.fx-ok-contact a:hover {
  color: var(--fx-copper);
}

.fx-ok-contact .fx-code {
  color: var(--fx-copper);
}

.fx-ok-aside__wa {
  width: 100%;
  justify-content: center;
  margin-bottom: .65rem;
}

.fx-ok-aside__maps {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--fx-copper);
}

.fx-ok-aside__maps:hover {
  color: var(--fx-wine);
}

@media (max-width: 900px) {
  .fx-ok-layout {
    grid-template-columns: 1fr;
  }

  .fx-ok-aside {
    position: static;
  }
}

/* Institucional */
.fx-inst .fx-section {
  padding-top: var(--fx-space-4, 2rem);
}

.fx-inst-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, .75fr);
  gap: 2rem;
  align-items: start;
  margin: 0 0 2.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-inst-intro__copy h2 {
  margin: .2rem 0 .85rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: .01em;
}

.fx-inst-intro__lead {
  margin: 0 0 1.25rem;
  color: var(--fx-steel);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 40rem;
}

.fx-inst-intro__body {
  margin: 0 0 1.25rem;
  color: var(--fx-steel);
  line-height: 1.65;
  max-width: 40rem;
}

.fx-inst-intro__body p {
  margin: 0 0 .85rem;
}

.fx-inst-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.fx-inst-facts {
  padding: 1.15rem 1.2rem;
  background: var(--fx-paper);
  border: 1px solid var(--fx-linen);
}

.fx-inst-facts ul {
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.fx-inst-facts li {
  display: grid;
  gap: .15rem;
}

.fx-inst-facts strong {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-inst-facts span {
  font-size: .92rem;
  color: var(--fx-ink);
}

.fx-inst-facts .fx-code {
  color: var(--fx-copper);
  font-size: .85rem;
}

.fx-inst-sec {
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

.fx-inst-sec h2 {
  margin: .15rem 0 .4rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.fx-inst-sec p {
  margin: 0;
  color: var(--fx-steel);
  font-size: .92rem;
  line-height: 1.5;
}

.fx-inst-mvv,
.fx-inst-trust,
.fx-inst-contact,
.fx-inst-logos {
  margin: 0 0 2.75rem;
}

.fx-inst-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.fx-inst-card {
  padding: 1.15rem 1.15rem 1.25rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  min-height: 100%;
}

.fx-inst-card__n {
  margin: 0 0 .65rem;
  color: var(--fx-copper);
  font-size: .78rem;
}

.fx-inst-card h3 {
  margin: 0 0 .65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fx-ink);
}

.fx-inst-card p,
.fx-inst-card__body {
  margin: 0;
  color: var(--fx-steel);
  font-size: .92rem;
  line-height: 1.55;
}

.fx-inst-card__body p {
  margin: 0 0 .65rem;
}

.fx-inst-card__body p:last-child {
  margin-bottom: 0;
}

.fx-inst-trust__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.fx-inst-trust__grid li {
  padding: 1rem 1.05rem;
  background: var(--fx-paper);
  border: 1px solid var(--fx-linen);
}

.fx-inst-trust__grid .fx-code {
  display: block;
  margin-bottom: .45rem;
  color: var(--fx-copper);
  font-size: .72rem;
}

.fx-inst-trust__grid strong {
  display: block;
  margin-bottom: .35rem;
  font-size: .95rem;
  color: var(--fx-ink);
}

.fx-inst-trust__grid p {
  margin: 0;
  font-size: .85rem;
  color: var(--fx-steel);
  line-height: 1.45;
}

.fx-inst-extra {
  margin: 0 0 2.75rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--fx-linen);
  border-left: 3px solid var(--fx-gold);
  background: #fff;
}

.fx-inst-extra__body,
.fx-inst-extra > p {
  margin: .5rem 0 0;
  color: var(--fx-steel);
  line-height: 1.6;
  max-width: 42rem;
}

.fx-inst-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin: 0 0 2.75rem;
}

.fx-inst-panel {
  padding: 1.35rem 1.35rem 1.45rem;
  border: 1px solid var(--fx-linen);
  background: var(--fx-paper);
}

.fx-inst-panel h2 {
  margin: .15rem 0 .55rem;
  font-size: 1.15rem;
}

.fx-inst-panel > p {
  margin: 0 0 1rem;
  color: var(--fx-steel);
  font-size: .92rem;
  line-height: 1.5;
}

.fx-inst-panel--dark {
  background: var(--fx-black);
  border-color: var(--fx-steel);
  color: #fff;
}

.fx-inst-panel--dark .fx-kicker {
  color: var(--fx-gold);
}

.fx-inst-panel--dark h2 {
  color: #fff;
}

.fx-inst-panel--dark > p {
  color: #c9c3b8;
}

.fx-inst-panel--dark .fx-btn--ghost {
  border-color: #5a5550;
  color: #fff;
}

.fx-inst-panel--dark .fx-btn--ghost:hover,
.fx-inst-panel--dark .fx-btn--ghost:focus-visible {
  border-color: var(--fx-gold);
  color: var(--fx-gold);
}

.fx-inst-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-inst-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.fx-inst-contact__dl {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  display: grid;
  gap: .85rem;
}

.fx-inst-contact__dl > div {
  display: grid;
  gap: .2rem;
}

.fx-inst-contact__dl dt {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-inst-contact__dl dd {
  margin: 0;
  font-size: .95rem;
  color: var(--fx-ink);
}

.fx-inst-contact__dl a {
  color: var(--fx-ink);
}

.fx-inst-contact__dl a:hover {
  color: var(--fx-copper);
}

.fx-inst-contact__dl .fx-code {
  color: var(--fx-copper);
}

.fx-inst-contact__map {
  min-height: 220px;
  border: 1px solid var(--fx-linen);
  background: var(--fx-paper);
  overflow: hidden;
}

.fx-inst-contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.fx-inst-contact__maplink {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 1rem;
  font-weight: 600;
  color: var(--fx-copper);
}

.fx-inst-logos h2 {
  margin: .15rem 0 1rem;
  font-size: 1.15rem;
}

.fx-inst-logos ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.fx-inst-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: .75rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
}

.fx-inst-logos img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .85;
}

@media (max-width: 980px) {
  .fx-inst-intro,
  .fx-inst-split,
  .fx-inst-contact__grid {
    grid-template-columns: 1fr;
  }

  .fx-inst-cards,
  .fx-inst-trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-inst-logos ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fx-inst-cards,
  .fx-inst-trust__grid,
  .fx-inst-logos ul {
    grid-template-columns: 1fr;
  }
}

/* Clientes */
.fx-cli-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, .7fr);
  gap: 1.75rem;
  align-items: start;
  margin: 0 0 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-cli-hero__copy h2 {
  margin: .2rem 0 .85rem;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
}

.fx-cli-hero__num {
  color: var(--fx-copper);
  font-size: 1.05em;
}

.fx-cli-hero__lead,
.fx-cli-hero__body {
  margin: 0 0 1.15rem;
  color: var(--fx-steel);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 40rem;
}

.fx-cli-hero__body p {
  margin: 0 0 .75rem;
}

.fx-cli-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-cli-stats {
  list-style: none;
  margin: 0;
  padding: 1rem 1.1rem;
  background: var(--fx-paper);
  border: 1px solid var(--fx-linen);
  display: grid;
  gap: .9rem;
}

.fx-cli-stats__n {
  display: block;
  font-size: 1.15rem;
  color: var(--fx-copper);
  margin-bottom: .15rem;
}

.fx-cli-stats__l {
  font-size: .82rem;
  color: var(--fx-steel);
  line-height: 1.4;
}

.fx-cli-sec {
  margin: 0 0 1.1rem;
  max-width: 40rem;
}

.fx-cli-sec h2 {
  margin: .15rem 0 .4rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.fx-cli-sec p {
  margin: 0;
  color: var(--fx-steel);
  font-size: .92rem;
  line-height: 1.5;
}

.fx-cli-nichos {
  margin: 0 0 2.5rem;
}

.fx-cli-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 .75rem;
}

.fx-cli-filters__btn {
  appearance: none;
  border: 1px solid var(--fx-linen);
  background: #fff;
  color: var(--fx-ink);
  font-family: var(--fx-font);
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem .85rem;
  cursor: pointer;
}

.fx-cli-filters__btn:hover,
.fx-cli-filters__btn:focus-visible {
  border-color: var(--fx-gold);
  outline: 0;
}

.fx-cli-filters__btn.is-active {
  border-color: var(--fx-black);
  background: var(--fx-black);
  color: #fff;
}

.fx-cli-count {
  margin: 0 0 1rem;
  font-family: var(--fx-mono);
  font-size: .75rem;
  color: var(--fx-steel);
}

.fx-cli-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.fx-cli-card {
  border: 1px solid var(--fx-linen);
  background: #fff;
  padding: 1.05rem 1.1rem 1.15rem;
  cursor: pointer;
  transition: border-color .15s ease;
}

.fx-cli-card:hover,
.fx-cli-card:focus-visible {
  border-color: #c9b89a;
  outline: 0;
}

.fx-cli-card.is-open {
  border-color: var(--fx-gold);
  box-shadow: inset 3px 0 0 var(--fx-gold);
}

.fx-cli-card[hidden] {
  display: none !important;
}

.fx-cli-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin-bottom: .55rem;
}

.fx-cli-card__tag {
  font-family: var(--fx-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fx-copper);
}

.fx-cli-card__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--fx-steel);
  font-family: var(--fx-font);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.fx-cli-card__toggle:hover {
  color: var(--fx-copper);
}

.fx-cli-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.fx-cli-card__lead {
  margin: 0;
  color: var(--fx-steel);
  font-size: .9rem;
  line-height: 1.45;
}

.fx-cli-card__body {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--fx-linen);
}

.fx-cli-card__body ul {
  margin: 0 0 .85rem;
  padding: 0 0 0 1rem;
  color: var(--fx-steel);
  font-size: .88rem;
  line-height: 1.5;
}

.fx-cli-card__cta {
  font-size: .82rem;
  font-weight: 600;
  color: var(--fx-copper);
}

.fx-cli-card__cta:hover {
  color: var(--fx-wine);
}

.fx-cli-empty {
  margin: .5rem 0 0;
  color: var(--fx-steel);
  font-size: .9rem;
}

.fx-cli-logos {
  margin: 0 0 2.5rem;
}

.fx-cli-logos__grid {
  margin-top: .25rem;
}

.fx-cli-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.4rem;
  background: var(--fx-black);
  color: #fff;
  border-top: 1px solid var(--fx-steel);
}

.fx-cli-cta .fx-kicker {
  color: var(--fx-gold);
}

.fx-cli-cta h2 {
  margin: .15rem 0 .4rem;
  color: #fff;
  font-size: 1.2rem;
}

.fx-cli-cta p {
  margin: 0;
  color: #c9c3b8;
  font-size: .92rem;
  max-width: 34rem;
}

.fx-cli-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-cli-cta .fx-btn--ghost {
  border-color: #5a5550;
  color: #fff;
}

.fx-cli-cta .fx-btn--ghost:hover,
.fx-cli-cta .fx-btn--ghost:focus-visible {
  border-color: var(--fx-gold);
  color: var(--fx-gold);
}

@media (max-width: 900px) {
  .fx-cli-hero {
    grid-template-columns: 1fr;
  }

  .fx-cli-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.fx-footer {
  position: relative;
  background: var(--fx-black);
  color: #c9c3b8;
  padding: var(--fx-space-5) 0 0;
  border-top: 1px solid var(--fx-steel);
  flex-shrink: 0;
}

.fx-footer .fx-logo {
  margin-bottom: .85rem;
}

.fx-footer__logo img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
}

.fx-footer a {
  color: #ece7df;
  text-decoration: none;
  transition: color .12s linear;
}

.fx-footer a:hover,
.fx-footer a:focus-visible {
  color: var(--fx-gold);
}

.fx-footer__grid {
  display: grid;
  gap: 2rem 1.75rem;
  grid-template-columns: minmax(220px, 1.35fr) .85fr .85fr 1fr;
  padding-bottom: 2rem;
}

.fx-footer__brand {
  padding-right: .5rem;
}

.fx-footer__lead {
  max-width: 34ch;
  line-height: 1.55;
  margin: 0 0 .45rem;
  font-size: .9rem;
  color: #b8b0a4;
}

.fx-footer__addr {
  margin: .85rem 0 .35rem;
  font-size: .86rem;
  line-height: 1.5;
  color: #9a948c;
}

.fx-footer__addr a {
  color: #d8d2c8;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.fx-footer__addr a:hover,
.fx-footer__addr a:focus-visible {
  color: var(--fx-gold);
  border-bottom-color: rgba(242, 165, 22, .45);
}

.fx-footer__locale {
  margin: 0 0 .65rem;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-gold);
}

.fx-footer__meta {
  margin: 0;
  font-size: .85rem;
  color: #9a948c;
}

.fx-footer__meta span {
  display: block;
  margin: 0;
  font-family: var(--fx-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #8f8880;
}

.fx-footer__title {
  font-family: var(--fx-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
  color: var(--fx-gold);
  margin: 0 0 .85rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fx-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}

.fx-footer__list a {
  display: inline-block;
  font-size: .88rem;
  font-weight: 500;
  color: #ddd7ce;
  padding: .12rem 0;
}

.fx-footer__contact {
  margin: 0;
  display: grid;
  gap: .55rem;
}

.fx-footer__contact div {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: .5rem;
  align-items: baseline;
}

.fx-footer__contact dt {
  margin: 0;
  font-family: var(--fx-mono);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7a746c;
}

.fx-footer__contact dd {
  margin: 0;
  font-size: .86rem;
  line-height: 1.4;
  color: #c9c3b8;
}

.fx-footer__contact .fx-code {
  font-size: .82rem;
  font-weight: 500;
  color: #ece7df;
}

.fx-footer__orc {
  margin: .85rem 0 0;
  padding-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.fx-footer__orc a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-gold);
  border-bottom: 1px solid rgba(242, 165, 22, .35);
  padding-bottom: .1rem;
}

.fx-footer__orc a:hover,
.fx-footer__orc a:focus-visible {
  color: #fff;
  border-bottom-color: #fff;
}

.fx-footer p,
.fx-footer li {
  margin: 0;
  font-size: .9rem;
}

.fx-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fx-footer .fx-code {
  font-size: .88rem;
  font-weight: 500;
}

.fx-footer__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  margin: 0;
  padding: 1rem 0 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-family: var(--fx-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7a746c;
}

.fx-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
}

.fx-footer__legal a {
  color: #9a948c;
  border-bottom: 1px solid transparent;
}

.fx-footer__legal a:hover,
.fx-footer__legal a:focus-visible {
  color: var(--fx-gold);
  border-bottom-color: rgba(242, 165, 22, .35);
}

.fx-code {
  font-family: var(--fx-mono);
  font-weight: 600;
  font-size: .9em;
}

.fx-crumb {
  background: var(--fx-linen);
  border-bottom: var(--fx-rule) solid #d9d3c8;
  padding: .65rem 0;
  font-size: .85rem;
}

.fx-crumb--inline {
  background: transparent;
  border: 0;
  padding: 0 0 var(--fx-space-2);
  margin: 0;
}

.fx-crumb a {
  color: var(--fx-steel);
}

.fx-crumb span {
  margin: 0 .35rem;
  color: #8a847c;
}

.fx-crumb .fx-code {
  color: var(--fx-copper);
  margin-left: 0;
}

.fx-list {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.fx-list--solo {
  grid-template-columns: 1fr;
}

.fx-side {
  border: 0;
  padding: 0;
  background: transparent;
}

.fx-side h2 {
  font-family: var(--fx-display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-steel);
  margin: 0 0 .6rem;
}

.fx-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: var(--fx-rule) solid var(--fx-linen);
}

.fx-side a {
  display: block;
  padding: .5rem .55rem .5rem .75rem;
  border-bottom: var(--fx-rule) solid var(--fx-linen);
  border-left: 2px solid transparent;
  color: var(--fx-ink);
  font-family: var(--fx-font);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: .9rem;
}

.fx-side a:hover {
  color: var(--fx-copper);
}

.fx-side a.is-active {
  color: var(--fx-ink);
  font-weight: 600;
  border-left-color: var(--fx-gold);
  background: transparent;
}

.fx-side {
  position: sticky;
  top: 8.75rem;
}

.fx-filters {
  margin-top: 1.5rem;
  display: grid;
  gap: .75rem;
}

.fx-filters h2 {
  margin-bottom: 0;
}

.fx-filters__search input {
  width: 100%;
  font-family: var(--fx-mono);
  font-size: .82rem;
  padding: .55rem .65rem;
  border: 1px solid var(--fx-linen);
  background: var(--fx-white);
  color: var(--fx-ink);
}

.fx-filters__search input:focus {
  outline: 1px solid var(--fx-gold);
  border-color: var(--fx-gold);
}

.fx-filters__apply {
  justify-self: start;
  padding: .38rem .7rem;
  font-size: .68rem;
}

.fx-filters__group {
  border-top: 1px solid var(--fx-linen);
  padding-top: .55rem;
}

.fx-filters__group summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--fx-mono);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fx-steel);
  padding: .2rem 0;
}

.fx-filters__group summary::-webkit-details-marker {
  display: none;
}

.fx-filters__group summary::after {
  content: "+";
  float: right;
  color: var(--fx-gold);
  font-family: var(--fx-mono);
}

.fx-filters__group[open] summary::after {
  content: "–";
}

.fx-filters__group ul {
  margin-top: .35rem;
  border-top: 0;
  max-height: 14rem;
  overflow: auto;
}

.fx-filters__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .4rem .45rem .4rem .65rem;
}

.fx-filters__opt .fx-code {
  font-size: .78rem;
  color: inherit;
}

.fx-filters__n {
  font-family: var(--fx-mono);
  font-size: .62rem;
  color: #8a847c;
}

.fx-filters__opt.is-active {
  border-left-color: var(--fx-gold);
  font-weight: 600;
}

.fx-filters__opt.is-active .fx-filters__n {
  color: var(--fx-copper);
}

.fx-filters__clear {
  margin: .25rem 0 0;
  padding-top: .65rem;
  border-top: 1px solid var(--fx-linen);
}

.fx-filters__clear a {
  display: inline;
  padding: 0;
  border: 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-copper);
}

.fx-filters__clear a:hover {
  color: var(--fx-wine);
}

.fx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1rem;
}

.fx-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .55rem;
  border: 1px solid var(--fx-linen);
  background: var(--fx-white);
  font-size: .78rem;
  color: var(--fx-ink);
}

.fx-chip:hover {
  border-color: var(--fx-gold);
  color: var(--fx-ink);
}

.fx-chip .fx-code {
  font-size: .72rem;
  color: var(--fx-copper);
}

.fx-chip::after {
  content: "×";
  font-size: .85rem;
  color: var(--fx-steel);
  margin-left: .1rem;
}

.fx-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1rem;
  margin: 0 0 1rem;
}

.fx-toolbar__count {
  display: none;
}

.fx-toolbar__ord {
  margin-left: auto;
  display: flex;
  gap: .15rem;
  font-family: var(--fx-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fx-toolbar__ord a {
  padding: .28rem .5rem;
  color: var(--fx-steel);
  border: 1px solid transparent;
}

.fx-toolbar__ord a:hover {
  color: var(--fx-ink);
}

.fx-toolbar__ord a.is-active {
  color: var(--fx-ink);
  border-color: var(--fx-linen);
  font-weight: 600;
}

.fx-filters-toggle,
.fx-filters-close {
  display: none;
}

.fx-list--solo .fx-filters-toggle {
  display: none;
}

.fx-filters-backdrop {
  display: none;
}

.fx-filters__find {
  width: 100%;
  margin: .35rem 0 .15rem;
  padding: .35rem .5rem;
  border: 1px solid var(--fx-linen);
  background: var(--fx-paper);
  font-family: var(--fx-mono);
  font-size: .72rem;
  color: var(--fx-ink);
}

.fx-filters__find:focus {
  outline: 1px solid var(--fx-gold);
  border-color: var(--fx-gold);
}

.fx-filters__opt span:first-child {
  min-width: 0;
}

.fx-side .fx-filters {
  max-height: calc(100vh - 12rem);
  overflow: auto;
  padding-right: .15rem;
}

.fx-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem .35rem;
  margin-top: 1.5rem;
}

.fx-pager a,
.fx-pager span {
  min-width: 1.75rem;
  text-align: center;
  padding: .3rem .4rem;
  border: 0;
  background: transparent;
  font-family: var(--fx-mono);
  font-size: .85rem;
  color: var(--fx-steel);
}

.fx-pager a:hover {
  color: var(--fx-ink);
}

.fx-pager span[aria-current="page"] {
  background: var(--fx-black);
  color: var(--fx-gold);
  border-radius: var(--fx-radius);
}

.fx-ficha {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.fx-gallery__main {
  background: #111;
  border: var(--fx-rule) solid var(--fx-steel);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fx-gallery__main img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.fx-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.fx-gallery__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid var(--fx-steel);
  background: #111;
  cursor: pointer;
}

.fx-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fx-gallery__thumb.is-active,
.fx-gallery__thumb:hover {
  border-color: var(--fx-gold);
}

.fx-ficha__info h1 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 0 0 .65rem;
  line-height: 1.15;
}

.fx-ficha__code {
  margin: 0 0 .75rem;
}

.fx-ficha__code .fx-code {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fx-copper);
  letter-spacing: .02em;
}

.fx-ficha__line {
  margin: 0 0 1.15rem;
  font-size: .9rem;
  color: var(--fx-steel);
}

.fx-ficha__line a {
  color: var(--fx-steel);
}

.fx-ficha__line a:hover {
  color: var(--fx-copper);
}

.fx-ficha__desc {
  margin: 0 0 1.25rem;
  color: var(--fx-steel);
}

.fx-tabs h2 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 1rem;
  color: var(--fx-wine);
  margin: 1.75rem 0 .5rem;
  padding-bottom: .35rem;
  border-bottom: var(--fx-rule) solid var(--fx-linen);
}

.fx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.fx-table th,
.fx-table td {
  text-align: left;
  padding: .55rem .7rem;
  border: 1px solid var(--fx-linen);
}

.fx-table th {
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
  background: var(--fx-paper);
  color: var(--fx-steel);
}

.fx-table tr:nth-child(even) td {
  background: #fff;
}

.fx-nav-toggle {
  display: none;
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: none;
  font-size: .82rem;
  color: var(--fx-steel);
  background: var(--fx-white);
  border: var(--fx-rule) solid var(--fx-linen);
  border-radius: var(--fx-radius);
  padding: .45rem .75rem;
  cursor: pointer;
}

.fx-nav-toggle:hover,
.fx-nav-toggle:focus-visible {
  color: var(--fx-ink);
  border-color: var(--fx-steel);
  background: var(--fx-paper);
}

.fx-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -.15rem;
  padding: 0 .15rem;
}

.fx-gallery__cap {
  margin: .45rem 0 0;
  font-family: var(--fx-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-ficha__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-btn--wa {
  flex: 1 1 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-color: #25d366;
  background: #25d366;
  color: #fff;
}

.fx-btn--wa:hover,
.fx-btn--wa:focus-visible {
  border-color: #20bd5a;
  background: #20bd5a;
  color: #fff;
}

.fx-btn--wa-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
}

.fx-share {
  margin-top: 1.15rem;
  padding-top: .9rem;
  border-top: var(--fx-rule) solid var(--fx-linen);
}

.fx-share__label {
  margin: 0 0 .5rem;
  font-family: var(--fx-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fx-share__list li:has([hidden]) {
  display: none;
}

.fx-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--fx-linen);
  background: var(--fx-white);
  color: var(--fx-steel);
  cursor: pointer;
  text-decoration: none;
}

.fx-share__btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.fx-share__btn:hover,
.fx-share__btn:focus-visible {
  border-color: var(--fx-gold);
  color: var(--fx-ink);
}

.fx-share__btn.is-copied {
  border-color: var(--fx-gold);
  color: var(--fx-copper);
}

.fx-spec {
  margin: 0 0 1.75rem;
  border: var(--fx-rule) solid var(--fx-linen);
  background: #fff;
}

.fx-spec figcaption {
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  font-size: .9rem;
  color: var(--fx-ink);
  background: var(--fx-paper);
  border-bottom: var(--fx-rule) solid var(--fx-linen);
  padding: .55rem .85rem;
}

.fx-spec .fx-table {
  margin: 0;
}

.fx-spec .fx-table th,
.fx-spec .fx-table td {
  border-left: 0;
  border-right: 0;
}

.fx-spec .fx-table tr:nth-child(even) td {
  background: var(--fx-paper);
}

@media (max-width: 960px) {
  .fx-header__bar {
    grid-template-columns: auto 1fr auto;
  }

  .fx-header__quote {
    padding: .55rem .75rem;
    font-size: .72rem;
  }
}

@media (max-width: 800px) {
  .fx-header__bar {
    grid-template-columns: 1fr auto;
    gap: .75rem;
  }

  .fx-logo {
    grid-column: 1;
  }

  .fx-header__actions {
    grid-column: 2;
    justify-self: end;
  }

  .fx-search {
    grid-column: 1 / -1;
    max-width: none;
  }

  .fx-nav-toggle {
    display: inline-flex;
  }

  .fx-header__cats .fx-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .35rem 0 .85rem;
  }

  .fx-header.is-open .fx-header__cats .fx-nav {
    display: flex;
  }

  .fx-nav > li > a,
  .fx-nav__drop-btn {
    padding: .65rem 0;
  }

  .fx-nav a[aria-current="page"] {
    box-shadow: none;
  }

  .fx-nav__sub {
    position: static;
    display: block;
    border: 0;
    background: transparent;
    min-width: 0;
    max-height: none;
    overflow: visible;
    margin: 0 0 .5rem;
    padding: 0 0 0 1rem;
  }

  .fx-nav__sub a {
    padding: .4rem 0;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--fx-steel);
  }

  .fx-nav__sub a:hover,
  .fx-nav__sub .fx-nav__all {
    color: var(--fx-wine);
  }

  .fx-nav__drop > a::after,
  .fx-nav__drop-btn::after {
    display: none;
  }

  .fx-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-logo img {
    height: 44px;
  }

  .fx-home-catalog__head {
    align-items: flex-start;
  }

  .fx-home-catalog__grid {
    grid-template-columns: 1fr;
  }

  .fx-prod-grid,
  .fx-home-products__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-list:not(.fx-list--solo) .fx-prod-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-home-products__meta {
    align-items: flex-start;
  }

  .fx-home-empresa__grid {
    grid-template-columns: 1fr;
  }

  .fx-home-diffs__grid {
    grid-template-columns: 1fr;
  }

  .fx-home-cta__grid {
    grid-template-columns: 1fr;
  }

  .fx-tiles {
    grid-template-columns: 1fr;
  }

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

  .fx-side {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(20rem, 88vw);
    z-index: 80;
    background: var(--fx-white);
    padding: 1rem 1rem 2.5rem;
    overflow: auto;
    transform: translateX(-105%);
    transition: transform .2s ease;
    border-right: 1px solid var(--fx-linen);
  }

  body.is-filters-open .fx-side {
    transform: none;
  }

  body.is-filters-open {
    overflow: hidden;
  }

  .fx-filters-toggle {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .65rem;
    border: 1px solid var(--fx-linen);
    background: var(--fx-white);
    font-family: var(--fx-mono);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fx-ink);
    cursor: pointer;
  }

  .fx-filters-close {
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    padding: .2rem 0;
    border: 0;
    background: none;
    text-align: right;
    font-family: var(--fx-mono);
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fx-copper);
    cursor: pointer;
  }

  .fx-filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, .35);
  }

  .fx-filters-backdrop[hidden] {
    display: none;
  }

  .fx-side .fx-filters {
    max-height: none;
  }

  .fx-toolbar__count {
    display: none;
  }

  .fx-ficha {
    grid-template-columns: 1fr;
  }

  .fx-contato {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .fx-grid {
    grid-template-columns: 1fr;
  }

  .fx-header__quote-full {
    display: none;
  }

  .fx-header__quote-short {
    display: inline;
  }
}

/* Page head (internas) */
.fx-pagehead {
  background: var(--fx-black);
  color: #fff;
  padding: 2.4rem 0 2.15rem;
  border-bottom: var(--fx-rule) solid var(--fx-gold);
}

.fx-pagehead--paper {
  background: var(--fx-paper);
  color: var(--fx-ink);
  padding: var(--fx-space-3) 0 var(--fx-space-4);
  border-bottom: var(--fx-rule) solid var(--fx-linen);
}

.fx-pagehead--cover {
  background-size: cover;
  background-position: center;
  background-color: var(--fx-black);
  position: relative;
  padding: 2.75rem 0 2.5rem;
  border-bottom: var(--fx-rule) solid var(--fx-steel);
}

.fx-pagehead--cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.fx-pagehead--cover .fx-wrap {
  position: relative;
  z-index: 1;
}

.fx-pagehead--cover .fx-kicker,
.fx-pagehead--cover .fx-crumb--inline,
.fx-pagehead--cover .fx-crumb--inline a,
.fx-pagehead--cover .fx-crumb--inline span {
  color: #c9c3b8;
}

.fx-pagehead--cover h1 {
  color: #fff;
}

.fx-pagehead--cover .fx-pagehead__lead {
  color: #e6e1d8;
}

.fx-pagehead h1 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin: 0 0 .55rem;
  max-width: 28ch;
  text-transform: none;
}

.fx-pagehead--paper h1 {
  color: var(--fx-ink);
}

.fx-pagehead p,
.fx-pagehead__lead {
  margin: 0;
  max-width: 40rem;
  color: #d8d2c8;
  font-size: .98rem;
}

.fx-pagehead--paper .fx-pagehead__lead,
.fx-pagehead--paper p {
  color: var(--fx-steel);
}

.fx-cathead {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.fx-cathead__text {
  min-width: 0;
  flex: 1 1 16rem;
}

.fx-cathead__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--fx-steel);
  font-size: .98rem;
}

.fx-cathead__count {
  margin: 0;
  font-family: var(--fx-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fx-steel);
  white-space: nowrap;
}

.fx-cathead__count .fx-code {
  font-size: 1rem;
  color: var(--fx-steel);
  letter-spacing: 0;
  text-transform: none;
}

.fx-cat-intro {
  margin: 0 0 var(--fx-space-3);
  max-width: 40rem;
}

.fx-search--page {
  display: flex;
  max-width: 28rem;
  margin-top: var(--fx-space-2);
  border: var(--fx-rule) solid var(--fx-linen);
  background: #fff;
}

.fx-search--page:focus-within {
  border-color: var(--fx-gold);
}

.fx-search--page input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--fx-ink);
  padding: .65rem .85rem;
  font: inherit;
}

.fx-search--page input:focus {
  outline: 0;
}

.fx-search--page .fx-btn {
  border: 0;
  border-left: var(--fx-rule) solid var(--fx-linen);
  border-radius: 0;
}

.fx-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fx-kicker {
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fx-copper);
  margin: 0 0 .45rem;
}

.fx-section--band {
  background: #fff;
  border-block: 1px solid var(--fx-linen);
}

.fx-section--dark {
  background: var(--fx-black);
  color: #fff;
  padding: 3rem 0;
}

.fx-section--dark .fx-kicker,
.fx-cta .fx-kicker {
  color: var(--fx-linen);
}

.fx-section--dark h2 {
  color: #fff;
}

.fx-section--dark .fx-section__lead {
  color: #c9c3b8;
}

/* Stats */
.fx-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--fx-paper);
  color: var(--fx-ink);
  border-bottom: var(--fx-rule) solid var(--fx-linen);
}

.fx-stat {
  padding: 1.25rem 1.25rem;
  border-right: var(--fx-rule) solid var(--fx-linen);
}

.fx-stat:last-child {
  border-right: 0;
}

.fx-stat strong {
  display: block;
  font-family: var(--fx-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fx-ink);
  letter-spacing: .01em;
}

.fx-stat span {
  display: block;
  margin-top: .25rem;
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

/* Split institucional */
.fx-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 280px;
}

.fx-split__panel {
  background: var(--fx-black);
  color: #fff;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--fx-gold);
}

.fx-split__panel h2 {
  color: #fff;
  margin-bottom: .75rem;
}

.fx-split__panel p {
  margin: 0 0 1.25rem;
  color: #d8d2c8;
  max-width: 36ch;
}

.fx-split__body {
  padding: 2.5rem 2.25rem;
  background: #fff;
}

.fx-split__body p {
  margin: 0 0 1rem;
  color: var(--fx-steel);
}

/* Differentials */
.fx-diffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fx-space-2);
  background: transparent;
  border: 0;
}

.fx-diff {
  background: #fff;
  padding: 1.35rem 1.2rem 1.5rem;
  border: var(--fx-rule) solid var(--fx-linen);
}

.fx-diff__n {
  font-family: var(--fx-mono);
  font-size: .78rem;
  font-weight: 600;
  color: var(--fx-copper);
  margin: 0 0 .65rem;
}

.fx-diff h3 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: .95rem;
  margin: 0 0 .45rem;
}

.fx-diff p {
  margin: 0;
  color: var(--fx-steel);
  font-size: .92rem;
}

/* Applications */
.fx-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--fx-linen);
  border: 1px solid var(--fx-linen);
}

.fx-app {
  background: var(--fx-black);
  color: #fff;
  padding: 1.6rem 1.35rem 1.7rem;
  text-decoration: none;
  display: block;
}

.fx-app:hover {
  color: #fff;
}

.fx-app:hover h3 {
  color: var(--fx-gold);
}

.fx-app h3 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
  color: #fff;
}

.fx-app p {
  margin: 0;
  color: #c9c3b8;
  font-size: .92rem;
}

/* Process */
.fx-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fx-step {
  position: relative;
  padding-top: .2rem;
}

.fx-step__n {
  font-family: var(--fx-mono);
  font-weight: 600;
  color: var(--fx-copper);
  font-size: .85rem;
  margin: 0 0 .5rem;
}

.fx-step h3 {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: .95rem;
  margin: 0 0 .4rem;
}

.fx-step p {
  margin: 0;
  color: var(--fx-steel);
  font-size: .92rem;
}

/* CTA band */
.fx-cta {
  background: var(--fx-black);
  color: #fff;
  padding: var(--fx-space-5) 0;
  border-top: var(--fx-rule) solid var(--fx-steel);
}

.fx-cta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.fx-cta h2 {
  color: #fff;
  margin: 0 0 .35rem;
}

.fx-cta p {
  margin: 0;
  color: #e6e1d8;
  max-width: 40rem;
}

.fx-tile:hover {
  outline: var(--fx-rule) solid var(--fx-gold);
  outline-offset: 0;
}

.fx-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

@media (max-width: 980px) {
  .fx-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .fx-home-catalog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-prod-grid,
  .fx-home-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fx-list:not(.fx-list--solo) .fx-prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fx-home-diffs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-home-diffs__grid .fx-home-diff:last-child {
    grid-column: 1 / -1;
  }

  .fx-home-empresa__contact div {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .fx-hero__panel {
    max-width: 28rem;
  }

  .fx-hero__stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fx-hero__stat:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .fx-diffs,
  .fx-apps,
  .fx-steps,
  .fx-split {
    grid-template-columns: 1fr 1fr;
  }

  .fx-stats {
    grid-template-columns: 1fr 1fr;
  }

  .fx-stats .fx-stat:last-child {
    grid-column: 1 / -1;
  }

  .fx-split__panel {
    border-right: 0;
    border-bottom: 2px solid var(--fx-gold);
  }
}

@media (max-width: 800px) {
  .fx-stats,
  .fx-diffs,
  .fx-apps,
  .fx-steps {
    grid-template-columns: 1fr;
  }

  .fx-stats .fx-stat:last-child {
    grid-column: auto;
  }

  .fx-stat {
    border-right: 0;
    border-bottom: var(--fx-rule) solid var(--fx-linen);
  }

  .fx-hero__stats-grid {
    grid-template-columns: 1fr;
  }

  .fx-hero__stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .fx-hero__stat:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .fx-hero:not(.fx-hero--home)::after {
    top: 0;
    bottom: auto;
    width: 100%;
    height: 2px;
  }
}

@media (max-width: 640px) {
  .fx-footer__grid,
  .fx-split {
    grid-template-columns: 1fr;
  }

  .fx-footer__contact div {
    grid-template-columns: 1fr;
    gap: .15rem;
  }

  .fx-footer__copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .fx-prod-grid,
  .fx-home-products__grid {
    grid-template-columns: 1fr;
  }

  .fx-prod-card__bar {
    flex-direction: column;
    align-items: stretch;
  }

  .fx-prod-card__ghost {
    text-align: center;
  }

  .fx-btn--compact {
    width: 100%;
    justify-content: center;
  }
}

/* Novidades (editorial) */
.fx-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, .7fr);
  gap: 2.5rem;
  align-items: start;
}

.fx-news-card {
  display: grid;
  gap: 0;
  margin-bottom: 1.5rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
}

.fx-news-card--hero {
  margin-bottom: 1.75rem;
}

.fx-news-card__media {
  display: block;
  background: var(--fx-black);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.fx-news-card--hero .fx-news-card__media {
  aspect-ratio: 16 / 8;
}

.fx-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fx-news-card:hover {
  border-color: var(--fx-gold);
}

.fx-news-card__body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.fx-news-meta {
  margin: 0 0 .55rem;
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-steel);
}

.fx-news-meta a {
  color: var(--fx-copper);
}

.fx-news-card__title {
  font-family: var(--fx-display);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 1.15rem;
  margin: 0 0 .5rem;
  line-height: 1.25;
}

.fx-news-card--hero .fx-news-card__title {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.fx-news-card__title a {
  color: var(--fx-black);
}

.fx-news-card__title a:hover {
  color: var(--fx-wine);
}

.fx-news-card__excerpt {
  margin: 0 0 .75rem;
  color: var(--fx-steel);
  font-size: .95rem;
}

.fx-news-card__more {
  margin: 0;
  font-family: var(--fx-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fx-news-card__more a {
  color: var(--fx-copper);
}

.fx-news-card__by {
  color: var(--fx-steel);
  font-weight: 600;
}

.fx-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.fx-news-grid .fx-news-card {
  margin: 0;
}

.fx-news-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fx-news-rail h2 {
  font-family: var(--fx-display);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fx-steel);
  margin: 0 0 .85rem;
  font-weight: 600;
}

.fx-news-rail ul,
.fx-news-rail ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fx-news-rail li + li {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: var(--fx-rule) solid var(--fx-linen);
}

.fx-news-rail a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .7rem;
  align-items: start;
  color: var(--fx-ink);
  font-family: var(--fx-display);
  font-weight: 600;
  letter-spacing: .01em;
  font-size: .9rem;
  line-height: 1.3;
}

.fx-news-rail ol a {
  grid-template-columns: 1.6rem 1fr;
}

.fx-news-rail img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  background: #111;
}

.fx-news-rail em {
  font-family: var(--fx-mono);
  font-style: normal;
  font-size: .78rem;
  color: var(--fx-copper);
}

.fx-news-rail small {
  display: block;
  margin-top: .2rem;
  font-family: var(--fx-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fx-steel);
}

.fx-news-rail a:hover {
  color: var(--fx-wine);
}

.fx-news-rail--cta {
  background: transparent;
  color: var(--fx-steel);
  padding: 0;
  border: 0;
  border-top: var(--fx-rule) solid var(--fx-linen);
  padding-top: 1.25rem;
}

.fx-news-rail--cta h2 {
  color: var(--fx-steel);
}

.fx-news-rail--cta p {
  margin: 0 0 1rem;
  font-size: .9rem;
}

.fx-news-article__body {
  max-width: 68ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fx-news-article__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0 0;
}

.fx-news-related {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fx-linen);
}

.fx-news-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.fx-news-related .fx-news-card {
  margin: 0;
}

@media (max-width: 980px) {
  .fx-news__layout,
  .fx-news-grid,
  .fx-news-related__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Política de privacidade —— */
.fx-legal {
  max-width: 72ch;
}

.fx-legal__meta {
  margin: 0 0 1.75rem;
  font-size: .9rem;
  color: var(--fx-steel);
}

.fx-legal__block {
  margin: 0 0 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-legal__block:last-of-type {
  border-bottom: 0;
}

.fx-legal__block h2 {
  margin: 0 0 .65rem;
  font-family: var(--fx-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--fx-black);
}

.fx-legal__block p {
  margin: 0 0 .75rem;
  line-height: 1.65;
  color: var(--fx-ink, #2a2a2a);
}

.fx-legal__list {
  margin: 0 0 .75rem;
  padding-left: 1.15rem;
  line-height: 1.6;
}

.fx-legal__list li {
  margin: 0 0 .4rem;
}

.fx-legal__back {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0 0;
}

/* —— Banner cookies (LGPD) —— */
.fx-cookies {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  padding: .85rem max(12px, env(safe-area-inset-right, 0px)) max(.85rem, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
  background: var(--fx-black);
  color: var(--fx-white);
  border-top: 2px solid var(--fx-gold);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, .28);
}

.fx-cookies[hidden] {
  display: none !important;
}

.fx-cookies__inner {
  max-width: var(--fx-wrap, 1180px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1.25rem;
}

.fx-cookies__title {
  margin: 0 0 .25rem;
  font-family: var(--fx-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fx-gold);
}

.fx-cookies__text {
  margin: 0;
  max-width: 62ch;
  font-size: .9rem;
  line-height: 1.5;
  color: #e6e1d8;
}

.fx-cookies__text a {
  color: var(--fx-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fx-cookies__text a:hover,
.fx-cookies__text a:focus-visible {
  color: #fff;
}

.fx-cookies__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  flex-shrink: 0;
}

.fx-cookies .fx-btn {
  min-height: 40px;
}

.fx-cookies .fx-btn--ghost {
  color: #e6e1d8;
  border-color: rgba(230, 225, 216, .35);
  background: transparent;
}

.fx-cookies .fx-btn--ghost:hover,
.fx-cookies .fx-btn--ghost:focus-visible {
  color: #fff;
  border-color: var(--fx-gold);
  background: transparent;
}

body.has-fx-cookies .fx-wa {
  bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 720px) {
  .fx-cookies__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .fx-cookies__actions {
    width: 100%;
  }

  .fx-cookies__actions .fx-btn {
    flex: 1 1 auto;
  }

  body.has-fx-cookies .fx-wa {
    bottom: calc(11.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* —— Informações técnicas —— */
.fx-tech-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, .9fr);
  gap: 1.5rem 2rem;
  margin: 0 0 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-tech-intro__copy h2 {
  margin: .35rem 0 .65rem;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: .01em;
}

.fx-tech-intro__lead {
  margin: 0 0 1.1rem;
  max-width: 48ch;
  line-height: 1.6;
  color: var(--fx-steel, #2a2a2a);
}

.fx-tech-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-tech-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}

.fx-tech-stats li {
  display: grid;
  gap: .15rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
  border-left: 2px solid var(--fx-gold);
}

.fx-tech-stats__n {
  font-size: 1.15rem;
  color: var(--fx-wine);
}

.fx-tech-stats__l {
  font-size: .82rem;
  color: #7a746c;
}

.fx-tech__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 2rem 2.25rem;
  align-items: start;
}

.fx-tech-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1.1rem;
}

.fx-tech-filters__btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .75rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  color: var(--fx-ink, #2a2a2a);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .12s linear, color .12s linear;
}

.fx-tech-filters__btn em {
  font-style: normal;
  color: #8a847c;
  font-size: .78rem;
}

.fx-tech-filters__btn:hover,
.fx-tech-filters__btn:focus-visible {
  border-color: var(--fx-gold);
  color: var(--fx-wine);
}

.fx-tech-filters__btn.is-active {
  border-color: var(--fx-gold);
  border-width: 1px;
  box-shadow: inset 0 -2px 0 var(--fx-gold);
  color: var(--fx-black);
}

.fx-tech-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1.25rem;
  margin: 0 0 1.25rem;
}

.fx-tech-search {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex: 1 1 240px;
  max-width: 420px;
}

.fx-tech-search__label {
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a746c;
}

.fx-tech-search input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 .75rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  font: inherit;
  color: var(--fx-black);
}

.fx-tech-search input:focus {
  outline: none;
  border-color: var(--fx-gold);
}

.fx-tech-count {
  margin: 0;
  font-family: var(--fx-mono);
  font-size: .78rem;
  font-weight: 500;
  color: #7a746c;
}

.fx-tech-empty {
  margin: 1rem 0 0;
  color: #7a746c;
}

.fx-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.fx-tech-card {
  display: grid;
  background: #fff;
  border: 1px solid var(--fx-linen);
  transition: border-color .12s linear;
}

.fx-tech-card:hover {
  border-color: var(--fx-gold);
}

.fx-tech-card--hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  margin-bottom: .25rem;
}

.fx-tech-card__media {
  display: block;
  background: #111;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.fx-tech-card--hero .fx-tech-card__media {
  aspect-ratio: 4 / 3;
  min-height: 100%;
}

.fx-tech-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.fx-tech-card:hover .fx-tech-card__media img {
  transform: scale(1.03);
}

.fx-tech-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.fx-tech-card--hero .fx-tech-card__body {
  padding: 1.25rem 1.35rem;
  justify-content: center;
}

.fx-tech-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .45rem;
  font-family: var(--fx-mono);
  font-size: .72rem;
  font-weight: 500;
  color: #7a746c;
}

.fx-tech-meta--lg {
  margin: 0 0 1rem;
  font-size: .78rem;
}

.fx-tech-tag {
  display: inline-block;
  padding: .12rem .4rem;
  border: 1px solid var(--fx-linen);
  color: var(--fx-copper);
  text-decoration: none;
  letter-spacing: .02em;
}

a.fx-tech-tag:hover {
  border-color: var(--fx-gold);
  color: var(--fx-wine);
}

.fx-tech-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.fx-tech-card--hero .fx-tech-card__title {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.fx-tech-card__title a {
  color: inherit;
  text-decoration: none;
}

.fx-tech-card__title a:hover {
  color: var(--fx-wine);
}

.fx-tech-card__excerpt {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: #4a4640;
}

.fx-tech-card__more {
  margin: .35rem 0 0;
  font-size: .86rem;
  font-weight: 600;
}

.fx-tech-card__more a {
  color: var(--fx-copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 66, 8, .35);
}

.fx-tech-card__more a:hover {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-gold);
}

.fx-tech-side {
  display: grid;
  gap: 1.15rem;
  position: sticky;
  top: 5.5rem;
}

.fx-tech-rail {
  padding: 1rem 1.05rem 1.1rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
}

.fx-tech-rail h2 {
  margin: 0 0 .75rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a746c;
}

.fx-tech-rail ol,
.fx-tech-rail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-tech-rail ol {
  counter-reset: tech;
}

.fx-tech-rail ol li {
  counter-increment: tech;
  padding: .55rem 0 .55rem 1.6rem;
  border-top: 1px solid var(--fx-linen);
  position: relative;
}

.fx-tech-rail ol li:first-child {
  border-top: 0;
  padding-top: 0;
}

.fx-tech-rail ol li::before {
  content: counter(tech, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: .65rem;
  font-family: var(--fx-mono);
  font-size: .7rem;
  font-weight: 600;
  color: var(--fx-copper);
}

.fx-tech-rail ol li:first-child::before {
  top: .1rem;
}

.fx-tech-rail a {
  color: var(--fx-black);
  text-decoration: none;
  font-size: .9rem;
  line-height: 1.35;
  display: block;
}

.fx-tech-rail a:hover {
  color: var(--fx-wine);
}

.fx-tech-rail small {
  display: block;
  margin-top: .2rem;
  font-size: .72rem;
  color: #8a847c;
}

.fx-tech-rail__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.fx-tech-rail__chips a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .55rem;
  border: 1px solid var(--fx-linen);
  font-size: .8rem;
  font-weight: 600;
}

.fx-tech-rail__chips a:hover {
  border-color: var(--fx-gold);
}

.fx-tech-rail__chips em {
  font-style: normal;
  color: #8a847c;
  font-size: .72rem;
}

.fx-tech-rail--cta {
  background: var(--fx-black);
  border-color: var(--fx-black);
  color: #e6e1d8;
}

.fx-tech-rail--cta h2 {
  color: var(--fx-gold);
}

.fx-tech-rail--cta p {
  margin: 0 0 1rem;
  font-size: .9rem;
  line-height: 1.5;
}

.fx-tech-article__body {
  max-width: 68ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fx-tech-article__body h2,
.fx-tech-article__body h3 {
  scroll-margin-top: 6rem;
}

.fx-tech-cover {
  margin: 0 0 1.5rem;
  background: #111;
  overflow: hidden;
}

.fx-tech-cover img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.fx-tech-toc {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--fx-linen);
  background: var(--fx-paper, #f4f1ec);
  max-width: 68ch;
}

.fx-tech-toc__title {
  margin: 0 0 .55rem;
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a746c;
}

.fx-tech-toc__list {
  margin: 0;
  padding-left: 1.15rem;
}

.fx-tech-toc__list li + li {
  margin-top: .3rem;
}

.fx-tech-toc__list a {
  color: var(--fx-ink, #2a2a2a);
  text-decoration: none;
  font-size: .92rem;
}

.fx-tech-toc__list a:hover {
  color: var(--fx-wine);
}

.fx-tech-toc__h3 {
  margin-left: .65rem;
  list-style-type: circle;
}

.fx-tech-gallery {
  margin: 2.25rem 0 0;
  max-width: 68ch;
}

.fx-tech-gallery h2 {
  margin: .25rem 0 1rem;
  font-size: 1.15rem;
}

.fx-tech-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .55rem;
}

.fx-tech-gallery__item {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 1px solid #2a2a2a;
  background: #111;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.fx-tech-gallery__item:hover,
.fx-tech-gallery__item:focus-visible {
  border-color: var(--fx-gold);
  outline: none;
}

.fx-tech-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fx-tech-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 2.5rem 0 0;
  padding: 1.35rem 1.4rem;
  background: var(--fx-black);
  color: #e6e1d8;
  max-width: 68ch;
}

.fx-tech-cta--inline {
  max-width: none;
  margin: 0 0 1.75rem;
}

.fx-tech__layout .fx-tech-cta--inline {
  margin: 1.75rem 0 0;
}

.fx-tech-cta .fx-kicker {
  color: var(--fx-gold);
}

.fx-tech-cta h2 {
  margin: .2rem 0 .4rem;
  font-size: 1.2rem;
  color: #fff;
}

.fx-tech-cta p {
  margin: 0;
  font-size: .92rem;
  max-width: 42ch;
}

.fx-tech-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.fx-tech-cta .fx-btn--ghost {
  color: #e6e1d8;
  border-color: rgba(230, 225, 216, .35);
}

.fx-tech-cta .fx-btn--ghost:hover,
.fx-tech-cta .fx-btn--ghost:focus-visible {
  color: #fff;
  border-color: var(--fx-gold);
}

.fx-tech-related {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fx-linen);
}

.fx-tech-related h2 {
  margin: .2rem 0 1rem;
  font-size: 1.2rem;
}

.fx-tech-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.fx-tech-related .fx-tech-card {
  margin: 0;
}

.fx-tech-back {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0 0;
}

.fx-tech-lightbox {
  border: 0;
  padding: 0;
  max-width: min(960px, 94vw);
  background: transparent;
}

.fx-tech-lightbox::backdrop {
  background: rgba(0, 0, 0, .78);
}

.fx-tech-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  margin: 0 auto;
  background: #111;
}

.fx-tech-lightbox__close {
  position: absolute;
  top: .35rem;
  right: .35rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: var(--fx-black);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.fx-tech-lightbox__close:hover {
  border-color: var(--fx-gold);
  color: var(--fx-gold);
}

@media (max-width: 980px) {
  .fx-tech-intro,
  .fx-tech__layout,
  .fx-tech-card--hero,
  .fx-tech-related__grid,
  .fx-tech-grid {
    grid-template-columns: 1fr;
  }

  .fx-tech-side {
    position: static;
  }

  .fx-tech-card--hero .fx-tech-card__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
}

/* —— Aplicações (produtos por ferramenta/fabricante) —— */
.fx-apl-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, .85fr);
  gap: 1.5rem 2rem;
  margin: 0 0 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-apl-intro__copy h2 {
  margin: .3rem 0 .65rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
}

.fx-apl-intro__lead {
  margin: 0 0 1rem;
  max-width: 52ch;
  line-height: 1.6;
  color: var(--fx-steel, #2a2a2a);
}

.fx-apl-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-apl-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.fx-apl-stats li {
  padding: .8rem 1rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
  border-left: 2px solid var(--fx-gold);
  display: grid;
  gap: .15rem;
}

.fx-apl-stats__n {
  font-size: 1.1rem;
  color: var(--fx-wine);
}

.fx-apl-stats__l {
  font-size: .8rem;
  color: #7a746c;
}

.fx-apl-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem .65rem;
  margin: 0 0 1.25rem;
}

.fx-apl-search__label {
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a746c;
}

.fx-apl-search input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 420px;
  height: 40px;
  padding: 0 .75rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  font: inherit;
}

.fx-apl-search input[type="search"]:focus {
  outline: none;
  border-color: var(--fx-gold);
}

.fx-apl-filters {
  margin: 0 0 1.15rem;
}

.fx-apl-filters__label {
  margin: 0 0 .45rem;
  font-family: var(--fx-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a746c;
}

.fx-apl-filters__row {
  display: flex;
  flex-wrap: nowrap;
  gap: .4rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  -webkit-overflow-scrolling: touch;
}

.fx-apl-filters__row--wrap {
  flex-wrap: wrap;
  overflow: visible;
  max-height: 9.5rem;
  overflow-y: auto;
}

.fx-apl-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  flex: 0 0 auto;
  padding: .4rem .7rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  color: var(--fx-ink, #2a2a2a);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.fx-apl-chip--mono {
  font-family: var(--fx-mono);
  font-size: .78rem;
  font-weight: 600;
}

.fx-apl-chip em {
  font-style: normal;
  color: #8a847c;
  font-size: .72rem;
  font-family: var(--fx-mono);
}

.fx-apl-chip:hover,
.fx-apl-chip:focus-visible {
  border-color: var(--fx-gold);
  color: var(--fx-wine);
}

.fx-apl-chip.is-active {
  border-color: var(--fx-gold);
  box-shadow: inset 0 -2px 0 var(--fx-gold);
  color: var(--fx-black);
}

.fx-apl-count {
  margin: 0 0 1rem;
  font-size: .9rem;
  color: #7a746c;
}

.fx-apl-list .fx-prod-grid {
  margin-top: .25rem;
}

.fx-apl-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 2.25rem 0 0;
  padding: 1.35rem 1.4rem;
  background: var(--fx-black);
  color: #e6e1d8;
}

.fx-apl-cta .fx-kicker {
  color: var(--fx-gold);
}

.fx-apl-cta h2 {
  margin: .2rem 0 .4rem;
  font-size: 1.15rem;
  color: #fff;
}

.fx-apl-cta p {
  margin: 0;
  font-size: .92rem;
  max-width: 46ch;
}

.fx-apl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.fx-apl-cta .fx-btn--ghost {
  color: #e6e1d8;
  border-color: rgba(230, 225, 216, .35);
}

.fx-apl-cta .fx-btn--ghost:hover,
.fx-apl-cta .fx-btn--ghost:focus-visible {
  color: #fff;
  border-color: var(--fx-gold);
}

@media (max-width: 980px) {
  .fx-apl-intro {
    grid-template-columns: 1fr;
  }
}

/* —— Qualidade —— */
.fx-qual-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .9fr);
  gap: 1.5rem 2rem;
  margin: 0 0 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--fx-linen);
}

.fx-qual-intro__copy h2 {
  margin: .3rem 0 .7rem;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  font-weight: 700;
}

.fx-qual-intro__lead {
  margin: 0 0 1.1rem;
  max-width: 52ch;
  line-height: 1.6;
  color: var(--fx-steel, #2a2a2a);
}

.fx-qual-intro__body {
  margin: 0 0 1.1rem;
  max-width: 58ch;
  line-height: 1.65;
}

.fx-qual-intro__body p {
  margin: 0 0 .75rem;
}

.fx-qual-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.fx-qual-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.fx-qual-facts li {
  display: grid;
  gap: .15rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
  border-left: 2px solid var(--fx-gold);
}

.fx-qual-facts .fx-code {
  color: var(--fx-copper);
  font-size: .72rem;
}

.fx-qual-facts strong {
  font-size: .95rem;
}

.fx-qual-facts span {
  font-size: .82rem;
  color: #7a746c;
}

.fx-qual-sec {
  margin: 0 0 1.15rem;
}

.fx-qual-sec h2 {
  margin: .25rem 0 .45rem;
  font-size: 1.35rem;
}

.fx-qual-sec p {
  margin: 0;
  max-width: 54ch;
  color: #5a554e;
}

.fx-qual-pilares,
.fx-qual-fluxo {
  margin: 0 0 2.25rem;
}

.fx-qual-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1rem;
}

.fx-qual-filters__btn {
  appearance: none;
  padding: .4rem .75rem;
  border: 1px solid var(--fx-linen);
  background: #fff;
  color: var(--fx-ink, #2a2a2a);
  font: inherit;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
}

.fx-qual-filters__btn:hover,
.fx-qual-filters__btn:focus-visible {
  border-color: var(--fx-gold);
  color: var(--fx-wine);
  outline: none;
}

.fx-qual-filters__btn.is-active {
  border-color: var(--fx-gold);
  box-shadow: inset 0 -2px 0 var(--fx-gold);
}

.fx-qual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.fx-qual-card {
  background: #fff;
  border: 1px solid var(--fx-linen);
  padding: 1rem 1.1rem 1.1rem;
  cursor: pointer;
  transition: border-color .12s linear;
}

.fx-qual-card:hover,
.fx-qual-card:focus-within,
.fx-qual-card.is-open {
  border-color: var(--fx-gold);
}

.fx-qual-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .55rem;
}

.fx-qual-card__tag {
  font-size: .68rem;
  color: var(--fx-copper);
}

.fx-qual-card__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--fx-copper);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.fx-qual-card h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
}

.fx-qual-card__lead {
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: #4a4640;
}

.fx-qual-card__body {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--fx-linen);
}

.fx-qual-card__body ul {
  margin: 0 0 .85rem;
  padding-left: 1.1rem;
}

.fx-qual-card__body li + li {
  margin-top: .3rem;
}

.fx-qual-card__cta {
  font-size: .86rem;
  font-weight: 600;
  color: var(--fx-copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 66, 8, .35);
}

.fx-qual-card__cta:hover {
  color: var(--fx-wine);
  border-bottom-color: var(--fx-gold);
}

.fx-qual-empty {
  margin: .75rem 0 0;
  color: #7a746c;
}

.fx-qual-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.fx-qual-steps li {
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
}

.fx-qual-steps__n {
  display: block;
  margin-bottom: .45rem;
  color: var(--fx-copper);
  font-size: .78rem;
}

.fx-qual-steps strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 1rem;
}

.fx-qual-steps p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  color: #5a554e;
}

.fx-qual-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.fx-qual-panel {
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid var(--fx-linen);
}

.fx-qual-panel h2 {
  margin: .25rem 0 .5rem;
  font-size: 1.2rem;
}

.fx-qual-panel > p {
  margin: 0 0 1rem;
  max-width: 42ch;
  line-height: 1.55;
  color: #5a554e;
}

.fx-qual-panel--dark {
  background: var(--fx-black);
  border-color: var(--fx-black);
  color: #e6e1d8;
}

.fx-qual-panel--dark .fx-kicker {
  color: var(--fx-gold);
}

.fx-qual-panel--dark h2 {
  color: #fff;
}

.fx-qual-panel--dark > p {
  color: #cfc8bc;
}

.fx-qual-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.fx-qual-panel--dark .fx-btn--ghost {
  color: #e6e1d8;
  border-color: rgba(230, 225, 216, .35);
}

.fx-qual-panel--dark .fx-btn--ghost:hover,
.fx-qual-panel--dark .fx-btn--ghost:focus-visible {
  color: #fff;
  border-color: var(--fx-gold);
}

@media (max-width: 980px) {
  .fx-qual-intro,
  .fx-qual-grid,
  .fx-qual-steps,
  .fx-qual-split {
    grid-template-columns: 1fr;
  }
}
