@font-face {
  font-family: 'Manrope';
  font-display: swap;
}

:root {
  /* Cores institucionais */
  --white: #ffffff;
  --black: #000000;
  --red: #ba1c1c;
  --red-600: #a81717;
  --red-700: #8f1414;
  --red-050: #fdecec;

  /* Neutros */
  --ink: #101013;
  /* texto principal */
  --ink-2: #3a3a41;
  /* texto secundário */
  --muted: #6b6b74;
  /* texto auxiliar */
  --line: #e7e7ea;
  /* bordas */
  --surface: #ffffff;
  --surface-2: #f6f6f8;
  /* seções alternadas */
  --surface-3: #eeeef1;
  /* placeholders */
  --dark: #0c0c0e;
  /* seções escuras */
  --dark-2: #16161a;
  /* cards escuros */

  /* Tipografia */
  --font-head: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* Espaçamento / layout */
  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 4vw, 6.5rem);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Sombras discretas */
  --shadow-sm: 0 1px 2px rgba(16, 16, 19, .06), 0 1px 3px rgba(16, 16, 19, .05);
  --shadow: 0 6px 24px rgba(16, 16, 19, .08);
  --shadow-lg: 0 18px 50px rgba(16, 16, 19, .14);

  /* Transições */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-fast: .18s;
  --t: .28s;

  --header-h: 76px;
}

/* 02 · RESET / BASE ------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 03 · TIPOGRAFIA --------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  color: var(--ink-2);
}

.icon {
  width: 24px;
  height: 24px;
  flex: none;
}

/* 04 · LAYOUT ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.section {
  padding-block: var(--section-y);
}

.section--alt {
  background: var(--surface-2);
}

.section--dark {
  background: var(--dark);
  color: #e9e9ee;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark p {
  color: #b9b9c2;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-top: .8rem;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: var(--gap);
}

/* 05 · BOTÕES ------------------------------------------------------------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  --btn-bd: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
  will-change: transform;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(186, 28, 28, .28);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  --btn-bd: var(--red);
}

.btn--primary:hover {
  --btn-bg: var(--red-600);
  --btn-bd: var(--red-600);
}

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
}

.btn--dark:hover {
  box-shadow: 0 10px 22px rgba(16, 16, 19, .28);
}

.btn--wa {
  --btn-bg: #22a45b;
  --btn-fg: #fff;
  --btn-bd: #22a45b;
}

.btn--wa:hover {
  --btn-bg: #1c9150;
  --btn-bd: #1c9150;
  box-shadow: 0 10px 22px rgba(34, 164, 91, .32);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line);
}

.btn--ghost:hover {
  --btn-bd: var(--ink);
  box-shadow: none;
}

.btn--outline {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  --btn-bd: var(--line);
}

.btn--outline:hover {
  --btn-bd: var(--ink);
  box-shadow: none;
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .55);
}

.btn--outline-light:hover {
  --btn-bd: #fff;
  box-shadow: none;
}

.btn--sm {
  padding: .6rem 1.05rem;
  font-size: .86rem;
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 1rem 1.9rem;
  font-size: 1.05rem;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--red);
}

.textlink .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--t) var(--ease);
}

.textlink:hover .icon {
  transform: translateX(4px);
}

/* 06 · PLACEHOLDER DE MÍDIA (espaço cinza p/ imagem futura) --------------- */
.media-ph {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--surface-3), #e4e4e8);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #cfcfd6;
}

.media-ph--flat {
  border-radius: 0;
}

.media-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, .02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .02) 50%, rgba(0, 0, 0, .02) 75%, transparent 75%);
  background-size: 22px 22px;
  pointer-events: none;
}

.media-ph__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  color: #9a9aa4;
  text-align: center;
  padding: .4rem .8rem;
}

.section--dark .media-ph {
  background: linear-gradient(135deg, #24242a, #1a1a1f);
  border-color: #34343c;
}

.section--dark .media-ph__label {
  color: #7b7b86;
}

/* 07 · HEADER / MENU ------------------------------------------------------ */
.topbar {
  background: var(--dark);
  color: #cfcfd6;
  font-size: .84rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-block: .35rem;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #cfcfd6;
  transition: color var(--t);
}

.topbar a:hover {
  color: #fff;
}

.topbar .icon {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.topbar__info {
  display: flex;
  gap: 1.4rem;
}

.topbar__info li:nth-child(3) {
  display: none;
}

.topbar__social {
  display: none;
  gap: .9rem;
}

.topbar__social a:hover {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0);
  backdrop-filter: saturate(160%) blur(10px);
  transition: box-shadow var(--t), background var(--t);
  color: #fff;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand-logo {
  height: 40px;
  width: auto;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: .55rem .8rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: #fff;
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .3rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}

.nav__link:hover {
  color: var(--red);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: var(--red-600);
}

.nav__item {
  position: relative;
  list-style: none;
}

.nav__item--has-sub .nav__link {
  gap: .25rem;
  cursor: pointer;
}

.nav__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}

.nav__item--has-sub:hover .nav__chevron,
.nav__item--has-sub:focus-within .nav__chevron {
  transform: rotate(90deg);
}

.nav__sub {
  position: absolute;
  top: calc(100% - .15rem);
  left: 0;
  min-width: 180px;
  padding: .45rem;
  margin: 0;
  list-style: none;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(.35rem);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 80;
}

.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub-link {
  display: block;
  padding: .65rem .85rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  transition: background var(--t), color var(--t);
}

.nav__sub-link:hover,
.nav__sub-link.is-active {
  background: rgba(186, 28, 28, .14);
  color: var(--red);
}

.mobile-nav__group {
  border-bottom: 1px solid var(--line);
  padding: .35rem 0 .55rem;
}

.mobile-nav__group-label {
  display: block;
  padding: .55rem .6rem .2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-nav__group .mobile-nav__link {
  border-bottom: 0;
  padding-left: 1rem;
  font-size: 1.02rem;
}

.header__cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 20px;
  color: white;
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.nav-toggle .icon {
  width: 24px;
  height: 24px;
}

/* Menu mobile (off-canvas) — abre/fecha via checkbox (funciona sem JS) */
.nav-toggle-cb {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  background: transparent;
}

.nav-toggle-cb:checked~.mobile-nav {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(6, 6, 8, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--t);
  border: 0;
  cursor: pointer;
}

.nav-toggle-cb:checked~.mobile-nav .mobile-nav__overlay {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--black);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transform: translateX(100%);
  transition: transform var(--t) var(--ease);
  overflow-y: auto;
}

.nav-toggle-cb:checked~.mobile-nav .mobile-nav__panel {
  transform: translateX(0);
}

/* Trava a rolagem de fundo quando o menu está aberto (navegadores com :has) */
html:has(.nav-toggle-cb:checked) {
  overflow: hidden;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
}

.mobile-nav__top .brand-logo {
  height: 34px;
}

.mobile-nav__close {
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem .6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.mobile-nav__link .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.mobile-nav__link.is-active {
  color: var(--red);
}

.mobile-nav__cta {
  margin-top: 1rem;
  display: grid;
  gap: .6rem;
}

body.no-scroll {
  overflow: hidden;
}

/* 08 · HERO --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.hero__viewport {
  overflow: hidden;
}

.hero__track {
  display: flex;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: clamp(28rem, 72vh, 38rem);
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg .media-ph {
  height: 100%;
  border: none;
  border-radius: 0;
  background: linear-gradient(120deg, #1a1a1f, #0c0c0e);
}

.hero__bg .media-ph::after {
  opacity: .4;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 90% at 80% 10%, rgba(186, 28, 28, .28), transparent 55%),
    linear-gradient(90deg, rgba(8, 8, 10, .94) 0%, rgba(8, 8, 10, .78) 45%, rgba(8, 8, 10, .35) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3.5rem, 5vw, 7rem);
  padding-bottom: clamp(4.5rem, 6vw, 8rem);
}

.hero__eyebrow {
  color: #ff6b6b;
}

.hero h1,
.hero__heading {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 25ch;
}

.hero h1 .accent,
.hero__heading .accent {
  color: var(--red);
}

.hero__sub {
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #c9c9d2;
  max-width: 60ch;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}

.hero__trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #b6b6c0;
  font-size: .9rem;
}

.hero__trust .icon {
  color: #35c06e;
  width: 20px;
  height: 20px;
}

.hero__controls {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding-inline: 1rem;
  pointer-events: none;
}

.hero__nav,
.hero__dot {
  pointer-events: auto;
}

.hero__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(8, 8, 10, .45);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero__nav:hover {
  background: rgba(186, 28, 28, .85);
  border-color: transparent;
}

.hero__nav .icon {
  width: 18px;
  height: 18px;
}

.hero__nav--prev .icon {
  transform: rotate(180deg);
}

.hero__dots {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-height: 42px;
  padding: 0 .35rem;
}

.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.hero__dot.is-active {
  width: 26px;
  background: #fff;
}

.hero__dot:focus-visible,
.hero__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .hero__slide {
    min-height: auto;
  }

  .hero__controls {
    bottom: .75rem;
  }

  .hero__nav {
    width: 38px;
    height: 38px;
  }
}

/* 09 · INDICADORES -------------------------------------------------------- */
.stats {
  position: relative;
  z-index: 3;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -1px;
  box-shadow: var(--shadow);
}

.stat {
  background: var(--white);
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--ink);
  line-height: 1;
}

.stat__num .u {
  color: var(--red);
}

.stat__label {
  margin-top: .4rem;
  font-size: .84rem;
  color: var(--muted);
}

/* 10 · PÚBLICOS ATENDIDOS ------------------------------------------------- */
.publics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}

.public {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex: 0 1 min(100%, 360px);
  max-width: min(100%, 360px);
  min-width: 0;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.public:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.public__ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 10px;
  background: var(--red-050);
  color: var(--red);
}

.public span {
  min-width: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.35;
  overflow-wrap: break-word;
}

/* 11 · DIFERENCIAIS ------------------------------------------------------- */
.features {
  grid-template-columns: 1fr;
}

.feature {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.feature__ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  margin-bottom: 1rem;
  transition: background var(--t);
}

.feature:hover .feature__ico {
  background: var(--red);
}

.feature__ico .icon {
  width: 26px;
  height: 26px;
}

.feature h3 {
  margin-bottom: .45rem;
}

.feature p {
  font-size: .96rem;
}

/* Missão, visão e valores (página Empresa) */
.mvv-mv {
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

.mvv-values-head {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.mvv-values-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.mvv-values {
  grid-template-columns: 1fr;
}

/* 12 · CATEGORIAS --------------------------------------------------------- */
.cats {
  grid-template-columns: 1fr;
}

.cat {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}

.cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cat__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cat__media .media-ph {
  height: 100%;
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, #26262c, #121216);
}

.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 10, 12, .15), rgba(10, 10, 12, .82));
  transition: background var(--t);
}

.cat:hover::after {
  background: linear-gradient(180deg, rgba(186, 28, 28, .25), rgba(10, 10, 12, .85));
}

.cat__body {
  position: relative;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  gap: .3rem;
}

.cat__ico {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(4px);
  color: #fff;
}

.cat h3 {
  color: #fff;
}

.cat__desc {
  font-size: .9rem;
  color: #d5d5dc;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat__go {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
}

.cat__go .icon {
  width: 18px;
  height: 18px;
  color: var(--red);
  transition: transform var(--t) var(--ease);
}

.cat:hover .cat__go .icon {
  transform: translateX(5px);
}

/* 13 · CARDS DE PRODUTO --------------------------------------------------- */
.products {
  grid-template-columns: 1fr;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card__media .media-ph {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
}

.product-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.product-card__tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.1rem 1.1rem 1.3rem;
  flex: 1;
}

.product-card__cat {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}

.product-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .9rem;
  font-size: .82rem;
  color: var(--muted);
  margin-top: .1rem;
}

.product-card__meta b {
  color: var(--ink-2);
  font-weight: 600;
}

.product-card__actions {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.product-card__actions .btn {
  width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
}

/* 14 · MARCAS ------------------------------------------------------------- */
.brands {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.brands:hover .brands__track {
  animation-play-state: paused;
}

.brand-chip {
  display: grid;
  place-items: center;
  min-width: 170px;
  height: 84px;
  padding: 1rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--ink-2);
  transition: color var(--t), border-color var(--t), box-shadow var(--t);
}

.brand-chip:hover {
  color: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Grade estática (página Marcas) */
.brands-grid {
  grid-template-columns: repeat(2, 1fr);
}

.brands-grid .brand-chip {
  min-width: 0;
  width: 100%;
  height: 110px;
}

/* 15 · SOBRE -------------------------------------------------------------- */
.about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__media .media-ph {
  aspect-ratio: 4/3;
}

.about__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-gallery {
  display: grid;
  gap: clamp(.75rem, 2vw, 1rem);
}

.about-gallery__stage img,
.about-gallery__stage video {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

.about-gallery__stage img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-gallery__stage video {
  aspect-ratio: 16/9;
  background: var(--ink);
}

.about-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.about-gallery__thumb {
  position: relative;
  width: 92px;
  height: 69px;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.about-gallery__thumb:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.about-gallery__thumb:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.about-gallery__thumb-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery__thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12, 12, 14, .42);
  color: var(--white);
  pointer-events: none;
}

.about-gallery__thumb-play .icon {
  width: 28px;
  height: 28px;
}

.about__list {
  display: grid;
  gap: .7rem;
  margin: 1.4rem 0 1.8rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--ink-2);
}

.about__list .icon {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: none;
  margin-top: .1rem;
}

/* 16 · PROCESSO ----------------------------------------------------------- */
.process {
  grid-template-columns: 1fr;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t), box-shadow var(--t);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step__num {
  counter-increment: step;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step__num::before {
  content: counter(step, decimal-leading-zero);
}

.step h3 {
  margin-bottom: .4rem;
}

.step p {
  font-size: .95rem;
}

/* 17 · FAQ / ACCORDION ---------------------------------------------------- */
.accordion {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: .65rem;
}

.accordion__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}

.accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  border-color: rgba(186, 28, 28, .28);
  box-shadow: var(--shadow-sm);
}

.accordion__heading {
  margin: 0;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--t);
}

.accordion__trigger:hover,
.accordion__trigger:focus-visible {
  color: var(--red);
}

.accordion__icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--muted);
  transition: transform var(--t) var(--ease), color var(--t);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
  color: var(--red);
}

.accordion__panel {
  padding: 0 1.25rem 1.2rem;
  color: var(--ink-2);
  font-size: .95rem;
  line-height: 1.65;
}

.accordion__panel p {
  margin: 0;
}

.accordion__panel a {
  color: var(--red);
  font-weight: 600;
}

.accordion__panel a:hover {
  text-decoration: underline;
}

/* 18 · DEPOIMENTOS -------------------------------------------------------- */
.testimonials {
  grid-template-columns: 1fr;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem;
  border-radius: var(--radius);
  background: var(--dark-2);
  border: 1px solid #26262d;
}

.testimonial__quote {
  color: var(--red);
}

.testimonial__quote .icon {
  width: 34px;
  height: 34px;
}

.testimonial p {
  color: #d7d7de;
  font-size: 1rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: auto;
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f2f37, #1c1c22);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
}

.testimonial__name {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: .98rem;
}

.testimonial__role {
  font-size: .82rem;
  color: #9a9aa4;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #f6b100;
}

.stars .icon {
  width: 16px;
  height: 16px;
}

/* 18 · FAIXA CTA ---------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding-block: 20px;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 140% at 100% 0%, rgba(0, 0, 0, .28), transparent 60%);
}

.cta-band__inner {
  position: relative;
  display: grid;
  gap: 1.6rem;
  align-items: center;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
  max-width: 60ch;
  margin-inline: auto;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

.cta-band .btn--primary {
  --btn-bg: #fff;
  --btn-fg: var(--red);
  --btn-bd: #fff;
}

.cta-band .btn--primary:hover {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

/* 19 · RODAPÉ ------------------------------------------------------------- */
.footer {
  background: #08080a;
  color: #a9a9b3;
}

.footer__top {
  display: grid;
  gap: 2.4rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer__brand .brand-logo {
  height: 42px;
  width: auto;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: .95rem;
  color: #9a9aa4;
  max-width: 40ch;
}

.footer__social {
  display: flex;
  gap: .7rem;
  margin-top: 1.4rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #141418;
  color: #cfcfd6;
  border: 1px solid #22222a;
  transition: background var(--t), color var(--t), transform var(--t);
}

.footer__social a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.footer__col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0;
}

.footer__col ul {
  display: grid;
  gap: .7rem;
}

.footer__col a,
.footer__col li {
  font-size: .92rem;
  color: #a9a9b3;
  transition: color var(--t);
}

.footer__col a:hover {
  color: #fff;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.footer__contact .icon {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: none;
  margin-top: .15rem;
}

.footer__map .media-ph {
  aspect-ratio: 16/10;
}

.footer__bottom {
  border-top: 1px solid #1b1b22;
  padding-block: 1.4rem;
  display: grid;
  gap: .4rem;
  text-align: center;
  font-size: .84rem;
  color: #7d7d88;
}

.footer__bottom a {
  color: #a9a9b3;
}

.footer__bottom a:hover {
  color: #fff;
}

/* Selos de confiança */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  padding-block: 2rem;
  border-top: 1px solid #1b1b22;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
}

.trust-badge__ico {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #141418;
  color: var(--red);
  border: 1px solid #22222a;
}

.trust-badge strong {
  color: #fff;
  font-family: var(--font-head);
  font-size: .95rem;
}

.trust-badge span {
  font-size: .8rem;
  color: #85858f;
}

/* 21 · BREADCRUMB / PAGE HERO --------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 90% 0%, rgba(186, 28, 28, .30), transparent 55%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: #c4c4ce;
  margin-top: .8rem;
  max-width: 80ch;
}

.breadcrumb {
  margin-bottom: 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: #b6b6c0;
}

.breadcrumb a {
  color: #b6b6c0;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .sep {
  color: #6a6a74;
}

.breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

/* 22 · CATÁLOGO / FILTROS ------------------------------------------------- */
.catalog {
  display: grid;
  gap: var(--gap);
  align-items: start;
}

.filters {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-sm);
}

.filters__search {
  position: relative;
  margin-bottom: 1.3rem;
}

.filters__search .icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.filters__search input {
  width: 100%;
  padding: .85rem 1rem .85rem 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
}

.filters__search input:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}

.filters__group {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  margin-top: 1.1rem;
}

.filters__group:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.filters__group h4 {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
}

.filter-opt {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem 0;
  cursor: pointer;
  font-size: .95rem;
  color: var(--ink-2);
}

.filter-opt input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.filter-opt:hover {
  color: var(--ink);
}

.filters__group--scroll {
  max-height: 28rem;
  overflow-y: auto;
  padding-right: .35rem;
}

.cat-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .75rem;
}

.cat-links-preview {
  position: relative;
  overflow: hidden;
  padding-bottom: .5rem;
}

.cat-links-preview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5.5rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 78%);
  pointer-events: none;
  z-index: 1;
}

.cat-links-more {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .95rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
}

.cat-link .icon {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex: none;
}

.cat-link:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.filters__reset {
  margin-top: 1.2rem;
}

.catalog__main {
  min-width: 0;
}

.catalog__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.catalog__count {
  font-size: .92rem;
  color: var(--muted);
}

.catalog__count b {
  color: var(--ink);
}

.filters-toggle {
  display: none;
}

.catalog__empty {
  display: none;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.catalog__empty.is-visible {
  display: block;
}

.is-hidden {
  display: none !important;
}

/* 23 · PÁGINA DO PRODUTO -------------------------------------------------- */
.product {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.product__gallery {
  display: grid;
  gap: .8rem;
}

.product__main-img .media-ph {
  aspect-ratio: 1/1;
}

.product__info .product-card__cat {
  font-size: .78rem;
}

.product__title {
  margin: .4rem 0 .8rem;
}

.product__facts {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.4rem;
}

.fact {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--ink-2);
}

.fact b {
  color: var(--ink);
}

.product__desc {
  color: var(--ink-2);
  margin-bottom: 1.6rem;
}

.product__cta {
  display: grid;
  gap: .7rem;
  grid-template-columns: 1fr;
  padding: 1.3rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1.6rem;
}

.product__cta h3 {
  margin-bottom: .2rem;
}

.product__cta-note {
  font-size: .85rem;
  color: var(--muted);
}

.product__variacoes {
  margin-bottom: 1.6rem;
}

.product__variacoes h3 {
  margin-bottom: .35rem;
  font-size: 1.05rem;
}

.product__variacoes-note {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .85rem;
}

.variacoes-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
}

.variacoes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

.variacoes-table thead th {
  padding: .75rem 1rem;
  text-align: left;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  white-space: nowrap;
}

.variacoes-table tbody td {
  padding: .75rem 1rem;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}

.variacoes-table tbody tr:nth-child(even) {
  background: var(--surface-2);
}

.variacoes-table__row {
  cursor: pointer;
  transition: background .15s ease;
}

.variacoes-table__row:hover,
.variacoes-table__row.is-selected {
  background: var(--red-050);
}

.variacoes-table__row.is-selected td:first-child {
  box-shadow: inset 3px 0 0 var(--red);
}

.variacoes-table__action {
  text-align: right;
  white-space: nowrap;
}

.product__specs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.product__specs h3 {
  padding: 1rem 1.2rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row dt {
  color: var(--muted);
}

.spec-row dd {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.tabs {
  margin-top: 2rem;
}

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  border-bottom: 1px solid var(--line);
}

.tabs__btn {
  padding: .8rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}

.tabs__btn[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--red);
}

.tabs__panel {
  padding-top: 1.4rem;
  color: var(--ink-2);
}

.tabs__panel[hidden] {
  display: none;
}

.product-guide {
  margin-top: 2.4rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-guide h2 {
  margin: 0 0 .85rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.product-guide > p {
  color: var(--ink-2);
  max-width: 72ch;
}

.product-guide h3 {
  margin: 1.7rem 0 .7rem;
  font-size: 1.15rem;
}

.product-guide h4 {
  margin: 1.1rem 0 .35rem;
  font-size: 1rem;
}

.product-guide h3 + h4 {
  margin-top: .35rem;
}

.product-guide h4 + p {
  color: var(--ink-2);
  max-width: 72ch;
}

.product-guide .accordion {
  max-width: none;
  margin: .9rem 0 0;
}

/* 24 · CONTATO / FORMULÁRIOS ---------------------------------------------- */
.contact {
  display: grid;
  gap: var(--gap);
  align-items: start;
}

.form {
  display: grid;
  gap: 1rem;
}

.form__row {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: .4rem;
}

.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}

.field label .req {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-050);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--red);
}

.field__error {
  font-size: .82rem;
  color: var(--red);
  display: none;
}

.field--error .field__error {
  display: block;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .4rem;
}

.form__note {
  font-size: .82rem;
  color: var(--muted);
}

.form-alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  display: none;
}

.form-alert.is-visible {
  display: block;
}

.form-alert--ok {
  background: #e9f7ef;
  color: #1c7a45;
  border: 1px solid #bce6cd;
}

.form-alert--err {
  background: var(--red-050);
  color: var(--red-700);
  border: 1px solid #f3c6c6;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t);
  min-width: 0;
}

.contact-card > span:not(.contact-card__ico) {
  min-width: 0;
  flex: 1;
}

.contact-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.contact-card__ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--red-050);
  color: var(--red);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: .2rem;
}

.contact-card p,
.contact-card a {
  font-size: .95rem;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--red);
}

.contact-aside {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
}

.contact-aside h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-aside ul {
  display: grid;
  gap: .8rem;
}

.contact-aside li {
  display: flex;
  gap: .6rem;
  color: #c9c9d2;
  font-size: .95rem;
}

.contact-aside .icon {
  width: 20px;
  height: 20px;
  color: #35c06e;
  flex: none;
}

.map-embed {
  border: 0;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  display: block;
}

/* 25 · BLOG --------------------------------------------------------------- */
.posts {
  grid-template-columns: 1fr;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-card__media .media-ph {
  border-radius: 0;
  border: none;
  aspect-ratio: 16/9;
}

.post-card__media {
  display: block;
  color: inherit;
  text-decoration: none;
}

.post-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.post-card h3 a {
  color: inherit;
  text-decoration: none;
}

.post-card h3 a:hover {
  color: var(--red);
}

.post-article__inner {
  max-width: var(--container);
}

/* Hero editorial do post */
.post-hero {
  margin-top: .25rem;
}

.post-hero .breadcrumb {
  margin-bottom: 1.5rem;
}

.post-hero__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.post-hero__cat {
  display: inline-block;
  margin-bottom: .85rem;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red);
}

.post-hero__main h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.post-hero__lead {
  margin-top: 1rem;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: var(--muted);
}

.post-hero__meta {
  display: grid;
  gap: 1.25rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f7f9;
}

.post-hero__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.post-hero__avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
}

.post-hero__author strong {
  display: block;
  font-size: .95rem;
}

.post-hero__author time {
  display: block;
  margin-top: .15rem;
  font-size: .82rem;
  color: var(--muted);
}

.post-hero__share-label {
  display: block;
  margin-bottom: .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-hero__share-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.post-hero__share-links a,
.post-hero__copy {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), color var(--t), background var(--t);
}

.post-hero__share-links a:hover,
.post-hero__copy:hover {
  border-color: var(--red);
  color: var(--red);
}

.post-hero__copy {
  cursor: pointer;
  padding: 0;
}

.post-hero__copy.is-copied {
  border-color: #1c7a45;
  color: #1c7a45;
}

.post-hero__cover {
  margin: 1.75rem 0 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ececef;
}

.post-hero__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

@media (min-width: 900px) {
  .post-hero__grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, .7fr);
    gap: 2.5rem;
    align-items: end;
  }
}

/* Corpo: índice | conteúdo | CTA */
.post-layout {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.25rem;
  align-items: start;
}

.post-article__content {
  min-width: 0;
}

.post-article__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
}

.post-article__body > * + * {
  margin-top: 1.15rem;
}

.post-article__body > h2:first-child {
  margin-top: 0;
}

.post-article__body h2[id],
.post-article__body h3[id] {
  scroll-margin-top: calc(var(--header-h, 76px) + 24px);
}

.post-toc {
  order: -1;
  padding: 0;
  border: 0;
  background: transparent;
}

.post-toc__meta {
  margin-bottom: 1rem;
  padding: .75rem .85rem;
  border-radius: var(--radius-sm);
  background: #f7f7f9;
  border: 1px solid var(--line);
}

.post-toc__time {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .45rem;
}

.post-toc__time .icon {
  width: 15px;
  height: 15px;
}

.post-toc__progress {
  height: 4px;
  border-radius: 999px;
  background: #e8e8ec;
  overflow: hidden;
}

.post-toc__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--red);
  transition: width .15s linear;
}

.post-toc__title {
  margin: 0 0 .7rem;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .1rem;
}

.post-toc__list a {
  display: block;
  padding: .45rem 0 .45rem .75rem;
  border-left: 2px solid transparent;
  color: var(--ink-2);
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.35;
  transition: color var(--t), border-color var(--t);
}

.post-toc__list a:hover {
  color: var(--red);
}

.post-toc__list a.is-active {
  color: var(--red);
  border-left-color: var(--red);
  font-weight: 600;
}

.post-rail__card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1a1a1f 0%, #101013 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.post-rail__eyebrow {
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.post-rail__title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.post-rail__text {
  margin: .7rem 0 1.1rem;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .72);
}

.post-rail__card .btn {
  margin-top: .55rem;
}

.post-rail__card .btn--outline {
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .35);
  --btn-bg: transparent;
}

.post-rail__card .btn--outline:hover {
  --btn-bd: #fff;
  --btn-bg: rgba(255, 255, 255, .08);
}

@media (min-width: 1100px) {
  .post-layout {
    grid-template-columns: 220px minmax(0, 1fr) 240px;
    gap: 2.25rem;
  }

  .post-toc,
  .post-rail {
    order: 0;
    position: sticky;
    top: calc(var(--header-h, 76px) + 20px);
  }

  .post-toc {
    max-height: calc(100vh - var(--header-h, 76px) - 40px);
    overflow: auto;
  }
}

@media (max-width: 1099px) {
  .post-rail {
    order: 2;
  }
}

.post-article__body .accordion {
  max-width: none;
  margin-inline: 0;
  margin-top: 1.25rem;
}

.post-article__body h2,
.post-article__body h3,
.post-article__body h4 {
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink);
}

.post-article__body h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}

.post-article__body h3 {
  margin-top: 1.85rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.post-article__body h4 {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.post-article__body .accordion h3,
.post-article__body .accordion__heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: normal;
}

.post-article__body p {
  margin: 0;
}

.post-article__body strong,
.post-article__body b {
  font-weight: 700;
  color: var(--ink);
}

.post-article__body ul,
.post-article__body ol {
  margin: 0;
  padding-left: 1.35rem;
}

.post-article__body li + li {
  margin-top: .45rem;
}

.post-article__body li::marker {
  color: var(--red);
}

.post-article__body a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .15em;
}

.post-article__body a:hover {
  color: var(--red-600, #9a1818);
}

.post-article__body blockquote {
  margin: 1.5rem 0 0;
  padding: .9rem 1.1rem;
  border-left: 3px solid var(--red);
  background: var(--surface-2, #f7f7f8);
  color: var(--muted);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-article__body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0 0;
}

.post-article__body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.post-article__body figure {
  margin: 1.5rem 0 0;
}

.post-article__body figcaption {
  margin-top: .5rem;
  font-size: .88rem;
  color: var(--muted);
}

/* Tabelas responsivas */
.post-article__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  line-height: 1.45;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.post-article__body thead th {
  background: var(--dark, #0c0c0e);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-align: left;
  padding: .85rem .9rem;
  vertical-align: top;
}

.post-article__body tbody th {
  text-align: left;
  font-weight: 700;
  background: var(--surface-2, #f7f7f8);
}

.post-article__body td,
.post-article__body tbody th {
  padding: .8rem .9rem;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

.post-article__body tbody tr:nth-child(even) td,
.post-article__body tbody tr:nth-child(even) th {
  background: #fafafa;
}

.post-article__body tbody tr:hover td,
.post-article__body tbody tr:hover th {
  background: var(--red-050, #fdecec);
}

@media (max-width: 720px) {
  .post-article__body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .post-article__body table {
    display: block;
    min-width: 100%;
    max-width: none;
  }
}

.post-article__footer {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}


.post-card__body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.post-card__meta {
  display: flex;
  gap: .7rem;
  font-size: .8rem;
  color: var(--muted);
}

.post-card__cat {
  color: var(--red);
  font-weight: 700;
}

.post-card h3 {
  font-size: 1.15rem;
}

.post-card p {
  font-size: .93rem;
}

.post-card .textlink {
  margin-top: auto;
  padding-top: .6rem;
}

/* 26 · WHATSAPP FLUTUANTE ------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem;
  border-radius: 999px;
  background: #22a45b;
  color: #fff;
  box-shadow: 0 10px 30px rgba(34, 164, 91, .4);
  transition: transform var(--t), box-shadow var(--t);
}

.wa-float .icon {
  width: 30px;
  height: 30px;
}

.wa-float__text {
  display: none;
  font-family: var(--font-head);
  font-weight: 700;
  padding-right: .4rem;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(34, 164, 91, .5);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 16px rgba(34, 164, 91, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 164, 91, 0);
  }
}

/* 27 · UTILITÁRIOS / ANIMAÇÕES ------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: .08s;
}

.reveal[data-delay="2"] {
  transition-delay: .16s;
}

.reveal[data-delay="3"] {
  transition-delay: .24s;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--red);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* 28 · RESPONSIVO (mobile-first → breakpoints crescentes) ---------------- */
@media (min-width: 480px) {
  .public {
    flex: 0 1 calc(50% - .4rem);
    max-width: calc(50% - .4rem);
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product__cta {
    grid-template-columns: 1fr 1fr;
  }

  .product__cta h3,
  .product__cta-note {
    grid-column: 1 / -1;
  }

  .wa-float__text {
    display: inline;
  }
}

@media (min-width: 640px) {
  .topbar__info li:nth-child(3) {
    display: inline-flex;
  }

  .public {
    flex: 0 1 calc(33.333% - .54rem);
    max-width: calc(33.333% - .54rem);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .mvv-mv {
    grid-template-columns: repeat(2, 1fr);
  }

  .mvv-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .cats {
    grid-template-columns: repeat(2, 1fr);
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .posts {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }

  .form__row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    padding-block: 0;
  }

  .cta-band__inner {
    padding-block: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (min-width: 900px) {
  .topbar__social {
    display: flex;
  }

  .nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .public {
    flex: 0 1 calc(20% - .64rem);
    max-width: calc(20% - .64rem);
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .mvv-values {
    grid-template-columns: repeat(4, 1fr);
  }

  .cats {
    grid-template-columns: repeat(3, 1fr);
  }

  .products {
    grid-template-columns: repeat(3, 1fr);
  }

  .process {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }

  .posts {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about {
    grid-template-columns: 1fr 1fr;
  }

  .about--reverse .about__media {
    order: 2;
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  }

  .catalog {
    grid-template-columns: 280px 1fr;
  }

  .filters-toggle {
    display: none;
  }

  .filters {
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }

  .product {
    grid-template-columns: 1fr 1fr;
  }

  .product__gallery {
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }

  .contact {
    grid-template-columns: 1.4fr 1fr;
  }

  .cta-band__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .cta-band__actions {
    justify-content: flex-end;
  }

  .cta-band p {
    margin-inline: 0;
  }
}

@media (min-width: 1100px) {
  .products--home {
    grid-template-columns: repeat(4, 1fr);
  }

  .cats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Catálogo: seleção e orçamento múltiplo ------------------------- */

.product-card__select {
  display: none;
  align-items: center;
  gap: .55rem;
  margin: .75rem .75rem 0;
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color var(--t), background var(--t), color var(--t);
}

body.is-quote-mode .product-card__select {
  display: flex;
}

body.is-quote-mode .product-card__select[hidden] {
  display: none;
}

.product-card__select input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.product-card__select-box {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--line);
  border-radius: .25rem;
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--t), background var(--t);
}

.product-card__select-box::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scale(0);
  transition: transform var(--t-fast) var(--ease);
}

.product-card__select input:checked + .product-card__select-box {
  border-color: var(--red);
}

.product-card__select input:checked + .product-card__select-box::after {
  transform: scale(1);
}

.product-card__select input:focus-visible + .product-card__select-box {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.product-card__select:has(input:checked) {
  border-color: rgba(196, 30, 58, .35);
  background: rgba(196, 30, 58, .06);
  color: var(--ink);
}

.product-card.is-quote-selected {
  border-color: rgba(196, 30, 58, .45);
  box-shadow: 0 8px 28px rgba(196, 30, 58, .12);
}

body.has-quote-bar {
  padding-bottom: 5.5rem;
}

body.has-quote-bar .wa-float {
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

.quote-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .18);
}

.quote-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .9rem;
}

.quote-bar__text {
  margin: 0;
  font-size: .95rem;
}

.quote-bar__actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
}

.quote-panel {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: end center;
  padding: 0;
  pointer-events: none;
}

.quote-panel.is-open {
  display: grid;
  pointer-events: auto;
}

.quote-panel__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(12, 12, 14, .55);
  opacity: 0;
  transition: opacity .28s var(--ease);
  cursor: pointer;
}

.quote-panel.is-open .quote-panel__backdrop {
  opacity: 1;
}

.quote-panel__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow-lg);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  transform: translateY(100%);
  transition: transform .32s var(--ease);
}

.quote-panel.is-open .quote-panel__dialog {
  transform: translateY(0);
}

body.quote-panel-open {
  overflow: hidden;
}

.quote-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quote-panel__head h2 {
  margin: .35rem 0 .5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.quote-panel__lead {
  margin: 0;
  color: var(--ink-soft);
  max-width: 52ch;
}

.quote-panel__close {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.quote-panel__items {
  display: grid;
  gap: .65rem;
  margin-bottom: 1.25rem;
  max-height: 34vh;
  overflow: auto;
  padding-right: .15rem;
}

.quote-panel__empty {
  margin: 0;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  text-align: center;
}

.quote-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .75rem;
  align-items: center;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.quote-item__info {
  display: grid;
  gap: .2rem;
  min-width: 0;
}

.quote-item__info strong {
  font-family: var(--font-head);
  font-size: .98rem;
  line-height: 1.25;
}

.quote-item__info span {
  font-size: .82rem;
  color: var(--ink-soft);
}

.quote-item__qty {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.quote-item__qty input {
  width: 3rem;
  text-align: center;
  padding: .45rem .25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.quote-item__step {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.quote-item__remove {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}

.quote-item__remove:hover {
  background: rgba(196, 30, 58, .08);
  color: var(--red);
}

.quote-panel__form-title {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}

.quote-panel__form-note {
  margin: 0 0 1rem;
  font-size: .88rem;
  color: var(--ink-soft);
}

.quote-panel__form-note .req,
.quote-panel__form .field label .req {
  color: var(--red);
}

.quote-panel__form .field label small {
  font-weight: 500;
  color: var(--ink-soft);
}

.quote-panel__send {
  display: grid;
  gap: .65rem;
  margin-top: 1.1rem;
}

@media (min-width: 640px) {
  .quote-panel.is-open {
    place-items: center;
    padding: 1rem;
  }

  .quote-panel__dialog {
    border-radius: var(--radius);
    max-height: min(88vh, 900px);
    transform: translateY(24px);
    opacity: 0;
  }

  .quote-panel.is-open .quote-panel__dialog {
    transform: translateY(0);
    opacity: 1;
  }

  .quote-panel__send {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 639px) {
  .topbar__inner {
    align-items: flex-start;
    padding-block: .5rem;
  }

  .topbar__info {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
  }

  .topbar__info a span {
    white-space: nowrap;
  }

  .topbar__info li:last-child a span {
    white-space: normal;
  }

  .cat-links {
    grid-template-columns: 1fr;
  }

  .cat-links-preview {
    max-height: calc(4 * 3.35rem + 3 * .75rem);
  }

  .cat-links-preview::after {
    height: 4rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white) 72%);
  }

  .products--home .product-card:nth-child(n + 5) {
    display: none;
  }

  .quote-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .quote-bar__actions {
    justify-content: stretch;
  }

  .quote-bar__actions .btn {
    flex: 1;
  }

  .quote-item {
    grid-template-columns: 1fr;
  }

  .quote-item__qty,
  .quote-item__remove {
    justify-self: start;
  }
}

/*  · GLOSSÁRIO ----------------------------------------------------------- */
.glossary-intro {
  max-width: 68ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.glossary-intro h2 {
  margin-bottom: .55rem;
}

.glossary-intro p {
  color: var(--ink-2);
  line-height: 1.6;
}

.glossary-alpha {
  position: sticky;
  top: calc(var(--header-h, 72px) + 8px);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem .55rem;
  padding: .85rem 1rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.glossary-alpha__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  padding: .2rem .15rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}

.glossary-alpha__link:hover,
.glossary-alpha__link.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.glossary-block {
  scroll-margin-top: calc(var(--header-h, 72px) + 88px);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.glossary-block__letter {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--red);
}

.glossary-block__letter::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--red);
  opacity: .85;
}

.glossary-list {
  margin: 0;
}

.glossary-item {
  display: grid;
  gap: .35rem .1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.glossary-item:last-child {
  border-bottom: 0;
}

.glossary-item dt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.glossary-item dd {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.glossary-item a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.glossary-note {
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
  padding: 1.2rem 1.35rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.glossary-note p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.glossary-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/*  · TIME / LIDERANÇA ---------------------------------------------------- */
.team {
  background: var(--surface-2);
}

.team__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.team__info .eyebrow {
  margin-bottom: .85rem;
}

.team__role {
  margin: 0 0 .35rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--red);
}

.team__info h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.team__bio {
  max-width: 38ch;
  margin: 0 0 1.6rem;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 1.05rem;
}

.team__gallery {
  min-width: 0;
}

.team__viewport {
  overflow: hidden;
  padding: .35rem 0 1rem;
}

.team__track {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: .85rem;
  width: max-content;
  will-change: transform;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.team__card {
  position: relative;
  flex: 0 0 auto;
  width: min(46vw, 188px);
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: var(--surface-3);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: .7;
  transform: scale(.94);
  transform-origin: bottom center;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease, box-shadow .45s ease;
}

.team__card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow);
}

.team__card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.team__card-media,
.team__card img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.team__card-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem .85rem .8rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(12, 12, 14, .82), rgba(12, 12, 14, 0));
}

.team__nav {
  display: flex;
  gap: .65rem;
  margin-top: .35rem;
}

.team__nav-btn {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  border: 0;
  transition: background var(--t), transform var(--t);
}

.team__nav-btn:hover {
  background: var(--red-600);
}

.team__nav-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.team__nav-ico {
  width: 20px;
  height: 20px;
}

.team__nav-ico--prev {
  transform: scaleX(-1);
}

@media (min-width: 900px) {
  .team__layout {
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1.25fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .team__card {
    width: 200px;
  }
}

@media (min-width: 768px) {
  .glossary-item {
    grid-template-columns: minmax(180px, .38fr) 1fr;
    gap: 1.2rem 2rem;
    align-items: start;
    padding: 1.15rem 0;
  }

  .glossary-item dt {
    padding-top: .1rem;
  }
}