/* ===========================================================
   Tratorcena Peças — folha de estilos única
   Paleta: vermelho #D42027 · grafite #16181A · branco/cinza
   =========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #f7f7f7;
  --fg: #17191b;
  --card: #ffffff;
  --ink: #16181a;
  /* grafite quase preto */
  --graphite: #2e3236;
  /* grafite médio */
  --red: #d42027;
  /* vermelho Tratorcena */
  --red-dark: #a3161c;
  --muted: #5c6165;
  --steel: #eef0f1;
  --border: #dcdfe1;
  --whatsapp: #1eb455;
  --radius: 6px;
  --shadow-card: 0 1px 2px rgba(22, 24, 26, .06), 0 10px 30px -18px rgba(22, 24, 26, .35);
  --shadow-plate: 0 2px 0 0 rgba(163, 22, 28, .9), 0 12px 28px -12px rgba(22, 24, 26, .5);
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 5rem;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit
}

button {
  font: inherit
}

h1,
h2,
h3,
h4,
.display {
  font-family: Archivo, system-ui, sans-serif;
  letter-spacing: -.02em;
  margin: 0
}

p,
ul,
ol {
  margin: 0
}

ul,
ol {
  list-style: none;
  padding: 0
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--red)
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem
}

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round
}

.icon-sm {
  width: 1rem;
  height: 1rem
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem
}

.wa-glyph {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  stroke: none;
  flex: 0 0 auto
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap
}

/* ---------- fundos ---------- */
.darkfield {
  background-image: linear-gradient(160deg, #1c1f22, #0d0f11);
  position: relative;
  overflow: hidden
}

.hatch {
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 8px)
}

.bg-steel {
  background: var(--steel)
}

.bg-ink {
  background: var(--ink)
}

.section {
  padding: 4rem 0
}

ul,
ol {
  list-style: none
}

[hidden] {
  display: none !important
}

.card .chip {
  color: var(--muted);
  border-color: var(--border);
  background: var(--steel)
}

.card .chip .icon {
  color: var(--red)
}

@media(min-width:640px) {
  .section {
    padding: 6rem 0
  }
}

.on-dark {
  color: #fff
}

.on-dark .muted-text {
  color: rgba(255, 255, 255, .75)
}

.muted-text {
  color: var(--muted)
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .75rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: Archivo, sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-lg {
  min-height: 56px;
  padding: .9rem 1.5rem;
  font-size: 1.0625rem
}

.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px -14px rgba(30, 180, 85, .9)
}

.btn-wa:hover {
  background: #189b48
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-red:hover {
  background: var(--red-dark)
}

.btn-outline {
  border-color: rgba(22, 24, 26, .25);
  color: var(--ink);
  background: transparent
}

.btn-outline:hover {
  border-color: var(--ink)
}

.btn-ghost-dark {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
  background: transparent
}

.btn-ghost-dark:hover {
  border-color: var(--red);
  color: #ff8a8f
}

.btn-block {
  width: 100%
}

/* ---------- header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--ink);
  transition: box-shadow .3s, background-color .3s
}

.header.scrolled {
  background: rgba(22, 24, 26, .95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-plate)
}

.topbar {
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

@media(min-width:768px) {
  .topbar {
    display: block
  }
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .7)
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: .4rem
}

.topbar .icon {
  color: var(--red)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px
}

.brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none
}

.brand img {
  width: 36px;
  height: 36px
}

.brand-name {
  display: block;
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1
}

.brand-sub {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--red);
  margin-top: 2px
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem
}

@media(min-width:1024px) {
  .nav {
    display: flex
  }
}

.nav a {
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .2s
}

.nav a:hover {
  color: var(--red)
}

.header-cta {
  display: none
}

@media(min-width:768px) {
  .header-cta {
    display: inline-flex
  }
}

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer
}

@media(min-width:1024px) {
  .burger {
    display: none
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--ink);
  padding: .75rem 0 1rem
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: .85rem .25rem;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  font-family: Archivo, sans-serif;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.mobile-menu .btn {
  margin-top: 1rem
}

/* ---------- headings de seção ---------- */
.eyebrow {
  color: var(--red);
  margin-bottom: .75rem
}

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink)
}

.on-dark .section-title {
  color: #fff
}

.section-desc {
  margin-top: .9rem;
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 48rem
}

.on-dark .section-desc {
  color: rgba(255, 255, 255, .78)
}

.section-head {
  max-width: 48rem
}

.rule {
  width: 64px;
  height: 4px;
  background: var(--red);
  margin-top: 1rem;
  border-radius: 2px
}

/* ---------- hero ---------- */
.hero {
  padding-top: 7rem
}

@media(min-width:768px) {
  .hero {
    padding-top: 8rem
  }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 3.5rem
}

@media(min-width:1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    padding-block: 5rem
  }
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.15rem, 5.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff
}

.hero h1 .accent {
  color: var(--red)
}

.hero-lead {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .85)
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

@media(min-width:640px) {
  .hero-actions {
    flex-direction: row
  }
}

.hero-note {
  margin-top: 1rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, .7)
}

.chips {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: .4rem .6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .8)
}

.chip .icon {
  color: var(--red);
  width: .9rem;
  height: .9rem
}

.hero-media {
  position: relative
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 4px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow-plate)
}

.hero-frame img {
  height: 300px;
  width: 100%;
  object-fit: cover
}

@media(min-width:640px) {
  .hero-frame img {
    height: 420px
  }
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 24, 26, .8), rgba(22, 24, 26, .08) 55%, transparent)
}

.hero-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  background: rgba(22, 24, 26, .72);
  color: #fff;
  border-radius: var(--radius);
  padding: .5rem .75rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  backdrop-filter: blur(4px)
}

.wa-card {
  position: absolute;
  bottom: -2.5rem;
  left: -.5rem;
  width: 270px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem;
  box-shadow: var(--shadow-plate);
  animation: float 6s ease-in-out infinite
}

@media(min-width:640px) {
  .wa-card {
    left: -2rem;
    width: 300px
  }
}

.wa-card-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: .5rem
}

.wa-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff
}

.wa-card-head strong {
  font-family: Archivo, sans-serif;
  font-size: .875rem;
  color: var(--ink)
}

.wa-msgs {
  margin-top: .5rem;
  display: grid;
  gap: .4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  line-height: 1.4;
  color: var(--muted)
}

.wa-msgs p {
  padding: .4rem .5rem;
  border-radius: var(--radius);
  color: var(--ink)
}

.wa-in {
  background: var(--steel)
}

.wa-out {
  background: rgba(30, 180, 85, .14);
  margin-left: 1.5rem
}

.wa-msgs .hl {
  color: var(--graphite);
  font-weight: 600
}

.trust {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .3)
}

.trust .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem 1.5rem;
  padding-block: .75rem;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .75)
}

.trust .dot {
  color: var(--red)
}

.location-ticker,
.address-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2d3c9;
  background: #f2e8e1
}

.location-ticker::before,
.location-ticker::after,
.address-ticker::before,
.address-ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 7rem;
  pointer-events: none
}

.location-ticker::before,
.address-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #f2e8e1, transparent)
}

.location-ticker::after,
.address-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #f2e8e1, transparent)
}

.address-ticker {
  border-top: 1px solid rgba(212, 32, 39, .16);
  background: #fff9f5
}

.address-ticker::before {
  background: linear-gradient(90deg, #fff9f5, transparent)
}

.address-ticker::after {
  background: linear-gradient(270deg, #fff9f5, transparent)
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.4rem;
  padding: .72rem 0;
  animation: location-scroll 38s linear infinite;
  will-change: transform
}

.ticker-track-reverse {
  animation-name: location-scroll-reverse;
  animation-duration: 70s
}

.ticker-track span {
  white-space: nowrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #554a46
}

.address-ticker .ticker-track span {
  font-size: .62rem;
  letter-spacing: .08em;
  color: #6a5550;
  font-weight: 700
}

.ticker-track .dot {
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border: 1px solid rgba(212, 32, 39, .45);
  border-radius: 50%;
  color: var(--red);
  font-size: .7rem;
  flex: 0 0 auto
}

.location-ticker:hover .ticker-track,
.address-ticker:hover .ticker-track {
  animation-play-state: paused
}

@keyframes location-scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes location-scroll-reverse {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

@media(prefers-reduced-motion:reduce) {
  .ticker-track {
    animation: none
  }

  .location-ticker,
  .address-ticker {
    overflow: auto
  }

  .ticker-track {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap
  }
}

/* ---------- grids e cards ---------- */
.grid {
  display: grid;
  gap: 1rem
}

.g2 {
  grid-template-columns: 1fr
}

.g3 {
  grid-template-columns: 1fr
}

.g4 {
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .g2 {
    grid-template-columns: repeat(2, 1fr)
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:768px) {
  .g3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .g3 {
    grid-template-columns: repeat(3, 1fr)
  }

  .g4 {
    grid-template-columns: repeat(4, 1fr)
  }
}

.mt10 {
  margin-top: 2.5rem
}

.mt8 {
  margin-top: 2rem
}

.mt6 {
  margin-top: 1.5rem
}

.card {
  background: var(--card);
  border: 2px solid rgba(22, 24, 26, .1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .3s, border-color .3s;
  display: flex;
  flex-direction: column
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 50, 54, .5)
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink)
}

.card p {
  margin-top: .6rem;
  font-size: .9375rem;
  color: var(--muted)
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--red);
  transition: background-color .3s
}

.card:hover .card-icon {
  background: var(--graphite)
}

.card-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 48px;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: var(--graphite);
  text-decoration: none
}

.card-link:hover {
  color: var(--ink)
}

.card-dashed {
  border: 2px dashed rgba(46, 50, 54, .4);
  background: rgba(46, 50, 54, .05);
  box-shadow: none;
  justify-content: center
}

.card-dashed:hover {
  transform: none
}

.step-num {
  position: absolute;
  right: .75rem;
  top: .25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(22, 24, 26, .08)
}

/* cards escuros (benefícios) */
.dark-card {
  border: 2px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .3s, border-color .3s
}

.dark-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .35)
}

.dark-card h3 {
  margin-top: .75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff
}

.dark-card p {
  margin-top: .5rem;
  font-size: .9375rem;
  color: rgba(255, 255, 255, .75)
}

.dark-card .icon {
  color: rgba(255, 255, 255, .8)
}

.dark-card.hl {
  border-color: var(--red);
  background: rgba(212, 32, 39, .14)
}

.dark-card.hl .icon {
  color: var(--red)
}

.dark-card .flag {
  margin-top: .75rem;
  color: var(--red)
}

/* listas com barra lateral */
.side-card {
  background: var(--card);
  border-left: 4px solid var(--graphite);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-card)
}

.side-card strong {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: Archivo, sans-serif;
  color: var(--ink)
}

.side-card .icon {
  color: var(--graphite)
}

.side-card p {
  margin-top: .4rem;
  font-size: .875rem;
  color: var(--muted)
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  border-left: 4px solid var(--red);
  background: var(--steel);
  border-radius: var(--radius);
  padding: 1rem;
  font-size: .875rem;
  color: var(--ink)
}

.notice.gray {
  border-left-color: var(--graphite)
}

.notice .icon {
  color: var(--graphite);
  margin-top: .15rem
}

.check-list {
  display: grid;
  gap: .6rem
}

@media(min-width:640px) {
  .check-list {
    grid-template-columns: repeat(2, 1fr)
  }
}

.check-list li {
  display: flex;
  gap: .5rem;
  font-size: .9375rem
}

.check-list .icon {
  color: var(--graphite);
  margin-top: .2rem
}

/* problema */
.split {
  display: grid;
  gap: 3rem;
  align-items: center
}

@media(min-width:1024px) {
  .split {
    grid-template-columns: 1fr 1fr
  }
}

.photo {
  position: relative
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover
}

.photo-frame {
  overflow: hidden;
  border: 2px solid rgba(22, 24, 26, .15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card)
}

.photo-tag {
  position: absolute;
  right: -.75rem;
  top: -1rem;
  transform: rotate(2deg);
  background: var(--card);
  border-left: 4px solid var(--red);
  padding: .5rem .75rem;
  box-shadow: var(--shadow-plate)
}

.photo-tag small {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted)
}

.photo-tag strong {
  font-family: Archivo, sans-serif;
  font-size: .875rem;
  color: var(--ink)
}

.alert {
  display: inline-flex;
  align-items: flex-start;
  gap: .5rem;
  border: 1px solid rgba(212, 32, 39, .4);
  background: rgba(212, 32, 39, .1);
  border-radius: var(--radius);
  padding: .75rem;
  font-size: .875rem;
  color: var(--ink);
  margin-top: 1.5rem
}

.order-1 {
  order: 1
}

.order-2 {
  order: 2
}

@media(min-width:1024px) {
  .lg-order-1 {
    order: 1
  }

  .lg-order-2 {
    order: 2
  }
}

/* linhas / marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(22, 24, 26, .1);
  border-bottom: 2px solid rgba(22, 24, 26, .1);
  padding: 1rem 0;
  margin-top: 2.5rem
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: .75rem;
  animation: marquee 28s linear infinite
}

.marquee:hover .marquee-track {
  animation-play-state: paused
}

.marquee-track span {
  white-space: nowrap;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  color: var(--ink)
}

.line-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 56px;
  padding: 0 1rem;
  background: var(--card);
  border: 2px solid rgba(22, 24, 26, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color .2s
}

.line-item:hover {
  border-color: var(--red)
}

.line-item .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem;
  color: var(--red)
}

.line-item strong {
  font-family: Archivo, sans-serif;
  color: var(--ink)
}

/* processo */
.steps {
  position: relative;
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem
}

@media(min-width:1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr)
  }

  .steps::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 28px;
    height: 2px;
    background: var(--border)
  }
}

.step-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--red);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: var(--shadow-plate)
}

.step h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink)
}

.step p {
  margin-top: .5rem;
  font-size: .9375rem;
  color: var(--muted)
}

.inline-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  border: 2px solid rgba(22, 24, 26, .1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card)
}

@media(min-width:640px) {
  .inline-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between
  }
}

/* buscador de peça */
.finder {
  background: var(--card);
  border: 2px solid rgba(22, 24, 26, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-top: 2.5rem
}

.finder-head {
  background: var(--ink);
  color: #fff;
  padding: 1.25rem 1.5rem
}

.finder-steps {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem
}

.finder-steps li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: .3rem .7rem
}

.finder-steps li.active {
  color: #fff;
  border-color: var(--red);
  background: rgba(212, 32, 39, .2)
}

.finder-steps li.done {
  color: var(--whatsapp);
  border-color: rgba(30, 180, 85, .5)
}

.finder-body {
  padding: 1.5rem
}

.progress {
  height: 4px;
  background: var(--steel)
}

.progress span {
  display: block;
  height: 100%;
  background: var(--red);
  transition: width .35s ease
}

.fieldset {
  display: grid;
  gap: 1rem
}

@media(min-width:640px) {
  .fieldset.two {
    grid-template-columns: repeat(2, 1fr)
  }
}

.field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: .35rem
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--fg);
  font: inherit;
  transition: border-color .2s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red)
}

.field textarea {
  min-height: 110px;
  resize: vertical
}

.field .err {
  color: var(--red);
  font-size: .8125rem;
  margin-top: .3rem;
  display: none
}

.field.invalid input,
.field.invalid select {
  border-color: var(--red)
}

.field.invalid .err {
  display: block
}

.chip-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.chip-opt {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  padding: .6rem .9rem;
  cursor: pointer;
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: var(--ink);
  transition: all .2s
}

.chip-opt:hover {
  border-color: var(--graphite)
}

.chip-opt.sel {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff
}

.finder-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border)
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: .6rem;
  margin-top: .9rem
}

.photo-thumb {
  position: relative;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.photo-thumb button {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 4px;
  background: rgba(22, 24, 26, .8);
  color: #fff;
  cursor: pointer;
  line-height: 1
}

.dropzone {
  border: 2px dashed rgba(46, 50, 54, .4);
  background: rgba(46, 50, 54, .04);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  font-size: .9375rem
}

.dropzone:hover {
  border-color: var(--red);
  color: var(--ink)
}

.summary {
  background: var(--steel);
  border-radius: var(--radius);
  padding: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8125rem;
  white-space: pre-wrap;
  color: var(--ink);
  max-height: 260px;
  overflow: auto
}

/* produtos */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: 2rem
}

.search {
  position: relative;
  flex: 1 1 260px
}

.search input {
  width: 100%;
  padding: .75rem .8rem .75rem 2.4rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font: inherit
}

.search input:focus {
  outline: none;
  border-color: var(--red)
}

.search .icon {
  position: absolute;
  left: .7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted)
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.filter {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: .45rem .9rem;
  cursor: pointer;
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: .8125rem;
  color: var(--ink);
  transition: all .2s
}

.filter.active,
.filter.sel {
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.prod {
  background: var(--card);
  border: 2px solid rgba(22, 24, 26, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s
}

.prod:hover {
  transform: translateY(-4px);
  border-color: var(--red)
}

.prod .cat {
  display: inline-flex;
  align-self: flex-start;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: .2rem .6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .625rem;
  text-transform: uppercase;
  letter-spacing: .12em
}

.prod h3 {
  margin-top: .7rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink)
}

.specs {
  margin-top: .8rem;
  display: grid;
  gap: .35rem;
  font-size: .8125rem;
  flex: 1
}

.specs div {
  display: flex;
  gap: .4rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: .35rem
}

.specs div:last-child {
  border-bottom: 0
}

.specs dt {
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  font-size: .625rem;
  letter-spacing: .1em;
  color: var(--muted);
  min-width: 88px
}

.specs dd {
  margin: 0;
  color: var(--fg)
}

.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 2.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted)
}

/* credibilidade */
.frame-photo img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover
}

.frame-photo {
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-plate);
  background: var(--ink)
}

/* oferta */
.checklist li {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: .5rem;
  font-size: .9375rem
}

.checklist li:last-child {
  border-bottom: 0
}

.checklist .n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem;
  color: var(--red)
}

/* faq */
.acc-item {
  background: var(--card);
  border: 2px solid rgba(22, 24, 26, .1);
  border-radius: var(--radius);
  margin-bottom: .65rem;
  overflow: hidden
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: Archivo, sans-serif;
  font-weight: 700;
  color: var(--ink)
}

.acc-btn .icon {
  color: var(--red);
  transition: transform .25s
}

.acc-item.open .acc-btn .icon {
  transform: rotate(180deg)
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.acc-panel p {
  padding: 0 1rem 1rem;
  font-size: .9375rem;
  color: var(--muted)
}

.subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--graphite);
  margin-bottom: .75rem
}

/* localização */
.map-wrap {
  overflow: hidden;
  border: 2px solid rgba(22, 24, 26, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card)
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block
}

@media(min-width:640px) {
  .map-wrap iframe {
    height: 420px
  }
}

.info-list li {
  border-bottom: 1px dashed var(--border);
  padding-bottom: .75rem;
  margin-bottom: .75rem
}

.info-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0
}

.info-list .lbl {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted)
}

.info-list .lbl .icon {
  color: var(--graphite)
}

.info-list .val {
  margin-top: .25rem;
  font-weight: 600
}

.info-list .note {
  font-size: .75rem;
  color: var(--muted)
}

.qr-box {
  display: none;
  align-items: center;
  gap: 1rem;
  border: 2px dashed rgba(46, 50, 54, .4);
  background: rgba(46, 50, 54, .05);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem
}

@media(min-width:768px) {
  .qr-box {
    display: flex
  }
}

.qr-box img {
  width: 104px;
  height: 104px;
  background: #fff;
  padding: 6px;
  border-radius: var(--radius)
}

/* cta final */
.final {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  text-align: center
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 4px)
}

.final .blob {
  position: absolute;
  right: -6rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(212, 32, 39, .14);
  filter: blur(60px)
}

.final h2 {
  position: relative;
  margin-inline: auto;
  max-width: 48rem;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12
}

.final h2 .accent {
  color: var(--red)
}

.final p {
  position: relative;
  margin: 1.25rem auto 0;
  max-width: 40rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, .8)
}

.final-actions {
  position: relative;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  justify-content: center
}

@media(min-width:640px) {
  .final-actions {
    flex-direction: row
  }
}

/* footer */
.footer {
  background: #0f1113;
  color: rgba(255, 255, 255, .72);
  padding: 3rem 0 1.5rem
}

.footer-grid {
  display: grid;
  gap: 2rem
}

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr
  }
}

.footer h4 {
  font-family: Archivo, sans-serif;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: .75rem
}

.footer a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  font-size: .9375rem
}

.footer a:hover {
  color: var(--red)
}

.footer li {
  margin-bottom: .5rem
}

.footer .info {
  display: flex;
  gap: .5rem;
  font-size: .9375rem;
  margin-top: .75rem
}

.footer .info .icon {
  color: var(--red);
  margin-top: .15rem
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55)
}

/* whatsapp fixo */
.sticky-wa {
  position: fixed;
  z-index: 60;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  transform: translateY(12px)
}

.sticky-wa.show {
  opacity: 1;
  pointer-events: auto;
  transform: none
}

.sticky-wa .btn {
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5)
}

@media(min-width:768px) {
  .sticky-wa {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem
  }

  body {
    padding-bottom: 0
  }
}

/* animações */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.fade-up {
  animation: fadeUp .6s cubic-bezier(.16, 1, .3, 1) both
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .fade-up,
  .marquee-track,
  .wa-card {
    animation: none !important
  }

  html {
    scroll-behavior: auto
  }
}

/* Continuidade visual entre abertura, cabeçalho e primeira seção. */
.header,
.header.scrolled {
  background: rgba(255, 249, 245, .97);
  border-bottom: 1px solid #e7dcd6;
}

.header .brand {
  flex-shrink: 0;
}

.header .brand .header-logo {
  width: clamp(170px, 19vw, 245px);
  height: auto;
}

.header .brand .header-logo {
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.footer .brand img.footer-logo {
  display: block;
  width: 240px !important;
  height: auto !important;
  max-height: 78px;
  object-fit: contain;
  object-position: left center
}

.header .topbar {
  border-color: #e7dcd6;
}

.header .topbar .container,
.header .nav a,
.header .burger {
  color: #343438;
}

.header .nav a:hover {
  color: var(--red);
}

.header .mobile-menu {
  background: #fff9f5;
  border-color: #e7dcd6;
}

.header .mobile-menu a {
  color: #343438;
  border-color: #e7dcd6;
}

.header .mobile-menu .btn {
  color: white;
}

#top.hero {
  background: radial-gradient(ellipse at 35% 20%, #fff 0%, #fff9f5 55%, #eddfd8 100%);
  color: var(--ink);
}

#top .hatch {
  opacity: .035;
}

#top h1 {
  color: #26282b;
}

#top h1 .accent {
  color: #ba1526;
}

#top .hero-lead {
  color: #4c4c50;
}

#top .hero-note {
  color: #626064;
}

#top .chip {
  color: #434247;
  background: #fff9;
  border-color: #d9c9c0;
}

#top .btn-ghost-dark {
  color: #343438;
  border-color: #a7958c;
}

#top .btn-ghost-dark:hover {
  color: #ba1526;
  border-color: #ba1526;
}

#top .hero-frame {
  border-color: white;
  box-shadow: 0 18px 50px -22px #66332560;
}

#top .trust {
  background: #f2e8e1;
  border-color: #e2d3c9;
}

#top .trust .container {
  color: #554a46;
}

.region-choice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e1d1c7;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  max-width: 31rem
}

.region-choice p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6a5550
}

.region-choice__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .7rem
}

.region-choice__button {
  min-height: 40px;
  padding: .5rem .85rem;
  border: 1px solid rgba(212, 32, 39, .38);
  border-radius: 999px;
  background: #fff9f5;
  color: var(--red);
  font-family: Archivo, sans-serif;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: auto;
  transition: .2s
}

.region-choice__button:hover,
.region-choice__button:focus-visible,
.region-choice__button.is-selected {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px)
}

.region-gate {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(22, 24, 26, .72);
  backdrop-filter: blur(8px)
}

.region-gate.is-hidden {
  display: none
}

.region-gate__card {
  width: min(100%, 30rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 20px;
  background: #fffaf7;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  text-align: center
}

.region-gate__card h2 {
  margin: .35rem 0 .65rem;
  color: var(--graphite);
  font-size: clamp(1.6rem, 4vw, 2.3rem)
}

.region-gate__card>p:not(.eyebrow) {
  margin: 0 auto;
  color: #665955;
  max-width: 28rem
}

.region-gate__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem
}

body.region-locked {
  overflow: hidden
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem
}

.location-card {
  overflow: hidden;
  border: 1px solid #e5ddd8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(22, 24, 26, .1)
}

.location-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  max-height: 210px;
  object-fit: cover;
  object-position: center
}

.location-card__body {
  padding: 1.25rem
}

.location-card__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font: 700 1.2rem Archivo, sans-serif;
  color: var(--ink)
}

.location-card__body>p:not(.location-card__title) {
  margin: .55rem 0 1rem;
  color: #665955;
  line-height: 1.5
}

.location-card iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 10px;
  margin-bottom: 1rem
}

@media(max-width:767px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .location-photo {
    aspect-ratio: 16/9;
    max-height: 155px
  }

  .location-card__body {
    padding: 1rem
  }

  .location-card iframe {
    height: 135px;
    margin-bottom: .75rem
  }
}

.hero-grid {
  min-height: 560px;
}

#top .hero-media {
  transform: rotate(1deg);
}

#top .hero-frame {
  border-radius: 18px;
}

#top .hero-frame img {
  object-fit: cover;
  object-position: center;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

@media (hover:hover) and (pointer:fine) {
  #top .hero-frame:hover img {
    transform: scale(1.10);
  }
}

@media (prefers-reduced-motion:reduce) {
  #top .hero-frame img {
    transition: none;
  }

  #top .hero-frame:hover img {
    transform: none;
  }
}

#top .hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent 35%);
  pointer-events: none;
}

#top .hero-badge {
  border-radius: 999px;
  background: var(--red);
  font-weight: 700;
}

#beneficios {
  position: relative;
  overflow: hidden;
}

#beneficios::before {
  content: "";
  position: absolute;
  width: 32rem;
  height: 32rem;
  right: -15rem;
  top: -18rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, .025), 0 0 0 8rem rgba(255, 255, 255, .02);
}

#beneficios .section-head {
  position: relative;
  max-width: 42rem;
}

#beneficios .dark-card {
  min-height: 220px;
  padding: 1.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .07);
}

#beneficios .dark-card.hl {
  background: linear-gradient(145deg, rgba(212, 32, 39, .3), rgba(255, 255, 255, .06));
  box-shadow: 0 20px 44px -28px rgba(212, 32, 39, .8);
}

#beneficios .dark-card h3 {
  font-size: 1.25rem;
}

@media(max-width:767px) {
  .hero-grid {
    min-height: 0;
  }

  #top .hero-media {
    transform: none;
  }

  .header .brand .header-logo {
    width: 175px;
  }
}

.hero {
  padding-top: 5.25rem
}

.hero-grid {
  padding-block: 2rem 2.5rem
}

@media(min-width:768px) {
  .hero {
    padding-top: 8rem
  }

  .hero-grid {
    padding-block: 4rem
  }
}

.address-ticker {
  border-bottom: 3px solid var(--red);
  box-shadow: 0 10px 24px -22px rgba(22, 24, 26, .75)
}

#problema.section {
  padding-top: 4.5rem
}

@media(min-width:640px) {
  #problema.section {
    padding-top: 5rem
  }
}

@media(min-width:1024px) and (max-width:1150px) {
  .header .nav {
    gap: 1rem;
  }

  .header .brand .header-logo {
    width: 185px;
  }
}

.home-showcase {
  background: #f4efeb;
  overflow: hidden
}

.home-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem
}

.home-showcase__head .section-title {
  max-width: 760px
}

.home-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex: none;
  color: var(--red);
  font-family: Archivo, sans-serif;
  font-weight: 800;
  text-decoration: none
}

.home-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 360px;
  gap: 16px
}

.home-showcase__card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #25272a;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 38px -25px rgba(22, 24, 26, .7)
}

.home-showcase__card--wide {
  grid-column: span 2
}

.home-showcase__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
  filter: saturate(1.03) contrast(1.02)
}

.home-showcase__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 14, 16, .9), rgba(13, 14, 16, 0) 62%)
}

.home-showcase__card span {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem
}

.home-showcase__card strong,
.home-showcase__card small {
  display: block
}

.home-showcase__card strong {
  font: 800 1.2rem/1.2 Archivo, sans-serif
}

.home-showcase__card small {
  margin-top: .35rem;
  color: rgba(255, 255, 255, .82);
  font-size: .86rem
}

@media(hover:hover) and (pointer:fine) {
  .home-showcase__card:hover img {
    transform: scale(1.065);
    filter: saturate(1.1) contrast(1.04)
  }
}

@media(max-width:900px) {
  .home-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 320px
  }

  .home-showcase__card--wide {
    grid-column: span 1
  }

  .home-showcase__head {
    align-items: start;
    flex-direction: column;
    gap: 1rem
  }
}

@media(max-width:520px) {
  .home-showcase__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
    gap: 12px
  }

  .home-showcase__card span {
    padding: 1.15rem
  }

  .home-showcase__link {
    font-size: .92rem
  }
}

.footer-social {
  display: grid;
  gap: .55rem;
  margin-top: 1rem
}

.footer-social__link {
  display: flex;
  align-items: center;
  gap: .65rem;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, .88);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease
}

.footer-social__link:hover {
  color: #fff;
  transform: translateX(2px)
}

.footer-social__icon {
  width: 20px;
  height: 20px;
  flex: none
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

.faq-grid details {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem
}

.faq-grid summary {
  font-weight: 700;
  cursor: pointer
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.partners-photo {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px #1113
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem
}

.gallery-grid figure {
  margin: 0
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px
}

.gallery-grid figcaption {
  font-size: .85rem;
  margin-top: .4rem
}

@media(max-width:800px) {

  .faq-grid,
  .about-intro {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid img {
    height: 140px
  }
}

/* Keep sections belonging to other pages hidden before scripts load. */
section[hidden] {
  display: none !important
}

/* Home redesenhada */
.home-solutions {
  background: #f4efeb
}

.home-solutions .section-head {
  max-width: 760px
}

.service-card {
  padding: 2rem;
  border: 1px solid rgba(22, 24, 26, .1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 38px -30px rgba(22, 24, 26, .7);
  display: flex;
  flex-direction: column;
  min-height: 285px
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  background: rgba(212, 32, 39, .1);
  color: var(--red)
}

.service-card__icon .icon {
  width: 1.55rem;
  height: 1.55rem
}

.service-card h3 {
  margin: .35rem 0 .75rem;
  font-size: 1.35rem
}

.service-card p:not(.eyebrow) {
  color: #5b5e62;
  line-height: 1.65
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem
}

.home-story {
  background: #fff
}

.home-story .section-title {
  max-width: 620px
}

.home-story .photo-frame {
  height: 100%;
  min-height: 360px
}

.home-story .photo-frame img {
  height: 100%;
  object-fit: cover
}

.btn-dark {
  background: var(--ink, #16181A);
  color: #fff
}

.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

.brand-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem 1rem;
  border: 1px solid rgba(22, 24, 26, .12);
  border-radius: 999px;
  background: #fff;
  color: #34373b;
  font-weight: 700
}

@media(max-width:767px) {
  .service-card {
    min-height: 0
  }

  .home-story .photo-frame {
    min-height: 260px
  }
}