/* Funditools ? home refatorada */
:root {
  --ink: #0b2a3d;
  --ink-soft: #3a5363;
  --steel: #4a6578;
  --steel-deep: #0f3550;
  --accent: #e85d12;
  --accent-hover: #c74c0c;
  --brass: var(--accent);
  --brass-hover: var(--accent-hover);
  --paper: #f2f5f8;
  --paper-2: #e4eaf0;
  --line: rgba(11, 42, 61, 0.12);
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(11, 42, 61, 0.1);
  --font-display: "Chakra Petch", "Barlow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --radius: 4px;
  --max: 1120px;
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

/* ??? Header ??? */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled .site-header__bar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(11, 42, 61, 0.08);
}

.site-header__inner {
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.2s ease;
}

.brand-mark:hover {
  opacity: 0.88;
}

.brand-mark__logo {
  height: 52px;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
}

.brand-mark--footer .brand-mark__logo {
  height: 52px;
  max-width: 200px;
  background: var(--white);
  border-radius: 6px;
  padding: 0.25rem 0.4rem;
}

.site-header__nav {
  display: none;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  border-radius: 3px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: transparent;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.header-link {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 3px;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-link:hover {
  color: var(--ink);
  background: var(--paper);
}

.btn--header {
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

button.header-cart {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.header-cart__badge,
.cart-fab__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.header-cart__badge[hidden],
.cart-fab__badge[hidden] {
  display: none !important;
}

.cart-fab {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(22, 26, 31, 0.25);
  transition: transform 0.2s ease;
}

.cart-fab:hover {
  transform: scale(1.06);
}

.cart-fab__badge {
  position: absolute;
  top: -2px;
  right: -2px;
}

.cart-item__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--paper);
  border: 1px solid var(--line);
}

.product-card__add,
.btn-add-cart {
  margin-top: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.45rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-card__add:hover,
.btn-add-cart:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.search-row--with-cart {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.search-row--with-cart .search-row {
  min-width: 0;
}

.search-row__cart {
  width: auto;
  margin: 0;
  white-space: nowrap;
  padding: 0.55rem 0.75rem;
}

@media (min-width: 720px) {
  .header-link {
    display: inline-flex;
  }
}

@media (min-width: 980px) {
  .site-header__nav {
    display: flex;
  }

  .btn--header {
    padding: 0.7rem 1.25rem;
  }
}

@media (max-width: 979px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: var(--paper-2);
  border-color: rgba(11, 42, 61, 0.22);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(11, 42, 61, 0.28);
  z-index: 99;
  padding: 0;
}

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

.nav-drawer__inner {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(11, 42, 61, 0.12);
  padding: 1.25rem 1.35rem 1.5rem;
  animation: drawerIn 0.28s ease;
}

.nav-drawer__label {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav-drawer ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.nav-drawer a:not(.btn) {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}

.nav-drawer a:not(.btn):hover {
  color: var(--accent);
}

.nav-drawer .btn {
  width: 100%;
}

@keyframes drawerIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.btn--brass,
.btn--accent {
  background: var(--accent);
  color: var(--white);
}

.btn--brass:hover,
.btn--accent:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--ink {
  background: var(--steel-deep);
  color: var(--white);
}

.btn--ink:hover {
  background: var(--ink);
}

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--ink);
}

.btn--sm {
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
}

/* ??? Hero ??? */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #071823;
  isolation: isolate;
  --hx: 50%;
  --hy: 40%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 42%, rgba(15, 53, 80, 0.95) 0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 82% 28%, rgba(232, 93, 18, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 85%, rgba(74, 101, 120, 0.25) 0%, transparent 60%),
    linear-gradient(165deg, #0a2030 0%, #071823 48%, #0b2a3d 100%);
}

/* Padr�o de rosca / usinagem */
.hero__threads {
  position: absolute;
  inset: -5%;
  opacity: 0.14;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 10px,
      rgba(232, 93, 18, 0.35) 10px,
      rgba(232, 93, 18, 0.35) 11px,
      transparent 11px,
      transparent 22px
    );
  mask-image: radial-gradient(ellipse 70% 65% at 70% 40%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 70% 40%, #000 10%, transparent 70%);
  will-change: transform;
  animation: threadsDrift 18s linear infinite;
}

.hero__hex {
  position: absolute;
  width: 120px;
  height: 138px;
  opacity: 0.2;
  background: transparent;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 0;
  box-shadow: inset 0 0 0 1.5px rgba(232, 93, 18, 0.7);
  background: rgba(232, 93, 18, 0.06);
  will-change: transform;
}

.hero__hex--1 {
  top: 12%;
  right: 18%;
  animation: hexSpin 22s linear infinite;
}

.hero__hex--2 {
  bottom: 16%;
  left: 10%;
  width: 72px;
  height: 82px;
  opacity: 0.15;
  animation: hexSpin 28s linear infinite reverse;
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--hx) var(--hy),
    rgba(232, 93, 18, 0.16),
    rgba(120, 170, 200, 0.06) 28%,
    transparent 55%
  );
  transition: opacity 0.35s ease;
  opacity: 0.85;
  mix-blend-mode: screen;
}

.hero__grid {
  position: absolute;
  inset: -12%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 75% at 50% 45%, #000 15%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 45%, #000 15%, transparent 78%);
  transform: perspective(900px) rotateX(14deg) scale(1.18);
  transform-origin: center 55%;
  will-change: transform;
  animation: gridPulse 9s ease-in-out infinite alternate;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.hero__orb--a {
  width: min(46vw, 400px);
  height: min(46vw, 400px);
  top: 4%;
  right: 2%;
  background: radial-gradient(circle at 35% 35%, rgba(232, 93, 18, 0.4), rgba(232, 93, 18, 0.06) 48%, transparent 70%);
  filter: blur(4px);
  animation: orbPulse 7s ease-in-out infinite alternate;
}

.hero__orb--b {
  width: min(34vw, 280px);
  height: min(34vw, 280px);
  bottom: 8%;
  left: 4%;
  background: radial-gradient(circle at 40% 40%, rgba(120, 170, 200, 0.3), rgba(74, 101, 120, 0.06) 52%, transparent 72%);
  filter: blur(3px);
  animation: orbPulse 10s ease-in-out infinite alternate-reverse;
}

.hero__orb--c {
  width: min(22vw, 180px);
  height: min(22vw, 180px);
  top: 42%;
  left: 42%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(8px);
  animation: orbPulse 5s ease-in-out infinite alternate;
}

.hero__ring {
  position: absolute;
  width: min(52vw, 460px);
  height: min(52vw, 460px);
  top: 50%;
  right: 4%;
  margin-top: calc(min(52vw, 460px) / -2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(232, 93, 18, 0.07),
    0 0 0 36px rgba(255, 255, 255, 0.015);
  will-change: transform;
}

.hero__ring::before,
.hero__ring::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__ring::after {
  inset: 32%;
  border-color: rgba(232, 93, 18, 0.2);
  animation: ringPulse 5.5s ease-in-out infinite alternate;
}

.hero__beam {
  position: absolute;
  top: -25%;
  left: 38%;
  width: 1px;
  height: 150%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(232, 93, 18, 0.4) 32%,
    rgba(255, 255, 255, 0.14) 48%,
    transparent 78%
  );
  transform: rotate(18deg);
  opacity: 0.5;
  animation: beamSweep 8s ease-in-out infinite alternate;
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  animation: particleRise linear infinite;
}

.hero__particle--accent {
  background: var(--accent);
  width: 4px;
  height: 4px;
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 5.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    min-height: calc(100vh - var(--nav-h) - 2rem);
  }
}

.hero__content {
  position: relative;
  max-width: 36rem;
  will-change: transform;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: riseIn 0.8s ease forwards 0.1s;
}

.hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 6.2vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: none;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.2s;
}

.hero__title-line {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.hero__title-accent {
  display: block;
  margin-top: 0.12em;
  color: var(--accent);
  background: linear-gradient(105deg, #ff8a3d 0%, var(--accent) 45%, #f0c2a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-height: 1.05em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero__title-accent.is-swap {
  opacity: 0;
  transform: translateY(10px);
}

.hero__lead {
  margin: 0 0 1.85rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.4s;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.55s;
}

.btn--hero {
  position: relative;
  min-width: 10.5rem;
  padding: 0.9rem 1.4rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

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

.btn--accent.btn--hero:hover {
  box-shadow: 0 12px 32px rgba(232, 93, 18, 0.3);
}

.btn--ghost.btn--hero {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.btn--ghost.btn--hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Stage visual ? parafuso especial / precis�o */
.hero__stage {
  display: none;
  justify-content: center;
  will-change: transform;
}

@media (min-width: 960px) {
  .hero__stage {
    display: flex;
  }
}

.hero-stage__frame {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 320 / 360;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), transparent 42%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 23px,
      rgba(255, 255, 255, 0.03) 23px,
      rgba(255, 255, 255, 0.03) 24px
    ),
    rgba(7, 24, 35, 0.45);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.hero-stage__frame--precision::before,
.hero-stage__frame--precision::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent);
  border-style: solid;
  z-index: 3;
}

.hero-stage__frame--precision::before {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}

.hero-stage__frame--precision::after {
  right: 10px;
  bottom: 10px;
  border-width: 0 2px 2px 0;
}

.hero-stage__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(232, 93, 18, 0.14), transparent);
  animation: stageScan 5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.hero-stage__crosshair {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  z-index: 1;
  pointer-events: none;
}

.hero-stage__crosshair::before,
.hero-stage__crosshair::after {
  content: "";
  position: absolute;
  background: rgba(232, 93, 18, 0.25);
}

.hero-stage__crosshair::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.hero-stage__crosshair::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.hero-stage__svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  padding: 0.5rem 0.25rem 2.5rem;
}

.hero-stage__bolt {
  transform-origin: 42px 160px;
  animation: boltFloat 5.5s ease-in-out infinite;
}

.hero-stage__hex-float {
  transform-origin: 24px 28px;
  animation: hexFloat 7s ease-in-out infinite;
}

.hero-stage__washer {
  animation: washerPulse 4.2s ease-in-out infinite;
}

.bolt-thread {
  animation: threadGlow 3.2s ease-in-out infinite alternate;
}

.hero-stage__specs {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stage__tab {
  padding: 0.55rem 0.2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 24, 35, 0.85);
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.hero-stage__tab:hover {
  color: #fff;
  background: rgba(15, 53, 80, 0.95);
}

.hero-stage__tab.is-active {
  color: var(--accent);
  background: rgba(232, 93, 18, 0.12);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.hero-stage__tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.hero-bolt__head {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.hero-bolt__head.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero-stage__bolt.is-swap {
  animation: boltSwap 0.42s ease;
}

@keyframes boltSwap {
  0% { filter: brightness(1); }
  40% { filter: brightness(1.15); }
  100% { filter: brightness(1); }
}

/* legado: spans antigos nas specs */
.hero-stage__specs span {
  padding: 0.55rem 0.2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 24, 35, 0.85);
}

.hero-stage__specs span:last-child {
  color: var(--accent);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.35rem;
  translate: -50% 0;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  opacity: 0;
  animation: riseIn 0.9s ease forwards 0.9s;
  transition: border-color 0.2s ease;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.hero__scroll:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gridPulse {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

@keyframes orbPulse {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

@keyframes ringPulse {
  from { opacity: 0.35; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.04); }
}

@keyframes beamSweep {
  from { opacity: 0.22; transform: rotate(14deg) translateX(-14px); }
  to { opacity: 0.7; transform: rotate(22deg) translateX(18px); }
}

@keyframes particleRise {
  0% { opacity: 0; transform: translateY(20px) scale(0.6); }
  15% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-110px) scale(1); }
}

@keyframes stageScan {
  0%, 100% { top: 8%; opacity: 0.35; }
  50% { top: 62%; opacity: 0.85; }
}

@keyframes boltFloat {
  0%, 100% { transform: translate(118px, 28px) translateY(0); }
  50% { transform: translate(118px, 28px) translateY(-8px); }
}

@keyframes hexFloat {
  0%, 100% { transform: translate(220px, 70px) rotate(0deg); }
  50% { transform: translate(220px, 70px) rotate(12deg); }
}

@keyframes washerPulse {
  0%, 100% { transform: translate(48px, 210px) scale(1); opacity: 0.85; }
  50% { transform: translate(48px, 210px) scale(1.05); opacity: 1; }
}

@keyframes threadGlow {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

@keyframes threadsDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-24px, 18px, 0); }
}

@keyframes hexSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(12px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__grid,
  .hero__orb,
  .hero__ring,
  .hero__beam,
  .hero__threads,
  .hero__hex,
  .hero__scroll span,
  .hero-stage__scan,
  .hero-stage__bolt,
  .hero-stage__hex-float,
  .hero-stage__washer,
  .hero-bolt__head,
  .bolt-thread,
  .hero__particle {
    animation: none !important;
    transition: none !important;
  }
}

/* ??? Sections ??? */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background:
    linear-gradient(180deg, #eef1f4 0%, var(--paper) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(74, 101, 120, 0.04) 11px,
      rgba(74, 101, 120, 0.04) 12px
    );
}

.section__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section__head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}

.section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.18;
  text-transform: uppercase;
}

.section__text {
  margin: 0;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ??? Search ??? */
.search-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 720px) {
  .search-panel {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 1.75rem;
  }
}

.search-fields {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .search-fields {
    grid-template-columns: 1.4fr 1fr;
  }
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field input,
.field select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(232, 93, 18, 0.35);
  border-color: var(--accent);
}

.search-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.85rem;
}

.search-modes label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
}

/* ??? Categories ??? */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cat-link:hover {
  border-color: var(--steel);
  background: #fafbfc;
  transform: translateY(-2px);
}

.cat-link span {
  color: var(--steel);
  font-size: 1.1rem;
  line-height: 1;
}

/* ??? Category page ??? */
.category-page .category-hero {
  margin: 0 0 1.75rem;
  max-width: 40rem;
}

.category-page {
  padding-bottom: 0;
}

.category-page__grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .category-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .category-page__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cat-card:hover {
  border-color: rgba(74, 101, 120, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cat-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #eef3f6 0%, #d5e0e8 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}

.cat-card__placeholder {
  font-family: "Chakra Petch", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(15, 53, 80, 0.35);
}

.cat-card__body {
  padding: 0.9rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cat-card__body strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.cat-card__body span {
  font-size: 0.8rem;
  color: var(--steel);
  font-weight: 500;
}

/* ??? Products ??? */
.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-hint {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: none;
}

.product-card.is-reveal {
  animation: cardIn 0.55s ease both;
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  border-color: rgba(74, 101, 120, 0.45);
  box-shadow: var(--shadow);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card__media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, #dfe5ea, #f7f8f9);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-card__media img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  cursor: grab;
}

.product-card__media img:active {
  cursor: grabbing;
}

.product-card__body {
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.product-card__code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.product-card__code a:hover {
  color: var(--steel-deep);
}

.product-card__name {
  margin: 0.15rem 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

.product-card__name a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.product-card__name a:hover {
  color: var(--accent);
}

.category-page__products {
  margin-top: 0.5rem;
}

.product-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* ??? Category CTA band ??? */
.category-cta-band {
  position: relative;
  overflow: hidden;
  margin: 2.5rem 0 0;
  padding: 3.25rem 0 3.5rem;
  color: var(--ink);
  background: #e8eef3;
  border-top: 1px solid rgba(11, 42, 61, 0.08);
}

.category-cta-band__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.category-cta-band__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 8% 15%, rgba(232, 93, 18, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 55% at 95% 80%, rgba(15, 53, 80, 0.1), transparent 50%),
    linear-gradient(145deg, #edf2f6 0%, #e2e9f0 55%, #d8e2ea 100%);
}

.category-cta-band__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(11, 42, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 42, 61, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.category-cta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: end;
}

@media (min-width: 800px) {
  .category-cta {
    grid-template-columns: 1.35fr 1fr;
    gap: 2.5rem;
  }
}

.category-cta__brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.category-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--steel-deep);
  text-transform: none;
}

.category-cta__text {
  margin: 0;
  max-width: 46ch;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.98rem;
}

.category-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

@media (min-width: 800px) {
  .category-cta__actions {
    justify-content: flex-end;
  }
}

.category-cta-band .btn--ghost {
  border-color: rgba(11, 42, 61, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.45);
}

.category-cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--ink);
}

.category-cta-band .btn {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-cta-band .btn:hover {
  transform: translateY(-2px);
}

.category-cta-band .btn--accent:hover {
  box-shadow: 0 10px 24px rgba(232, 93, 18, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .category-cta-band .btn {
    transition: none;
  }

  .category-cta-band .btn:hover {
    transform: none;
  }
}

/* ?? Home trust / qualidade ?? */
.home-trust {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 0% 0%, rgba(232, 93, 18, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 50% at 100% 100%, rgba(15, 53, 80, 0.06), transparent 50%),
    var(--paper, #f2f5f8);
}

.home-trust__layout {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .home-trust__layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.9fr);
    gap: 3rem;
    align-items: center;
  }
}

.home-trust__brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.home-trust__title {
  text-transform: none;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.home-trust__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.home-trust__list li {
  display: grid;
  gap: 0.25rem;
  padding: 0 0 0 1rem;
  border-left: 3px solid var(--accent);
}

.home-trust__list strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.home-trust__list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 48ch;
}

.home-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.home-trust__panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 1.75rem 1.5rem 1.65rem;
  border-radius: var(--radius);
  color: #f4f8fb;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.25rem;
}

.home-trust__panel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 10%, rgba(232, 93, 18, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 85%, rgba(120, 170, 200, 0.16), transparent 50%),
    linear-gradient(160deg, #0b2a3d 0%, #0f3550 55%, #0a2230 100%);
}

.home-trust__panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(135deg, #000 30%, transparent 85%);
}

.home-trust__panel-kicker,
.home-trust__stats,
.home-trust__panel-note {
  position: relative;
  z-index: 1;
}

.home-trust__panel-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 93, 18, 0.95);
}

.home-trust__stats {
  margin: 0;
  display: grid;
  gap: 1.1rem;
}

.home-trust__stats div {
  display: grid;
  gap: 0.15rem;
}

.home-trust__stats dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.home-trust__stats dd {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(244, 248, 251, 0.7);
}

.home-trust__panel-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(244, 248, 251, 0.72);
  max-width: 32ch;
}

[data-trust-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-trust-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-trust__panel[data-trust-reveal].is-visible {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  [data-trust-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-trust-reveal].is-visible {
    transition: none;
  }
}

/* ?? Cross-ref ?? */
.cross-band {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .cross-band {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }
}

.cross-band__visual {
  min-height: 240px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 69, 84, 0.92), rgba(26, 34, 41, 0.88)),
    url("../images/banner/banner-funditools.png") center / cover;
  color: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cross-band__visual strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}

.cross-band__visual p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28ch;
}

/* ??? Footer ??? */
.site-footer {
  background:
    linear-gradient(180deg, #0d3146 0%, #081f2d 100%);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0;
}

.site-footer__main {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3.75rem 0 3rem;
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 900px) {
  .site-footer__main {
    grid-template-columns: minmax(220px, 1.15fr) 2fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.site-footer__brand {
  max-width: 28rem;
}

.site-footer__tag {
  margin: 1.15rem 0 1.35rem;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-footer__cta:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.site-footer__cta:active {
  transform: translateY(1px);
}

.site-footer__cols {
  display: grid;
  gap: 2rem 1.75rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 720px) {
  .site-footer__cols {
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 2rem;
  }
}

.site-footer__col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col li + li {
  margin-top: 0.55rem;
}

.site-footer__col a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.925rem;
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: var(--white);
}

.site-footer__contact li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.site-footer__contact li + li {
  margin-top: 1rem;
}

.site-footer__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 0.05rem;
  color: var(--accent);
  background: rgba(232, 93, 18, 0.12);
  border-radius: 3px;
}

.site-footer__contact div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.site-footer__contact span:not(.site-footer__icon) {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__contact a {
  word-break: break-word;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.site-footer__bottom-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__meta {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 719px) {
  .site-footer__col--contact {
    grid-column: 1 / -1;
  }
}

/* ??? Cota��o / Carrinho drawer ??? */
body.cart-open {
  overflow: hidden;
}

#carrinho-cotacao {
  /* FAB oculto: o carrinho fica no header (evita 2 controles + WhatsApp) */
  display: none !important;
}

#img-cotacao {
  width: 58px;
  height: 58px;
  object-fit: contain;
  cursor: pointer;
  filter: drop-shadow(0 8px 18px rgba(22, 26, 31, 0.25));
  transition: transform 0.2s ease;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 10px;
}

#img-cotacao.cart-fab,
button#img-cotacao {
  filter: none;
  padding: 0;
}

#img-cotacao:hover {
  transform: scale(1.06);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 280;
  background: rgba(11, 42, 61, 0.42);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cart-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 290;
  display: flex;
  flex-direction: column;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--white);
  color: var(--ink);
  box-shadow: -12px 0 40px rgba(11, 42, 61, 0.18);
  transform: translateX(104%);
  transition: transform 0.24s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cart-drawer__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.cart-drawer__close,
.pop-qty-close {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer__body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem;
}

.cart-empty {
  padding: 2rem 0.5rem;
  text-align: center;
  color: var(--ink-soft);
}

.cart-empty p {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.cart-drawer__list,
#droppable {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 48px;
}

.cart-line {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.cart-line__media {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.cart-line__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line__info {
  min-width: 0;
}

.cart-line__code {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  word-break: break-word;
}

.cart-line__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.cart-line__btn {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.cart-line__btn:hover {
  border-color: var(--ink);
}

.cart-line__input {
  width: 3.4rem;
  height: 1.85rem;
  padding: 0 0.25rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
  font-size: 0.9rem;
}

.cart-line__remove {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #8b3a3a;
  font-size: 1.35rem;
  cursor: pointer;
}

.cart-drawer__foot {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.cart-drawer__meta {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.cart-drawer__cta,
#enviar-cotacao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.cart-drawer__cta:hover,
#enviar-cotacao:hover {
  background: var(--accent-hover);
  color: var(--white);
}

#mostra-carrinho[hidden] {
  display: none !important;
}

#screen-quantidade {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 26, 31, 0.55);
  z-index: 300;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

#pop-quantidade {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 310;
  place-items: center;
}

#pop-quantidade[style*="block"],
#pop-quantidade[style*="grid"] {
  display: grid !important;
}

#pop-quantidade-content {
  position: relative;
  width: min(360px, calc(100% - 2rem));
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.pop-qty-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

#pop-quantidade-content > p,
#pop-quantidade-title {
  margin: 0.25rem 2rem 0.5rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.pop-qty-code {
  margin: 0 0 0.85rem !important;
  font-family: var(--font-body, inherit) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--ink-soft);
}

#quantidade-informada {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}

#envia-quantidade {
  width: 100%;
  padding: 0.7rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.quote-items .cart-line {
  margin-bottom: 0.65rem;
}

#cart-debug-panel {
  position: fixed;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 9999;
  width: min(460px, calc(100vw - 1.5rem));
  max-height: min(46vh, 420px);
  overflow: auto;
  background: #1b2430;
  color: #e8eef4;
  border: 1px solid #e85d12;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  font-family: Consolas, ui-monospace, monospace;
  font-size: 12px;
}

#cart-debug-panel[hidden] {
  display: none !important;
}

.cart-debug-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.7rem;
  background: #e85d12;
  color: #fff;
  position: sticky;
  top: 0;
}

.cart-debug-head a,
.cart-debug-head button {
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.cart-debug-body {
  padding: 0.55rem 0.7rem 0.8rem;
}

.cart-debug-line {
  border-top: 1px solid #314255;
  padding: 0.45rem 0;
}

.cart-debug-line strong {
  color: #ffb087;
}

.cart-debug-line pre {
  margin: 0.25rem 0 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: #cfe0f0;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 190;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fa855;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(31, 168, 85, 0.35);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.ui-draggable-dragging {
  z-index: 250 !important;
}

/* ??? P�gina de produto ??? */
.product-page {
  padding: 1.5rem 0 4rem;
  background: var(--paper);
}

.product-page__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.product-breadcrumb a:hover {
  color: var(--accent);
}

.product-detail {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 860px) {
  .product-detail {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.product-detail__media {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.product-detail__img {
  max-width: 100%;
  max-height: 320px;
  margin: 0 auto;
  object-fit: contain;
  cursor: grab;
}

.product-detail__placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--steel);
  background: linear-gradient(145deg, #dfe5ea, #f7f8f9);
}

.product-detail__hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.product-detail__family {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.product-detail__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.product-detail__complement,
.product-detail__sku {
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}

.product-detail__seo-text {
  color: var(--ink-soft);
  line-height: 1.65;
}

.product-block {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-block h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.product-specs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.product-specs li:last-child {
  border-bottom: 0;
}

.product-apps,
.product-similars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.45rem 1rem;
}

.product-apps li,
.product-similars li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.product-similars strong {
  display: block;
  color: var(--ink);
}

.product-similars span {
  font-size: 0.8rem;
}

.product-missing {
  padding: 3rem 1rem;
  text-align: center;
}

.product-missing h1 {
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

.product-share {
  margin: 0 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.product-share__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.product-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-share__btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.product-share__btn:hover {
  border-color: var(--steel);
  color: var(--ink);
  background: var(--paper);
}

.product-share__feedback {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.product-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.65rem;
}

.product-gallery__thumb {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.4rem;
  border-radius: var(--radius);
  cursor: pointer;
}

.product-gallery__thumb img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.product-gallery__thumb:hover {
  border-color: var(--accent);
}

.product-related {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

.product-related__head {
  margin-bottom: 1.25rem;
}

.product-related__grid {
  margin-top: 0.5rem;
}

/* ??? Search results ??? */
.search-page .search-panel--results {
  margin-bottom: 2rem;
}

.search-section {
  margin: 0 0 2.25rem;
}

.search-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.search-section__head h2 {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.search-section__head span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
}

.search-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.search-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  color: inherit;
  text-decoration: none;
}

.search-row:hover {
  border-color: rgba(74, 101, 120, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.search-row__media {
  width: 72px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eef3f6 0%, #d5e0e8 100%);
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
}

.search-row__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.search-row__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.search-row__body strong {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
}

.search-row__body span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.search-row__go {
  color: var(--steel);
  font-size: 1.15rem;
}

.search-row--split {
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.search-row__col {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.search-row__col em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel);
}

.search-row__col strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.search-empty {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .search-row--split {
    grid-template-columns: 1fr;
  }

  .search-row {
    grid-template-columns: 64px 1fr;
  }

  .search-row__go {
    display: none;
  }
}

/* ??? Quality page ??? */
.quality-page {
  background: var(--paper, #f4f7f9);
}

.quality-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f4f8fb;
  background: #071823;
}

.quality-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quality-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 20%, rgba(232, 93, 18, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 12% 80%, rgba(74, 120, 150, 0.22), transparent 60%),
    linear-gradient(160deg, #071823 0%, #0f3550 48%, #123a52 100%);
}

.quality-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 92%);
}

.quality-hero__ring {
  position: absolute;
  width: min(48vw, 420px);
  aspect-ratio: 1;
  right: 8%;
  top: 12%;
  border: 1px solid rgba(232, 93, 18, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.03);
  animation: qualityRing 14s ease-in-out infinite;
}

@keyframes qualityRing {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateY(12px) scale(1.04); opacity: 1; }
}

.quality-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 6.5rem 0 3.5rem;
}

.quality-hero__brand {
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: #fff;
}

.quality-hero__title {
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.9rem;
  max-width: 16ch;
  color: rgba(255, 255, 255, 0.92);
}

.quality-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(220, 232, 240, 0.88);
}

.quality-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quality-hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.quality-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.quality-iso {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .quality-iso {
    grid-template-columns: 1.35fr 0.9fr;
    gap: 3rem;
  }
}

.quality-checklist {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.quality-checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.quality-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent);
}

.quality-iso__panel {
  background: linear-gradient(165deg, #0f3550 0%, #071823 100%);
  color: #e8f0f5;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quality-iso__badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.quality-iso__panel-title {
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.quality-iso__panel-text {
  margin: 0 0 1.25rem;
  color: rgba(220, 232, 240, 0.85);
  line-height: 1.5;
  font-size: 0.95rem;
}

.quality-iso__stats {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quality-iso__stats div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
}

.quality-iso__stats dt {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(158, 196, 216, 0.85);
}

.quality-iso__stats dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.98rem;
}

.quality-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}

.quality-process__step {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.quality-process__step:last-child {
  border-bottom: 1px solid var(--line);
}

.quality-process__num {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1.2;
}

.quality-process__step h3 {
  margin: 0 0 0.35rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.quality-process__step p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 58ch;
}

.quality-pillars {
  display: grid;
  gap: 1.5rem 1.75rem;
}

@media (min-width: 700px) {
  .quality-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

.quality-pillar h3 {
  margin: 0 0 0.45rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.quality-pillar p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 42ch;
}

.quality-cta {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 800px) {
  .quality-cta {
    grid-template-columns: 1.2fr 1fr;
  }
}

.quality-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-start;
}

@media (min-width: 800px) {
  .quality-cta__actions {
    justify-content: flex-end;
  }
}

/* ??? Contact page ??? */
.contact-page {
  background: var(--paper, #f4f7f9);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  color: #f4f8fb;
  background: #071823;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 85% 15%, rgba(232, 93, 18, 0.26), transparent 55%),
    linear-gradient(155deg, #071823 0%, #0f3550 55%, #123a52 100%);
}

.contact-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 2.75rem;
}

.contact-hero__brand {
  margin: 0 0 0.7rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-hero__title {
  margin: 0 0 0.75rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.contact-hero__lead {
  margin: 0;
  max-width: 40ch;
  color: rgba(220, 232, 240, 0.88);
  line-height: 1.55;
  font-size: 1.02rem;
}

.contact-layout {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 2.75rem;
  }
}

.contact-channels {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.contact-channels li {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.contact-channels span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}

.contact-channels a {
  font-weight: 600;
  color: var(--ink);
}

.contact-channels a:hover {
  color: var(--accent);
}

.contact-channels small {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.contact-form-wrap__title {
  margin: 0 0 0.35rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-form-wrap__text {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.contact-alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.92rem;
  line-height: 1.4;
}

.contact-alert--ok {
  background: #e8f6ee;
  border: 1px solid #b7dfc5;
  color: #1d5c38;
}

.contact-alert--erro {
  background: #fdeeee;
  border: 1px solid #efc0c0;
  color: #8a2a2a;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form__grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__row {
  display: grid;
  gap: 0.35rem;
}

.contact-form__row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form__row input,
.contact-form__row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__row input:focus,
.contact-form__row textarea:focus {
  outline: none;
  border-color: rgba(74, 101, 120, 0.55);
  box-shadow: 0 0 0 3px rgba(15, 53, 80, 0.08);
}

.contact-form__row textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ??? Institutional / about ??? */
.about-page {
  background: var(--paper, #f4f7f9);
}

.about-hero {
  position: relative;
  overflow: hidden;
  color: #f4f8fb;
  background: #071823;
  min-height: min(70vh, 560px);
  display: grid;
  align-items: end;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 88% 18%, rgba(232, 93, 18, 0.28), transparent 55%),
    radial-gradient(ellipse 45% 40% at 10% 85%, rgba(74, 120, 150, 0.2), transparent 60%),
    linear-gradient(158deg, #071823 0%, #0f3550 50%, #123a52 100%);
}

.about-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 35%, transparent 95%);
}

.about-hero__orbit {
  position: absolute;
  width: min(42vw, 360px);
  aspect-ratio: 1;
  right: 10%;
  top: 16%;
  border: 1px solid rgba(232, 93, 18, 0.4);
  border-radius: 50%;
  animation: aboutOrbit 16s ease-in-out infinite;
}

@keyframes aboutOrbit {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.65; }
  50% { transform: translateY(10px) rotate(8deg); opacity: 1; }
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 6rem 0 3.25rem;
}

.about-hero__brand {
  margin: 0 0 0.75rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-hero__title {
  margin: 0 0 0.85rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.4rem, 3.1vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 16ch;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.92);
}

.about-hero__lead {
  margin: 0;
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(220, 232, 240, 0.88);
}

.about-intro {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-intro {
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2.75rem;
  }
}

.about-intro .section__text + .section__text {
  margin-top: 0.85rem;
}

.about-panel {
  background: linear-gradient(165deg, #0f3550 0%, #071823 100%);
  color: #e8f0f5;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel__label {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-panel__title {
  margin: 0 0 0.55rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.about-panel__text {
  margin: 0 0 1.15rem;
  color: rgba(220, 232, 240, 0.85);
  line-height: 1.5;
  font-size: 0.95rem;
}

.about-pillars {
  display: grid;
  gap: 1.5rem 1.75rem;
}

@media (min-width: 720px) {
  .about-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-pillar h3 {
  margin: 0 0 0.45rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.about-pillar p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.about-lines {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 800px) {
  .about-lines {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.about-lines__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.about-lines__list li {
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
  line-height: 1.4;
}

.about-lines__list li:last-child {
  border-bottom: 1px solid var(--line);
}

.about-cta {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 800px) {
  .about-cta {
    grid-template-columns: 1.2fr 1fr;
  }
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (min-width: 800px) {
  .about-cta__actions {
    justify-content: flex-end;
  }
}

/* ??? Quote / cota��o ??? */
.quote-page {
  background: var(--paper, #f4f7f9);
}

.quote-hero {
  position: relative;
  overflow: hidden;
  color: #f4f8fb;
  background: #071823;
}

.quote-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quote-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 80% 20%, rgba(232, 93, 18, 0.26), transparent 55%),
    linear-gradient(155deg, #071823 0%, #0f3550 55%, #123a52 100%);
}

.quote-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.quote-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 2.75rem;
}

.quote-hero__brand {
  margin: 0 0 0.7rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.quote-hero__title {
  margin: 0 0 0.75rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.quote-hero__lead {
  margin: 0;
  max-width: 42ch;
  color: rgba(220, 232, 240, 0.88);
  line-height: 1.55;
  font-size: 1.02rem;
}

.quote-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .quote-layout {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 2.5rem;
  }
}

.quote-list-panel__title {
  margin: 0 0 1rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.quote-empty {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.quote-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.quote-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.quote-items li:last-child {
  border-bottom: 0;
}

.quote-items strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.quote-items span {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
}

.quote-items__meta {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.quote-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.quote-form-wrap__title {
  margin: 0 0 0.35rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.quote-form-wrap__text {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.quote-form-wrap.is-locked .contact-form__fieldset {
  opacity: 0.55;
  pointer-events: none;
}

.quote-form-lock {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: #fff8f3;
  border: 1px solid #f0d2bf;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.quote-form-lock[hidden] {
  display: none !important;
}

.quote-form-lock a {
  font-weight: 600;
  color: var(--accent);
}

.contact-form__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.quote-help {
  margin: 1.15rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.quote-help a {
  font-weight: 600;
  color: var(--ink);
}

.quote-help a:hover {
  color: var(--accent);
}

.contact-form__actions button:disabled,
.contact-form__actions .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* P�gina obrigado ? p�s-envio da cota��o */
.thanks-page {
  min-height: 70vh;
}

.thanks-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem 2.75rem;
  color: var(--white);
  background: #0b2a3d;
}

.thanks-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thanks-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(232, 93, 18, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(160deg, #0b2a3d 0%, #143d56 55%, #0b2a3d 100%);
}

.thanks-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.thanks-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  animation: thanks-in 0.7s ease both;
}

.thanks-hero__brand {
  margin: 0 0 0.85rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.thanks-hero__badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.2rem 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb089;
  border-bottom: 1px solid rgba(255, 176, 137, 0.45);
}

.thanks-hero__title {
  margin: 0 0 0.85rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.thanks-hero__lead {
  margin: 0 auto 1.1rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.thanks-protocol {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.thanks-protocol strong {
  color: var(--white);
  font-weight: 600;
}

.thanks-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 860px) {
  .thanks-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.thanks-copy__text {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.thanks-contacts {
  padding: 1.35rem 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: thanks-in 0.7s ease 0.12s both;
}

.thanks-contacts__label {
  margin: 0 0 1rem;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.thanks-contacts__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thanks-contacts__list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.thanks-contacts__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.thanks-contacts__list span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.thanks-contacts__list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.thanks-contacts__list a:hover {
  color: var(--accent);
}

.thanks-contacts__list small {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

@keyframes thanks-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ?? Blog listing ?? */
.blog-page {
  background: var(--paper, #f2f5f8);
  padding-bottom: 0;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  color: #f4f8fb;
  padding: 3.5rem 0 3rem;
  background: var(--ink);
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blog-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 10% 20%, rgba(232, 93, 18, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 85%, rgba(120, 170, 200, 0.16), transparent 50%),
    linear-gradient(155deg, #0b2a3d 0%, #0f3550 50%, #0a2230 100%);
}

.blog-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.blog-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  will-change: transform;
}

.blog-hero__orb--a {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  top: -8%;
  right: 4%;
  background: radial-gradient(circle at 35% 35%, rgba(232, 93, 18, 0.38), rgba(232, 93, 18, 0.05) 48%, transparent 70%);
  animation: orbPulse 8s ease-in-out infinite alternate;
}

.blog-hero__orb--b {
  width: min(30vw, 240px);
  height: min(30vw, 240px);
  bottom: -6%;
  left: 8%;
  background: radial-gradient(circle at 40% 40%, rgba(120, 170, 200, 0.28), transparent 70%);
  animation: orbPulse 11s ease-in-out infinite alternate-reverse;
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  max-width: 42rem;
}

.blog-hero__brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}

.blog-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  text-transform: none;
}

.blog-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 48ch;
  color: rgba(244, 248, 251, 0.78);
  line-height: 1.55;
}

.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.blog-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.blog-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.blog-filters {
  position: sticky;
  top: var(--nav-h, 4.25rem);
  z-index: 20;
  background: rgba(242, 245, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 42, 61, 0.08);
}

.blog-filters__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.blog-filters__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  flex-shrink: 0;
}

.blog-filters__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 0.15rem;
  max-width: 100%;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line, #d5dde5);
  background: var(--white, #fff);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.blog-chip span {
  font-variant-numeric: tabular-nums;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #eef3f7;
  color: var(--steel-deep);
}

.blog-chip:hover {
  border-color: rgba(11, 42, 61, 0.28);
  color: var(--ink);
}

.blog-chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(11, 42, 61, 0.18);
}

.blog-chip.is-active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.blog-feed {
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
}

.blog-feed__crumb {
  margin-bottom: 1.5rem;
}

.blog-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .blog-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.75rem;
    align-items: start;
  }
}

.blog-featured {
  display: grid;
  gap: 0;
  margin-bottom: 1.75rem;
  background: var(--white, #fff);
  border: 1px solid var(--line, #d5dde5);
  border-radius: var(--radius, 6px);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.35s ease, opacity 0.35s ease;
}

@media (min-width: 800px) {
  .blog-featured {
    grid-template-columns: 1.15fr 1fr;
    min-height: 320px;
  }
}

.blog-featured:hover {
  border-color: rgba(11, 42, 61, 0.22);
  box-shadow: 0 16px 40px rgba(11, 42, 61, 0.1);
}

.blog-featured__media {
  display: block;
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, #c5d4e0, #e8eef3);
  overflow: hidden;
}

.blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.blog-featured:hover .blog-featured__media img {
  transform: scale(1.04);
}

.blog-featured__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232, 93, 18, 0.18), transparent 50%),
    linear-gradient(145deg, #0f3550, #1a4a66);
}

.blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.5rem 1.4rem 1.65rem;
}

@media (min-width: 800px) {
  .blog-featured__body {
    padding: 2rem 1.75rem;
  }
}

.blog-featured__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-featured__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: none;
}

.blog-featured__title a {
  color: var(--ink);
  text-decoration: none;
}

.blog-featured__title a:hover {
  color: var(--accent);
}

.blog-featured__excerpt {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.975rem;
  line-height: 1.55;
  max-width: 46ch;
}

.blog-featured__meta {
  margin: 0 0 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--steel);
}

.blog-featured .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-grid--related {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .blog-grid--related {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white, #fff);
  border: 1px solid var(--line, #d5dde5);
  border-radius: var(--radius, 6px);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.35s ease, opacity 0.35s ease;
}

.blog-card:hover {
  border-color: rgba(11, 42, 61, 0.22);
  box-shadow: 0 12px 32px rgba(11, 42, 61, 0.09);
  transform: translateY(-3px);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #d8e2ea, #edf2f6);
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(11, 42, 61, 0.28);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem 1.25rem;
  flex: 1;
}

.blog-card__meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.blog-card__badge {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0.12rem 0.45rem;
  background: rgba(232, 93, 18, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-transform: none;
}

.blog-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--accent);
}

.blog-card__excerpt {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.925rem;
  line-height: 1.5;
  flex: 1;
}

.blog-card__more {
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--steel-deep);
  text-decoration: none;
}

.blog-card__more:hover {
  color: var(--accent);
}

[data-blog-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-blog-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s ease var(--blog-delay, 0ms),
    transform 0.55s ease var(--blog-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  .blog-hero__orb,
  .blog-card:hover,
  .blog-card:hover .blog-card__media img,
  .blog-featured:hover .blog-featured__media img {
    animation: none;
    transform: none;
  }

  [data-blog-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-blog-reveal].is-visible {
    transition: none;
  }
}

.blog-empty {
  padding: 2rem;
  background: var(--white, #fff);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.blog-pagination__status {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.blog-aside {
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .blog-aside {
    position: sticky;
    top: calc(var(--nav-h, 4.25rem) + 1.25rem);
  }
}

.blog-aside__panel {
  padding: 1.25rem 1.2rem 1.35rem;
  background: var(--ink);
  color: #f4f8fb;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 42, 61, 0.2);
}

.blog-aside__panel--soft {
  background: var(--white, #fff);
  color: inherit;
  border-color: var(--line);
}

.blog-aside__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 93, 18, 0.95);
}

.blog-aside__heading {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #fff;
  text-transform: none;
}

.blog-aside__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(244, 248, 251, 0.72);
}

.blog-aside__panel .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.blog-aside__panel .btn:last-child {
  margin-bottom: 0;
}

.blog-aside__panel .btn--outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

.blog-aside__panel .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.blog-aside__panel--soft .btn--outline {
  border-color: var(--line);
  color: var(--ink);
}

.blog-aside__panel--soft .btn--outline:hover {
  background: #eef3f7;
  border-color: var(--ink);
}

.blog-aside__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.blog-aside__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-aside__panel--soft .blog-aside__cats {
  border: 0;
  border-radius: 0;
}

.blog-aside__cats a {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.blog-aside__cats li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-aside__cats li:first-child a {
  padding-top: 0;
}

.blog-aside__cats a:hover,
.blog-aside__cats a[aria-current="page"] {
  color: var(--ink);
}

.blog-aside__cats span {
  font-variant-numeric: tabular-nums;
  color: var(--steel);
  font-size: 0.8rem;
}

.blog-cta-band {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 3rem 0 3.25rem;
  color: #f4f8fb;
  background: var(--ink);
}

.blog-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 12% 20%, rgba(232, 93, 18, 0.2), transparent 55%),
    linear-gradient(155deg, #0b2a3d 0%, #0f3550 55%, #0a2230 100%);
}

.blog-cta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 800px) {
  .blog-cta {
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
  }
}

.blog-cta__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}

.blog-cta__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: rgba(244, 248, 251, 0.92);
  text-transform: none;
}

.blog-cta__text {
  margin: 0;
  max-width: 46ch;
  color: rgba(244, 248, 251, 0.7);
  line-height: 1.55;
  font-size: 0.98rem;
}

.blog-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

@media (min-width: 800px) {
  .blog-cta__actions {
    justify-content: flex-end;
  }
}

.blog-cta-band .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.blog-cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.blog-cta-band .btn {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-cta-band .btn:hover {
  transform: translateY(-2px);
}

.blog-cta-band .btn--accent:hover {
  box-shadow: 0 10px 24px rgba(232, 93, 18, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .blog-cta-band .btn {
    transition: none;
  }

  .blog-cta-band .btn:hover {
    transform: none;
  }
}
/* —— Blog post —— */
.blog-page--post {
  padding-bottom: 0;
}

.blog-progress {
  position: fixed;
  top: var(--nav-h, 84px);
  left: 0;
  right: 0;
  z-index: 90;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.blog-progress__bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f08a4a);
  transform-origin: left center;
  transition: width 0.08s linear;
}

.blog-post-empty {
  padding: 4rem 0 5rem;
}

.blog-post-empty__inner {
  max-width: 36rem;
}

.blog-post-empty__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.blog-post-empty__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  text-transform: none;
}

.blog-post-empty__text {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.blog-article__hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.25rem;
  color: #f4f8fb;
  background: var(--ink);
}

.blog-article__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blog-article__hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 8% 15%, rgba(232, 93, 18, 0.2), transparent 55%),
    radial-gradient(ellipse 40% 50% at 92% 80%, rgba(120, 170, 200, 0.14), transparent 50%),
    linear-gradient(155deg, #0b2a3d 0%, #0f3550 52%, #0a2230 100%);
}

.blog-article__hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 35%, transparent 100%);
}

.blog-article__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.blog-article__crumb {
  margin-bottom: 1.25rem;
  color: rgba(244, 248, 251, 0.55);
}

.blog-article__hero .product-breadcrumb a {
  color: rgba(244, 248, 251, 0.72);
}

.blog-article__hero .product-breadcrumb a:hover {
  color: #fff;
}

.blog-article__hero .product-breadcrumb span {
  color: rgba(244, 248, 251, 0.45);
}

.blog-article__brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}

.blog-article__cats {
  margin: 0 0 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-article__cat {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 248, 251, 0.9);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-article__cat:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.blog-article__title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #fff;
  text-transform: none;
}

.blog-article__deck {
  margin: 0 0 1.35rem;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(244, 248, 251, 0.76);
}

.blog-article__byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.blog-article__avatar {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(232, 93, 18, 0.95), rgba(232, 93, 18, 0.55));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.blog-article__byline-text {
  min-width: 0;
}

.blog-article__author {
  margin: 0 0 0.15rem;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: baseline;
}

.blog-article__role {
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(244, 248, 251, 0.62);
}

.blog-article__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  font-size: 0.82rem;
  color: rgba(244, 248, 251, 0.62);
}

.blog-article__cover {
  margin-top: -0.25rem;
  padding: 1.25rem 0 0;
  background: var(--paper, #f2f5f8);
  overflow: hidden;
}

.blog-article__cover .section__inner {
  max-width: 100%;
}

.blog-article__figure {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius, 6px);
  border: 1px solid rgba(11, 42, 61, 0.1);
  box-shadow: 0 18px 48px rgba(11, 42, 61, 0.12);
  background: #d8e2ea;
  aspect-ratio: 16 / 9;
}

.blog-article__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .blog-article__cover {
    padding: 1rem 0 0;
  }

  .blog-article__figure {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    box-shadow: 0 10px 28px rgba(11, 42, 61, 0.1);
  }
}

@media (max-width: 480px) {
  .blog-article__figure {
    aspect-ratio: 1 / 1;
  }
}

.blog-article__layout {
  display: grid;
  gap: 2.25rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 960px) {
  .blog-article__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.75rem;
    align-items: start;
  }
}

.blog-article__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line, #d5dde5);
}

.blog-article__back {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel-deep);
  text-decoration: none;
}

.blog-article__back:hover {
  color: var(--accent);
}

.blog-article__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.blog-article__share-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-right: 0.15rem;
}

.blog-article__share-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line, #d5dde5);
  background: var(--white, #fff);
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.blog-article__share-btn:hover,
.blog-article__share-btn.is-copied {
  border-color: var(--ink);
  color: var(--ink);
  background: #eef3f7;
}

.blog-article__content {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink);
  max-width: 68ch;
}

.blog-article__content > *:first-child {
  margin-top: 0;
}

.blog-article__content h2,
.blog-article__content h3,
.blog-article__content h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
  line-height: 1.25;
}

.blog-article__content h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
}

.blog-article__content h3 {
  font-size: 1.2rem;
}

.blog-article__content p {
  margin: 0 0 1.15rem;
}

.blog-article__content ul,
.blog-article__content ol {
  margin: 0 0 1.15rem;
  padding-left: 1.3rem;
}

.blog-article__content li + li {
  margin-top: 0.4rem;
}

.blog-article__content blockquote {
  margin: 1.5rem 0;
  padding: 0.85rem 0 0.85rem 1.15rem;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  font-size: 1.02rem;
  background: linear-gradient(90deg, rgba(232, 93, 18, 0.06), transparent 70%);
}

.blog-article__content blockquote p:last-child {
  margin-bottom: 0;
}

.blog-article__content a {
  color: var(--accent);
  font-weight: 600;
}

.blog-article__content a:hover {
  text-decoration: underline;
}

.blog-article__content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  border-radius: var(--radius);
  margin: 1.25rem auto;
  border: 1px solid rgba(11, 42, 61, 0.08);
}

.blog-article__content figure {
  margin: 1.25rem 0;
  max-width: 100%;
}

.blog-article__content figure img {
  margin: 0 auto;
}

.blog-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.blog-article__content th,
.blog-article__content td {
  border: 1px solid var(--line);
  padding: 0.55rem 0.7rem;
  text-align: left;
}

.blog-article__content th {
  background: #e8eef3;
  font-weight: 700;
}

.blog-article__content pre,
.blog-article__content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.blog-article__content pre {
  overflow-x: auto;
  padding: 1rem 1.1rem;
  background: #0f3550;
  color: #e8eef3;
  border-radius: var(--radius);
  margin: 1.25rem 0;
}

.blog-article__content :not(pre) > code {
  padding: 0.12rem 0.35rem;
  background: #e8eef3;
  border-radius: 3px;
}

.blog-article__tags {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.blog-article__tags-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.blog-article__tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-article__tags span {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: var(--white, #fff);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.blog-article__side {
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .blog-article__side {
    position: sticky;
    top: calc(var(--nav-h, 84px) + 1.5rem);
  }
}

.blog-article__side-note {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.blog-article__toc-card .btn {
  width: 100%;
  justify-content: center;
}

.blog-related {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
  background: var(--paper, #f2f5f8);
}

.blog-related__title {
  text-transform: none;
  letter-spacing: -0.02em;
}

.kw-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin: 0 0 1.5rem;
}

.kw-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius, 6px);
  border: 1px solid rgba(11, 42, 61, 0.1);
  background: #d8e2ea;
}

.kw-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.kw-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}

.kw-body > *:first-child {
  margin-top: 0;
}


/* —— FAQ —— */
.faq-page {
  padding-bottom: 0;
  background: var(--paper, #f2f5f8);
}

.faq-hero {
  position: relative;
  overflow: hidden;
  color: #f4f8fb;
  padding: 3.25rem 0 2.85rem;
  background: var(--ink);
}

.faq-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 10% 15%, rgba(232, 93, 18, 0.22), transparent 55%),
    linear-gradient(155deg, #0b2a3d 0%, #0f3550 52%, #0a2230 100%);
}

.faq-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.faq-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  max-width: 42rem;
}

.faq-hero__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.faq-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #fff;
  text-transform: none;
}

.faq-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 48ch;
  color: rgba(244, 248, 251, 0.78);
  line-height: 1.55;
}

.faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.faq-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.faq-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.faq-jump {
  position: sticky;
  top: var(--nav-h, 84px);
  z-index: 20;
  background: rgba(242, 245, 248, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 42, 61, 0.08);
}

.faq-jump__inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  scrollbar-width: thin;
}

.faq-jump__chip {
  flex-shrink: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white, #fff);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-jump__chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.faq-body {
  padding-top: 2rem;
  padding-bottom: 2.75rem;
}

.faq-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 2.75rem;
    align-items: start;
  }
}

.faq-group {
  margin-bottom: 2.25rem;
  scroll-margin-top: calc(var(--nav-h, 84px) + 4.5rem);
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white, #fff);
  border: 1px solid var(--line, #d5dde5);
  border-radius: var(--radius, 6px);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(11, 42, 61, 0.22);
  box-shadow: 0 10px 28px rgba(11, 42, 61, 0.07);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  background: #eef3f7;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item__icon::before {
  width: 0.55rem;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 0.55rem;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__a {
  padding: 0 1.1rem 1.15rem;
}

.faq-item__a p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.98rem;
  max-width: 62ch;
}

.faq-aside {
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .faq-aside {
    position: sticky;
    top: calc(var(--nav-h, 84px) + 4.75rem);
  }
}

.faq-aside__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-aside__links a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}

.faq-aside__links li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-aside__links li:first-child a {
  padding-top: 0;
}

.faq-aside__links a:hover {
  color: var(--ink);
}

/* —— Legal / Privacidade —— */
.legal-page {
  padding-bottom: 0;
  background: var(--paper, #f2f5f8);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  color: #f4f8fb;
  padding: 3rem 0 2.5rem;
  background: var(--ink);
}

.legal-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.legal-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 10% 15%, rgba(232, 93, 18, 0.2), transparent 55%),
    linear-gradient(155deg, #0b2a3d 0%, #0f3550 52%, #0a2230 100%);
}

.legal-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  max-width: 44rem;
}

.legal-hero__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #fff;
}

.legal-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  text-transform: none;
}

.legal-hero__lead {
  margin: 0 0 0.85rem;
  max-width: 52ch;
  color: rgba(244, 248, 251, 0.78);
  line-height: 1.55;
}

.legal-hero__meta {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(244, 248, 251, 0.55);
}

.legal-body {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.legal-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .legal-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 2.75rem;
    align-items: start;
  }
}

.legal-crumb {
  margin-bottom: 1.5rem;
}

.legal-content {
  background: var(--white, #fff);
  border: 1px solid var(--line, #d5dde5);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 2rem;
}

@media (min-width: 720px) {
  .legal-content {
    padding: 2rem 2.1rem 2.35rem;
  }
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  margin: 1.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--ink);
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

.legal-content p {
  margin: 0 0 1rem;
}

.legal-content ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
}

.legal-content a:not(.btn):hover {
  text-decoration: underline;
}

.legal-content .btn--accent,
.legal-content .btn--ink,
.info-buy-cta .btn--accent,
.info-buy-cta .btn--ink {
  color: #fff;
}

.legal-content .btn--accent:hover,
.legal-content .btn--ink:hover,
.info-buy-cta .btn--accent:hover,
.info-buy-cta .btn--ink:hover {
  color: #fff;
  text-decoration: none;
}

.legal-content code {
  font-size: 0.88em;
  padding: 0.1rem 0.35rem;
  background: #eef3f7;
  border-radius: 3px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.15rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #e8eef3;
  color: var(--ink);
  font-weight: 700;
}

.legal-aside {
  display: grid;
  gap: 1rem;
}

@media (min-width: 960px) {
  .legal-aside {
    position: sticky;
    top: calc(var(--nav-h, 84px) + 1.25rem);
  }
}

.legal-aside .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.legal-aside .btn:last-child {
  margin-bottom: 0;
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__bottom a:hover {
  color: #fff;
}

/* —— Cookie banner —— */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0.85rem 0.85rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.cookie-banner:not([hidden]) {
  pointer-events: auto;
}

.cookie-banner__inner {
  width: min(100%, var(--max, 1120px));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.15rem;
  background: rgba(11, 42, 61, 0.97);
  color: #f4f8fb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius, 6px);
  box-shadow: 0 16px 40px rgba(8, 24, 36, 0.35);
}

@media (min-width: 800px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 1.2rem 1.4rem;
  }
}

.cookie-banner__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(244, 248, 251, 0.78);
  max-width: 62ch;
}

.cookie-banner__text a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.cookie-banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.cookie-banner__btn {
  white-space: nowrap;
}

@media (max-width: 799px) {
  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

body.cookie-banner-open .whatsapp-float {
  bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 800px) {
  body.cookie-banner-open .whatsapp-float {
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* —— Informações (lista) —— */
.info-page {
  padding-bottom: 0;
  background: var(--paper, #f2f5f8);
}

.info-hero {
  position: relative;
  overflow: hidden;
  color: #f4f8fb;
  padding: 3.25rem 0 2.85rem;
  background: var(--ink);
}

.info-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.info-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 10% 15%, rgba(232, 93, 18, 0.22), transparent 55%),
    linear-gradient(155deg, #0b2a3d 0%, #0f3550 52%, #0a2230 100%);
}

.info-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.info-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  max-width: 42rem;
}

.info-hero__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.info-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: #fff;
  text-transform: none;
}

.info-hero__lead {
  margin: 0 0 1.35rem;
  max-width: 48ch;
  color: rgba(244, 248, 251, 0.78);
  line-height: 1.55;
}

.info-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.info-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.info-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.info-list-section {
  padding-top: 1.75rem;
  padding-bottom: 2.75rem;
}

.info-list__title {
  text-transform: none;
  letter-spacing: -0.02em;
}

.info-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white, #fff);
  border: 1px solid var(--line, #d5dde5);
  border-radius: var(--radius, 6px);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
  border-color: rgba(11, 42, 61, 0.22);
  box-shadow: 0 12px 32px rgba(11, 42, 61, 0.09);
  transform: translateY(-3px);
}

.info-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #c5d4e0, #e8eef3);
  overflow: hidden;
}

.info-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.info-card:hover .info-card__media img {
  transform: scale(1.04);
}

.info-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(11, 42, 61, 0.28);
}

.info-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.05rem 1.1rem 1.2rem;
  flex: 1;
}

.info-card__kw {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.info-card__title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}

.info-card:hover .info-card__title {
  color: var(--accent);
}

.info-card__text {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.info-card__more {
  margin-top: 0.35rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--steel-deep);
}

.info-page--detail .legal-hero .product-breadcrumb a {
  color: rgba(244, 248, 251, 0.72);
}

.info-page--detail .legal-hero .product-breadcrumb a:hover {
  color: #fff;
}

.info-page--detail .legal-hero .product-breadcrumb span {
  color: rgba(244, 248, 251, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .info-card:hover,
  .info-card:hover .info-card__media img {
    transform: none;
  }
}

.info-detail__kw {
  margin: 0 0 0.55rem;
  display: inline-block;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 248, 251, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-buy-cta {
  margin-top: 2.25rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius, 6px);
  border: 1px solid rgba(11, 42, 61, 0.12);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(232, 93, 18, 0.1), transparent 55%),
    #e8eef3;
}

.info-buy-cta__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.info-buy-cta__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.info-buy-cta__text {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 52ch;
}

.info-buy-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.info-buy-cta__contacts {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(11, 42, 61, 0.12);
  display: grid;
  gap: 0.85rem;
}

.info-buy-cta__contacts li {
  display: grid;
  gap: 0.2rem;
}

.info-buy-cta__contacts strong {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.info-buy-cta__contacts a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.info-buy-cta__contacts a:hover {
  color: var(--accent);
}

.info-aside-contacts {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.info-aside-contacts li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.info-aside-contacts li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-aside-contacts span:first-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.info-aside-contacts a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.info-aside-contacts a:hover {
  color: var(--accent);
}
