/*
Theme Name: Ímpar Surreal
Theme URI: http://impar-distribuidora.local
Description: Redesign da Ímpar Distribuidora — design limpo, técnico, claro.
Author: KAIROSS Studio
Version: 2.0
Template: twentytwentyone
Text Domain: impar-surreal
*/

/* Google Fonts agora carregadas via wp_enqueue_style em functions.php (mais confiável que @import) */

/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
  --bg:        #ffffff;
  --bg-2:      #f5f7f2;
  --bg-3:      #edf0e8;
  --text:      #1a1a18;
  --text-soft: #5a5a56;
  --text-muted:#8a8a86;
  --rule:      rgba(97,114,56,.15);
  --accent:    #617238;
  --accent-h:  #4a5629;
  --accent-lt: #edf0e8;
  --success:   #617238;

  --font-sans:    'Montserrat', -apple-system, system-ui, sans-serif;
  --font-display: 'DM Serif Display', 'Georgia', serif;

  --concrete: #e8e3da;
  --graphite: #2c2c28;
  --graphite-lt: #3e3e38;

  --max-w:  1280px;
  --gap:    clamp(20px, 4vw, 48px);
  --radius: 8px;
  --ease:   cubic-bezier(.16,1,.3,1);
}

/* Tema claro para a home inteira (antes escuro — clareado a pedido do cliente) */
.home-dark {
  --bg:        #ffffff;
  --bg-2:      #f5f7f2;
  --bg-3:      #edf0e8;
  --text:      #1a1a18;
  --text-soft: #5a5a56;
  --text-muted:#8a8a86;
  --rule:      rgba(97,114,56,.15);
  --accent:    #617238;
  --accent-h:  #4a5629;
  --accent-lt: #edf0e8;
  background: var(--bg);
  color: var(--text);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--accent); color: #fff; }

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--accent); color: #fff;
  padding: 8px 14px; font-size: 13px; z-index: 200;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

section { padding: clamp(56px, 9vw, 120px) var(--gap); }

/* ============================================================
   NAV — logo centralizado, menus laterais
   ============================================================ */
.i-nav {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--gap);
}

.i-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.i-nav__logo {
  justify-self: center;
  grid-column: 2;
}

.i-nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.i-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.i-nav__menu--left  { justify-content: flex-end; }
.i-nav__menu--right { justify-content: flex-start; }

.i-nav__menu a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.i-nav__menu a:hover {
  background: var(--accent-lt);
  color: var(--accent);
  text-decoration: none;
}

.i-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

/* Menu mobile */
.i-nav__mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 12px var(--gap) 20px;
  gap: 2px;
}

.i-nav__mobile.is-open { display: flex; }

.i-nav__mobile a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 6px;
  display: block;
  transition: background .18s, color .18s;
}
.i-nav__mobile a:hover {
  background: var(--accent-lt);
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 860px) {
  .i-nav__inner {
    grid-template-columns: 1fr auto;
  }
  .i-nav__menu { display: none; }
  .i-nav__logo { grid-column: 1; justify-self: start; }
  .i-nav__toggle { display: flex; margin-left: auto; }
}

/* ============================================================
   BOTÕES — definição única
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 13px 26px;
  cursor: pointer;
  transition: background .2s, transform .18s, box-shadow .2s, color .2s, border-color .2s;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 0 var(--accent-h);
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(97,114,56,.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.btn-wa {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--rule);
}
.btn-wa:hover {
  background: var(--bg-3);
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ============================================================
   HERO — partido, assimétrico
   ============================================================ */
.i-hero {
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 92vh;
  align-items: center;
  padding: clamp(80px, 10vw, 120px) var(--gap);
  gap: 48px;
  max-width: 100%;
}

/* Grade de pontos — textura técnica */
.i-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,24,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Imagem hero com transparência */
.i-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
  user-select: none;
  opacity: .45;
  mix-blend-mode: multiply;
  z-index: 0;
}

/* Véu claro sobre a imagem — garante leitura do texto à esquerda */
.i-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,.92) 0%,
    rgba(255,255,255,.72) 40%,
    rgba(255,255,255,.25) 75%,
    rgba(255,255,255,.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.i-hero__left {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.i-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(97,114,56,.5);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 13px;
  margin-bottom: 40px;
}
.i-hero__badge svg { flex-shrink: 0; opacity: .6; }

.i-hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 116px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 0;
}

.i-hero__title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.i-hero__sub-brand {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 26px);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .18em;
  margin-bottom: .5em;
}

/* Rotating words */
.i-hero__rotating {
  display: block;
  position: relative;
  min-height: 1.05em;
  overflow: hidden;
  margin-top: .06em;
  color: var(--text-muted);
  font-size: clamp(32px, 4.5vw, 60px);
}

.i-hero__word {
  position: absolute;
  left: 0; right: 0;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .4s ease;
  font-family: var(--font-display);
  font-style: normal;
  white-space: nowrap;
}
.i-hero__word.is-active  { transform: translateY(0); opacity: 1; }
.i-hero__word.is-above   { transform: translateY(-110%); opacity: 0; }
.i-hero__word.is-below   { transform: translateY(110%); opacity: 0; }

.i-hero__desc {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 52ch;
  margin-top: 36px;
  letter-spacing: .01em;
}
.i-hero__desc strong { color: var(--text); font-weight: 500; }

.i-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* Painel direito — dados técnicos */
.i-hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 48px;
}

.i-hero__stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.i-hero__stat:first-child { border-top: 1px solid var(--rule); }

.i-hero__stat-n {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--accent);
  filter: brightness(1.3);
  line-height: 1;
  letter-spacing: -.03em;
  flex-shrink: 0;
}

.i-hero__stat-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.i-hero__wordmark {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  letter-spacing: .12em;
  line-height: 1;
  user-select: none;
}

@media (max-width: 900px) {
  .i-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(80px, 12vw, 100px) var(--gap) clamp(56px, 8vw, 80px);
  }
  .i-hero::after { background: rgba(255,255,255,.82); }
  .i-hero__right { flex-direction: row; flex-wrap: wrap; padding-left: 0; gap: 0; border-top: 1px solid var(--rule); margin-top: 40px; }
  .i-hero__stat { flex: 1; min-width: 120px; border-top: none !important; border-bottom: none; padding: 20px 16px 20px 0; }
  .i-hero__wordmark { display: none; }
}

@media (max-width: 560px) {
  .i-hero__title { font-size: clamp(48px, 13vw, 72px); }
  .i-hero__actions { flex-direction: column; }
  .i-hero__actions .btn { width: 100%; justify-content: center; }
  .i-hero__badge { white-space: normal; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.s-head {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.s-head__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-head__label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.s-head__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text);
}

.s-head__title em {
  font-style: italic;
  color: var(--accent);
}

.s-head__sub {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 58ch;
}

/* ============================================================
   DIVISOR DE SEÇÃO
   ============================================================ */
.i-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  opacity: .25;
}

/* ============================================================
   PRODUTOS — layout editorial
   ============================================================ */
.i-products {
  background: var(--bg);
  padding: clamp(64px, 10vw, 120px) var(--gap);
}

.i-products__header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
}

.i-products__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 14px 0 20px;
}
.i-products__title em {
  font-style: italic;
  color: var(--accent);
}

.i-products__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 52ch;
}

/* Grid editorial — asimétrico */
.products-editorial {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

/* Card principal — metade esquerda, alto */
.prod-ed {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.prod-ed:hover { background: var(--bg-2); text-decoration: none; }

.prod-ed--main {
  grid-row: span 2;
}

/* Linha de acento no hover */
.prod-ed::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease);
  pointer-events: none;
}
.prod-ed:hover::after { transform: scaleY(1); }

.prod-ed__body {
  padding: 36px 40px 44px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 260px;
}
.prod-ed--main .prod-ed__body {
  padding: 48px 52px 56px;
  min-height: 400px;
}

.prod-ed__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.prod-ed__name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.prod-ed--main .prod-ed__name {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 20px;
}

.prod-ed__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  flex: 1;
  margin-bottom: 28px;
  max-width: 42ch;
  position: relative;
  z-index: 1;
}
.prod-ed--main .prod-ed__desc { font-size: 14px; max-width: 46ch; }

.prod-ed__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  transition: letter-spacing .2s;
  position: relative;
  z-index: 1;
}
.prod-ed:hover .prod-ed__cta { letter-spacing: .16em; text-decoration: none; }

/* Stack direita */
.prod-ed-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--rule);
}

.prod-ed-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
}

@media (max-width: 860px) {
  .products-editorial { grid-template-columns: 1fr; }
  .prod-ed--main { grid-row: auto; }
  .prod-ed-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .prod-ed__body, .prod-ed--main .prod-ed__body { padding: 20px 22px 28px; }
}

/* ============================================================
   PRODUTO DETALHE (home — seções RADMYX / RADCON)
   ============================================================ */
.i-product-section { background: var(--bg-2); }
.i-product-section.alt { background: var(--bg); }

.product-detail {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }

.product-detail__visual {
  background: var(--bg-3);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.product-detail__visual img {
  width: 100%;
  height: auto;
}

.product-detail__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.product-detail__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.product-detail__name sub {
  font-size: .45em;
  vertical-align: baseline;
  color: var(--text-soft);
  font-style: italic;
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
}

.product-detail__desc {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-soft);
}
.product-detail__desc p + p { margin-top: 24px; }
.product-detail__desc strong { color: var(--text); font-weight: 600; }

.product-detail__uses {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.product-detail__uses-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.uses-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.uses-chips li {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--rule);
  padding: 6px 12px;
  border-radius: 6px;
}

.product-detail__link {
  margin-top: 28px;
}

@media (max-width: 860px) {
  .product-detail,
  .product-detail.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
}

/* ============================================================
   VANTAGENS / LISTA NUMERADA
   ============================================================ */
.i-advantages { background: var(--bg); }
.i-advantages.bg-2 { background: var(--bg-2); }

.adv-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
}

.adv-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  align-items: start;
  transition: background .18s;
}
.adv-item:nth-child(even) { border-right: 0; }
.adv-item:nth-last-child(-n+2) { border-bottom: 0; }
.adv-item:hover { background: var(--bg-3); }

.adv-item__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
}

.adv-item__body { }
.adv-item__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.adv-item__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
}

@media (max-width: 720px) {
  .adv-grid { grid-template-columns: 1fr; }
  .adv-item { border-right: 0; }
  .adv-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .adv-item:last-child { border-bottom: 0; }
}

/* ============================================================
   CLIENTES — MARQUEE
   ============================================================ */
.i-clients {
  background: var(--bg-3);
  padding: clamp(40px, 6vw, 72px) var(--gap);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.i-clients::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,26,24,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,24,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.i-clients__title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: marquee 14s linear infinite;
  width: max-content;
}
.marquee-track a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-track img {
  height: 84px;
  width: auto;
  opacity: .75;
  filter: grayscale(100%) contrast(1.15);
  transition: opacity .25s, filter .25s;
}
.marquee-track a:hover img { opacity: 1; filter: grayscale(0%); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   FAQ — split layout
   ============================================================ */
.i-faq {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  padding: clamp(64px, 10vw, 120px) var(--gap);
}

.i-faq__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.i-faq__header { position: sticky; top: 90px; }

.i-faq__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--text);
  margin-top: 14px;
}
.i-faq__title em { font-style: italic; color: var(--accent); }

.faq-list {
  max-width: 100%;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
  background: transparent !important;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }

.faq-item__q {
  width: 100%;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-align: left;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color .18s;
  font-family: var(--font-sans);
  letter-spacing: -.01em;
  border-radius: 0 !important;
}
.faq-item__q:hover { color: var(--accent); }
.faq-item.is-open .faq-item__q { color: var(--accent); }

.faq-item__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease);
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease), padding .35s;
  padding: 0;
  background: transparent !important;
}
.faq-item.is-open .faq-item__a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-item__a p {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-soft);
  padding-left: 0;
  background: transparent;
  max-width: 65ch;
}

/* ============================================================
   FORMULÁRIO
   ============================================================ */
.i-contact {
  background: var(--bg-2);
  padding: 0 !important;
  overflow: hidden;
}

/* Nas páginas de produto o formulário é simples e centralizado —
   precisa de padding normal (o layout split da home usa padding:0) */
.prod-page .i-contact {
  padding: clamp(56px, 9vw, 100px) var(--gap) !important;
  overflow: visible;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 600px;
}

/* Painel esquerdo */
.contact-info {
  background: var(--bg-3);
  background-image:
    linear-gradient(rgba(26,26,24,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,24,.03) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: clamp(48px, 7vw, 80px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.contact-info__title em {
  font-style: italic;
  color: var(--accent);
}

.contact-info__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 40px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info__icon {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-info__icon svg { width: 16px; height: 16px; }
.contact-info__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-soft);
}
.contact-info__value a { color: var(--text-soft); }
.contact-info__value a:hover { color: var(--text); text-decoration: none; }

.contact-disclaimer { margin-top: 32px; }
.contact-disclaimer__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Painel direito — formulário */
.contact-form-panel {
  background: var(--bg-2);
  padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form */
.i-form {
  background: transparent;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label .req { color: var(--accent); margin-left: 2px; }

.i-form .form-group input,
.i-form .form-group select,
.i-form .form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: transparent !important;
  border: none !important;
  border-bottom: 1.5px solid var(--rule) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 10px 0 !important;
  width: 100%;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.i-form .form-group input:focus,
.i-form .form-group select:focus,
.i-form .form-group textarea:focus {
  outline: none !important;
  border-bottom-color: var(--accent) !important;
  box-shadow: none !important;
  background: transparent !important;
}
.i-form .form-group textarea { min-height: 100px; resize: vertical; }
.i-form .form-group select { cursor: pointer; }
.i-form .form-group select option {
  color: #111111;
  background-color: #ffffff;
}

.form-notice {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-success,
.form-error {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  display: none;
}
.form-success { background: #e8f5ee; color: var(--success); border: 1px solid #b6dcc6; }
.form-error   { background: #fdecea; color: #c0392b;      border: 1px solid #f5b7b1; }

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info { padding: 40px 28px; }
  .contact-form-panel { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.i-footer {
  background: var(--graphite);
  color: #fff;
  padding: 64px var(--gap) 32px;
  border-top: 3px solid var(--accent);
}

.i-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.i-footer__logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.i-footer__tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 34ch;
}

.i-footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}
.i-footer__col p,
.i-footer__col a {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
}
.i-footer__col a:hover {
  color: #fff;
  text-decoration: none;
}

.i-footer__bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* Ícones sociais */
.i-footer__social {
  display: flex;
  align-items: center;
  gap: 4px;
}
.i-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}
.i-footer__social-link:hover {
  color: var(--accent);
  border-color: rgba(97,114,56,.5);
  background: rgba(97,114,56,.1);
}

@media (max-width: 768px) {
  .i-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .i-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .i-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
@keyframes wa-pulse {
  0%, 70%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  35% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 8px rgba(37,211,102,.15); }
}
@keyframes wa-peek {
  0%, 55%, 100% { width: 64px; max-width: 64px; border-radius: 50%; padding: 0; gap: 0; }
  65%, 88%      { width: 240px; max-width: 240px; border-radius: 32px; padding: 0 20px 0 18px; gap: 10px; }
}

.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  height: 64px;
  width: 64px;
  max-width: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 0;
  padding: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: width .45s cubic-bezier(.4,0,.2,1),
              max-width .45s cubic-bezier(.4,0,.2,1),
              border-radius .45s cubic-bezier(.4,0,.2,1),
              padding .45s cubic-bezier(.4,0,.2,1),
              gap .45s cubic-bezier(.4,0,.2,1),
              box-shadow .25s;
  animation: wa-pulse 3s ease-in-out infinite,
             wa-peek 7s ease-in-out 4s infinite;
}
.wa-float:hover,
.wa-float:focus {
  width: 240px;
  max-width: 240px;
  border-radius: 32px;
  padding: 0 20px 0 18px;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  color: #fff;
  text-decoration: none;
  animation: none;
}

.wa-float__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
}

.wa-float__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity .25s .1s, max-width .45s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.wa-float:hover .wa-float__label,
.wa-float:focus .wa-float__label {
  opacity: 1;
  max-width: 180px;
}

/* ============================================================
   PÁGINA DE PRODUTO INDIVIDUAL
   ============================================================ */
.prod-page { background: var(--bg); }

.prod-page__hero {
  background: var(--bg-3);
  border-bottom: 1px solid var(--rule);
  padding: clamp(64px, 10vw, 112px) var(--gap) clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.prod-page__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,24,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.prod-page__hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.prod-page__breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.prod-page__breadcrumb a { color: var(--accent); }
.prod-page__breadcrumb a:hover { text-decoration: underline; }
.prod-page__breadcrumb span { margin: 0 6px; }

.prod-page__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--rule);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.prod-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.prod-page__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.prod-page__img-box {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.prod-page__img-box img {
  max-height: 260px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .prod-page__hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .prod-page__img-box { min-height: auto; order: -1; }
}

/* Galeria de vídeos em destaque (tira-dúvidas do produto) */
.prod-videos {
  padding: clamp(56px, 9vw, 96px) var(--gap);
  background: var(--bg-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prod-videos__head {
  max-width: var(--max-w);
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}
.prod-videos__head .s-head__label { justify-content: center; }
.prod-videos__desc {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
}

.prod-videos__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-videos__grid--1 {
  grid-template-columns: minmax(0, 320px);
  justify-content: center;
}
@media (max-width: 900px) {
  .prod-videos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .prod-videos__grid { grid-template-columns: 1fr; }
  .prod-videos__grid--1 { grid-template-columns: minmax(0, 280px); }
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.video-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--rule);
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.video-card:hover .video-card__thumb img { transform: scale(1.04); }
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 20px;
  transition: background .2s, transform .2s;
}
.video-card:hover .video-card__play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

/* Modal de vídeo */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.85);
  padding: 24px;
  align-items: center;
  justify-content: center;
}
.video-modal.is-open { display: flex; }
.video-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-modal__close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.prod-page__body {
  padding: clamp(56px, 9vw, 112px) var(--gap);
}


.prod-page__body-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ── Tipografia editorial do conteúdo ── */
.prod-desc {
  max-width: 68ch;
}

/* Parágrafo padrão (Padrão Blog) */
.prod-desc p {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 24px;
  font-weight: 300;
}
.prod-desc p:last-child { margin-bottom: 0; }

/* Primeiro parágrafo como lead (Padrão Blog) */
.prod-desc > p:first-child,
.prod-desc > p:first-of-type {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.6;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 48px;
}

.prod-desc strong { color: var(--text); font-weight: 700; }
.prod-desc em { font-style: italic; color: var(--text-soft); }
.prod-desc a { color: var(--accent); text-underline-offset: 3px; }

/* H2 — título de seção via CSS (cobre inline style do PHP) */
.prod-desc h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 400 !important;
  letter-spacing: -.02em !important;
  line-height: 1.15 !important;
  color: var(--text) !important;
  margin: 56px 0 24px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

/* H3 — eyebrow label técnico */
.prod-desc h3 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 52px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.prod-desc h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── Tabela de specs ── */
.prod-specs {
  margin: 8px 0 40px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.prod-specs table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.prod-specs tr {
  transition: background .18s cubic-bezier(.32,.72,0,1);
}
.prod-specs tr:hover { background: rgba(97,114,56,.05); }
.prod-specs th,
.prod-specs td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
}
.prod-specs tr:last-child th,
.prod-specs tr:last-child td { border-bottom: none; }
.prod-specs th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-3);
  width: 38%;
}
.prod-specs td {
  color: var(--text-soft);
  line-height: 1.6;
}

/* ── Lista de vantagens ── */
.prod-adv-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prod-adv-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--text-soft);
  line-height: 1.65;
  transition: color .15s;
}
.prod-adv-list li:first-child { border-top: 1px solid var(--rule); }
.prod-adv-list li:last-child { border-bottom: none; }
.prod-adv-list li::before {
  content: '→';
  color: var(--accent);
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .2s cubic-bezier(.32,.72,0,1);
}
.prod-adv-list li:hover { color: var(--text); }
.prod-adv-list li:hover::before { transform: translateX(4px); }

.prod-sidebar {
  position: sticky;
  top: 80px;
}

.prod-sidebar__card {
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.prod-sidebar__card-head {
  background: var(--bg-2);
  color: var(--text-muted);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}

.prod-sidebar__card-body {
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}
.prod-sidebar__card-body p + p { margin-top: 10px; }
.prod-sidebar__card-body a { color: var(--accent); }

.prod-sidebar__uses-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.prod-sidebar__uses-list li {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--rule);
  padding: 5px 10px;
  border-radius: 5px;
}

@media (max-width: 860px) {
  .prod-page__body-inner { grid-template-columns: 1fr; }
  .prod-sidebar { position: static; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 80ms; }
[data-reveal][data-delay="2"] { transition-delay: 160ms; }
[data-reveal][data-delay="3"] { transition-delay: 240ms; }
[data-reveal][data-delay="4"] { transition-delay: 320ms; }

/* ============================================================
   MISC
   ============================================================ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

hr.divider {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.text-center { text-align: center; }

/* ============================================================
   HOME — NOTÍCIAS (magazine layout)
   ============================================================ */
.i-news {
  background: var(--bg-2);
  padding: clamp(64px, 10vw, 112px) var(--gap);
  position: relative;
  overflow: hidden;
}
.i-news::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,24,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.i-news__kicker {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.i-news__kicker span {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  letter-spacing: -.02em;
}
.i-news__all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  flex-shrink: 0;
}
.i-news__all:hover { color: var(--accent); text-decoration: none; }

.i-news__grid {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

/* Card uniforme */
.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  transition: background .2s;
}
.news-card:hover { background: var(--bg-3); text-decoration: none; }

.news-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-3);
  flex-shrink: 0;
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .5s var(--ease);
}
.news-card:hover .news-card__thumb img { transform: scale(1.03); }
.news-card__thumb--empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.news-card__thumb--empty::after {
  content: '';
  display: block; width: 40px; height: 40px;
  border-radius: 50%; background: var(--rule);
}

.news-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
}

.news-card__body {
  padding: 24px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card__date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0;
}

.news-card__excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .i-news__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .i-news__grid { grid-template-columns: 1fr; }
  .i-news__kicker { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* FAQ responsive */
@media (max-width: 860px) {
  .i-faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .i-faq__header { position: static; }
}

/* ============================================================
   BLOG — archive + single
   ============================================================ */

/* Hero do blog */
.blog-hero {
  background: var(--bg-3);
  border-bottom: 1px solid var(--rule);
  padding: clamp(64px, 10vw, 120px) var(--gap) clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,24,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.blog-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.blog-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--rule);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .95;
  color: var(--text);
  margin-bottom: 24px;
}
.blog-hero__title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}
.blog-hero__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 48ch;
}

/* Body / grid */
.blog-body {
  padding: clamp(48px, 7vw, 96px) var(--gap);
  background: var(--bg);
}
.blog-body__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card featured ocupa linha inteira */
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.blog-card--featured .blog-card__thumb {
  height: 360px;
  border-radius: 12px 0 0 12px;
}
.blog-card--featured .blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.blog-card--featured .blog-card__body {
  border-radius: 0 12px 12px 0;
  border-left: none;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card--featured .blog-card__title { font-size: 24px; font-weight: 700; }

/* Card normal */
.blog-card {
  border-radius: 12px;
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--bg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(97,114,56,.1);
}

.blog-card__thumb {
  display: block;
  height: 200px;
  overflow: hidden;
  background: var(--bg-3);
}
.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s var(--ease);
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }

.blog-card__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.blog-card__body {
  padding: 24px;
  border: 1px solid var(--rule);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.blog-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 3px 10px;
  border-radius: 999px;
}
.blog-card__date {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-card__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card__title a:hover { color: var(--accent); }

.blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: gap .2s;
}
.blog-card__link:hover { gap: 10px; text-decoration: none; }

/* Paginação */
.blog-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.blog-pagination .prev,
.blog-pagination .next {
  width: auto;
  padding: 0 16px;
  font-size: 13px;
}

/* Estado vazio */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.blog-empty p { font-size: 18px; }

/* ============================================================
   SINGLE POST — .spost  Editorial Luxury
   ============================================================ */

/* ── HERO ── */
.spost__hero {
  background: var(--bg-3);
  border-bottom: 1px solid var(--rule);
  padding: clamp(80px, 12vw, 140px) var(--gap) clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.spost__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,24,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Acento verde difuso no canto */
.spost__hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97,114,56,.08) 0%, transparent 70%);
  pointer-events: none;
}
.spost__hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.spost__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.spost__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .18s;
}
.spost__breadcrumb a:hover { color: var(--accent); }
.spost__breadcrumb-cat { color: var(--accent); }

/* Título */
.spost__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 18ch;
}

/* Meta */
.spost__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.spost__meta-date,
.spost__meta-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-muted);
}
.spost__meta-date svg { opacity: .5; }
.spost__meta-sep { color: var(--rule); font-size: 14px; }

/* Linha decorativa */
.spost__hero-rule {
  position: absolute;
  bottom: 0;
  left: var(--gap);
  right: var(--gap);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--rule) 40%, transparent 100%);
}

/* ── COVER IMAGE ── */
.spost__cover {
  width: 100%;
  max-height: 580px;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.spost__cover-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.spost__cover-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.spost__cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(30,30,26,.6) 100%
  );
}

/* ── BODY — grid com sidebar ── */
.spost__body {
  padding: clamp(56px, 8vw, 96px) var(--gap) clamp(72px, 10vw, 128px);
}
.spost__body-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* ── CONTEÚDO PRINCIPAL ── */
.spost__main { min-width: 0; }

.spost__content {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 68ch;
}

/* Primeiro parágrafo como lead */
.spost__content > p:first-child {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 32px;
}

.spost__content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--text);
  margin: 56px 0 20px;
  position: relative;
}
/* Número decorativo nos h2 */
.spost__content h2::before {
  content: counter(h2-counter, decimal-leading-zero);
  counter-increment: h2-counter;
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.spost__content { counter-reset: h2-counter; }

.spost__content h3 {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 40px 0 12px;
}

.spost__content p { margin-bottom: 24px; }

.spost__content ul,
.spost__content ol {
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
}
.spost__content ul li,
.spost__content ol li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--rule);
  color: var(--text-soft);
  font-size: inherit;
  line-height: 1.7;
  position: relative;
}
.spost__content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}
.spost__content ol { counter-reset: ol-counter; }
.spost__content ol li { counter-increment: ol-counter; }
.spost__content ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  top: 14px;
}

.spost__content strong { font-weight: 700; color: var(--text); }
.spost__content em { font-style: italic; }
.spost__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.spost__content a:hover { text-decoration: none; }

/* Blockquote editorial */
.spost__content blockquote {
  margin: 48px 0;
  padding: 32px 40px;
  background: var(--bg-3);
  border-radius: 4px;
  position: relative;
}
.spost__content blockquote::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: .5;
}
.spost__content blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* Imagens inline */
.spost__content img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 36px 0;
  display: block;
}

/* Tabelas */
.spost__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
  font-size: 14px;
}
.spost__content th,
.spost__content td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}
.spost__content tr:last-child th,
.spost__content tr:last-child td { border-bottom: none; }
.spost__content th {
  background: var(--bg-3);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
}
.spost__content tr:hover td { background: rgba(97,114,56,.05); transition: background .15s; }

/* ── TAGS ── */
.spost__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.spost__tags-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}
.spost__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--bg-3);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .18s cubic-bezier(.32,.72,0,1),
              color .18s cubic-bezier(.32,.72,0,1),
              border-color .18s cubic-bezier(.32,.72,0,1);
}
.spost__tag:hover {
  background: var(--accent-lt);
  color: var(--accent);
  border-color: rgba(97,114,56,.4);
}

/* ── SIDEBAR ── */
.spost__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spost__aside-card {
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-3);
}
.spost__aside-card--cta {
  background: var(--bg-2);
  border-color: rgba(97,114,56,.25);
}

.spost__aside-card-head {
  padding: 13px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}
.spost__aside-card--cta .spost__aside-card-head {
  background: rgba(97,114,56,.12);
  color: var(--accent);
  border-color: rgba(97,114,56,.2);
}

.spost__aside-card-body {
  padding: 20px;
}
.spost__aside-card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.spost__aside-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  gap: 12px;
}
.spost__aside-row:last-child { border-bottom: none; }
.spost__aside-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.spost__aside-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: right;
}

.spost__aside-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background .2s cubic-bezier(.32,.72,0,1),
              transform .2s cubic-bezier(.32,.72,0,1);
}
.spost__aside-cta:hover {
  background: #7a9046;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.spost__aside-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 0;
  transition: color .18s;
}
.spost__aside-whatsapp:hover { color: var(--accent); }
.spost__aside-whatsapp svg { flex-shrink: 0; }

/* ── NAVEGAÇÃO ENTRE POSTS ── */
.spost__nav {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-3);
}
.spost__nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 var(--gap);
}
.spost__nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px) 0;
  text-decoration: none;
  transition: background .2s;
  position: relative;
}
.spost__nav-item--prev { border-right: 1px solid var(--rule); padding-right: 40px; }
.spost__nav-item--next { justify-content: flex-end; padding-left: 40px; text-align: right; }
.spost__nav-item:hover { text-decoration: none; }
.spost__nav-item:hover .spost__nav-title { color: var(--accent); }
.spost__nav-item:hover .spost__nav-arrow { transform: scale(1.2); }

.spost__nav-arrow {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.32,.72,0,1);
}
.spost__nav-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spost__nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.spost__nav-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--text);
  line-height: 1.3;
  transition: color .18s;
}

/* ── RELACIONADOS ── */
.spost__related {
  padding: clamp(64px, 9vw, 112px) var(--gap);
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}
.spost__related-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.spost__related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.spost__related-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .18s;
}
.spost__related-all:hover { color: var(--accent); }

.spost__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

/* Card relacionado */
.spost__rcard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg);
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.spost__rcard:hover { background: var(--bg-3); text-decoration: none; }

.spost__rcard-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--bg-3);
  flex-shrink: 0;
}
.spost__rcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.32,.72,0,1);
}
.spost__rcard:hover .spost__rcard-thumb img { transform: scale(1.04); }
.spost__rcard-thumb--empty {
  width: 100%;
  height: 100%;
  background: var(--bg-2);
}

.spost__rcard-body {
  padding: 24px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spost__rcard-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.spost__rcard-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.spost__rcard-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.spost__rcard-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 18px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s, transform .25s cubic-bezier(.32,.72,0,1);
}
.spost__rcard:hover .spost__rcard-arrow { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .spost__body-inner { grid-template-columns: 1fr 280px; gap: 48px; }
}
@media (max-width: 860px) {
  .spost__body-inner { grid-template-columns: 1fr; }
  .spost__sidebar { position: static; }
  .spost__related-grid { grid-template-columns: repeat(2, 1fr); }
  .spost__nav-item--prev { padding-right: 24px; }
  .spost__nav-item--next { padding-left: 24px; }
}
@media (max-width: 600px) {
  .spost__title { max-width: none; }
  .spost__cover-img { height: 260px; }
  .spost__related-grid { grid-template-columns: 1fr; }
  .spost__nav-inner { grid-template-columns: 1fr; padding: 0; }
  .spost__nav-item--prev { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px var(--gap); }
  .spost__nav-item--next { justify-content: flex-start; text-align: left; padding: 24px var(--gap); }
  .spost__content > p:first-child { font-size: clamp(16px, 4vw, 18px); }
}



.text-center .s-head__sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   QUEM SOMOS
   ============================================================ */

/* Hero — mesmo partido do hero da home */
.qs-hero {
  background: var(--bg-3);
  padding: clamp(80px, 10vw, 120px) var(--gap) clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.qs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,24,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.qs-hero::after {
  content: '';
  position: absolute;
  left: var(--gap);
  bottom: 0;
  right: var(--gap);
  height: 1px;
  background: var(--rule);
}

.qs-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.qs-hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--text);
  margin: 24px 0 28px;
}
.qs-hero__title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.qs-hero__lead {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 50ch;
}

/* Stats lado direito */
.qs-hero__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--rule);
  padding-left: 48px;
  padding-bottom: 8px;
}

.qs-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.qs-stat:first-child { border-top: 1px solid var(--rule); }

.qs-stat__n {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.qs-stat__l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Corpo editorial — texto + aside */
.qs-body {
  background: var(--bg);
  padding: clamp(64px, 9vw, 112px) var(--gap);
}

.qs-body__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

/* Conteúdo principal */
.qs-content { }

.qs-block {
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.qs-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.qs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qs-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.qs-p {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.qs-p:last-child { margin-bottom: 0; }
.qs-p strong { color: var(--text); font-weight: 600; }

/* Endereço no aside — Quem Somos */
.qs-addr-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* H2 do corpo dos produtos (substituiu inline style) */
.prod-desc__h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--text);
  margin: 56px 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.qs-quote {
  margin: 52px 0;
  padding: 36px 40px;
  background: var(--bg-2);
  border-radius: 4px;
  position: relative;
}
.qs-quote::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: .4;
}
.qs-quote p,
.qs-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: var(--text);
}

/* Aside sticky */
.qs-aside {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qs-card {
  border: 1px solid var(--rule);
  overflow: hidden;
  margin-bottom: 2px;
}

.qs-card__head {
  background: var(--bg-3);
  padding: 12px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--rule);
}

.qs-card__body {
  padding: 20px;
}

.qs-prod-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: background .15s;
}
.qs-prod-link:last-child { border-bottom: none; }
.qs-prod-link:hover { text-decoration: none; }
.qs-prod-link:hover .qs-prod-link__name { color: var(--accent); }
.qs-prod-link:hover .qs-prod-link__arr { opacity: 1; letter-spacing: .08em; }

.qs-prod-link__num {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .06em;
  width: 20px;
  flex-shrink: 0;
}
.qs-prod-link__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  transition: color .18s;
}
.qs-prod-link__arr {
  font-size: 12px;
  color: var(--accent);
  opacity: .4;
  transition: opacity .18s, letter-spacing .18s;
}

.qs-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: color .18s;
}
.qs-contact-link:last-of-type { border-bottom: none; margin-bottom: 0; }
.qs-contact-link:hover { color: var(--text); text-decoration: none; }
.qs-contact-link svg { flex-shrink: 0; color: var(--accent); }

/* Tagline final */
.qs-tagline {
  background: var(--bg-3);
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 7vw, 80px) var(--gap);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.qs-tagline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26,26,24,.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.qs-tagline__main {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1;
  position: relative;
}

.qs-tagline__sub {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  letter-spacing: .06em;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 50ch;
  text-align: center;
  position: relative;
}

/* Responsive */
@media (max-width: 900px) {
  .qs-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .qs-hero__right {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 32px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .qs-stat { flex: 1; min-width: 100px; border-top: none !important; border-bottom: none; padding: 16px 16px 16px 0; }
  .qs-body__inner { grid-template-columns: 1fr; gap: 48px; }
  .qs-aside { position: static; }
}
@media (max-width: 560px) {
  .qs-hero__title { font-size: clamp(48px, 13vw, 72px); }
  .qs-quote { padding: 20px 22px; font-size: clamp(16px, 4.5vw, 20px); }
}

/* Âncoras: compensa a altura da nav sticky (72px) ao rolar até uma seção,
   evitando que o topo da seção fique escondido atrás da barra fixa. */
#produtos, #contato, #noticias,
.i-products, .i-contact, .i-news {
  scroll-margin-top: 88px;
}
