/* ⚠ CÓPIA VENDORIZADA de "Nova Identidade 2026/css/components.css" (2026-08-17) —
   ver aviso completo em design-tokens.css deste mesmo diretório. */
/* ==========================================================================
   INDPARTS — BRAND SYSTEM 2026 · components.css
   Fase 2 · Digital Design System (BETA / em aprovação)

   Depende de design-tokens.css (carregar antes deste arquivo).
   Nomenclatura: .btn / .btn--primary · .product-card · .tech-spec · .node ·
   .connection · .module · .partner-lockup · .character-callout — sem
   framework utilitário gigante, classes com nome claro por função.
   ========================================================================== */

/* -------------------------------------------------------------------------
   00 · RESET MÍNIMO + BASE
   ------------------------------------------------------------------------- */
.ids *, .ids *::before, .ids *::after{ box-sizing:border-box; }
.ids{ color:var(--color-text); font-family:var(--font-sans); }
.ids img{ max-width:100%; display:block; }
.ids button{ font-family:inherit; }

/* -------------------------------------------------------------------------
   01 · TIPOGRAFIA — classes de escala (uso: <h1 class="ids-display">...)
   ------------------------------------------------------------------------- */
.ids-display-xl{ font-family:var(--font-sans); font-weight:var(--fw-bold); font-size:clamp(34px,5.4vw,var(--text-display-xl)); line-height:var(--lh-display); letter-spacing:-.015em; }
.ids-display{     font-family:var(--font-sans); font-weight:var(--fw-bold); font-size:clamp(30px,4.6vw,var(--text-display));    line-height:var(--lh-display); letter-spacing:-.015em; }
.ids-h1{ font-family:var(--font-sans); font-weight:var(--fw-bold); font-size:clamp(28px,3.8vw,var(--text-h1)); line-height:var(--lh-heading); letter-spacing:-.01em; }
.ids-h2{ font-family:var(--font-sans); font-weight:var(--fw-bold); font-size:clamp(24px,3.2vw,var(--text-h2)); line-height:var(--lh-heading); letter-spacing:-.01em; }
.ids-h3{ font-family:var(--font-sans); font-weight:var(--fw-semibold); font-size:clamp(20px,2.6vw,var(--text-h3)); line-height:var(--lh-heading); }
.ids-h4{ font-family:var(--font-sans); font-weight:var(--fw-semibold); font-size:var(--text-h4); line-height:var(--lh-heading); }
.ids-body-lg{ font-size:var(--text-body-lg); line-height:var(--lh-body); color:var(--color-text-muted); }
.ids-body{    font-size:var(--text-body);    line-height:var(--lh-body); color:var(--color-text-muted); }
.ids-body-sm{ font-size:var(--text-body-sm); line-height:var(--lh-body); color:var(--color-text-muted); }
.ids-caption{ font-size:var(--text-caption); line-height:1.5; color:var(--color-text-muted); }
.ids-overline{ font-family:var(--font-mono); font-size:var(--text-overline); font-weight:var(--fw-semibold); letter-spacing:.12em; text-transform:uppercase; color:var(--color-text-muted); }
.ids-mono{ font-family:var(--font-mono); font-variant-numeric:tabular-nums; }

/* -------------------------------------------------------------------------
   02 · FOCUS — todo elemento interativo do sistema herda daqui
   ------------------------------------------------------------------------- */
.ids a, .ids button, .ids input, .ids select, .ids textarea, .ids [tabindex]{
  outline:none;
}
.ids a:focus-visible, .ids button:focus-visible, .ids input:focus-visible,
.ids select:focus-visible, .ids textarea:focus-visible, .ids [tabindex]:focus-visible{
  box-shadow:var(--focus-ring);
  border-radius:var(--radius-xs);
}

/* -------------------------------------------------------------------------
   13 · BOTÕES
   Anatomia: label [+ ícone opcional]. Tamanhos SM/MD/LG. Estados: default,
   hover, active, focus, disabled, loading. Altura mínima mobile 44px.
   ------------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-sans); font-weight:var(--fw-semibold); font-size:14.5px; letter-spacing:.01em;
  border-radius:var(--radius-sm); border:var(--border-width) solid transparent; cursor:pointer;
  min-height:var(--size-control-md); padding:0 22px; text-decoration:none; white-space:nowrap;
  transition:background var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}
.btn:active{ transform:translateY(1px); }
.btn[disabled], .btn.is-disabled{ opacity:.45; cursor:not-allowed; pointer-events:none; }
.btn--sm{ min-height:var(--size-control-sm); padding:0 16px; font-size:13px; gap:6px; }
.btn--lg{ min-height:var(--size-control-lg); padding:0 28px; font-size:15.5px; }

.btn--primary{ background:var(--color-primary); color:#fff; border-color:var(--color-primary); }
.btn--primary:hover{ background:var(--color-primary-hover); border-color:var(--color-primary-hover); }
.btn--primary:active{ background:var(--color-primary-active); }

.btn--secondary{ background:transparent; color:var(--color-primary); border-color:var(--color-primary); }
.btn--secondary:hover{ background:var(--blue-50); }

.btn--tertiary{ background:var(--color-surface-subtle); color:var(--color-text); border-color:transparent; }
.btn--tertiary:hover{ background:var(--gray-200); }

.btn--ghost{ background:transparent; color:var(--color-text-muted); border-color:transparent; padding:0 10px; min-height:auto; height:32px; font-weight:var(--fw-medium); }
.btn--ghost:hover{ color:var(--color-text); background:var(--color-surface-subtle); }

.btn--icon{ padding:0; width:var(--size-control-md); min-height:var(--size-control-md); border-radius:var(--radius-sm); background:var(--color-surface-subtle); color:var(--color-text); border-color:transparent; }
.btn--icon:hover{ background:var(--gray-200); }
.btn--icon.btn--sm{ width:var(--size-control-sm); min-height:var(--size-control-sm); }

.btn--whatsapp{ background:#1EA952; color:#fff; border-color:#1EA952; }
.btn--whatsapp:hover{ background:#188C44; border-color:#188C44; }

.btn.is-loading{ color:transparent; pointer-events:none; position:relative; }
.btn.is-loading::after{
  content:""; position:absolute; width:16px; height:16px; border-radius:50%;
  border:2px solid rgba(255,255,255,.4); border-top-color:#fff; animation:ids-spin .7s linear infinite;
}
.btn--secondary.is-loading::after, .btn--tertiary.is-loading::after, .btn--ghost.is-loading::after{
  border-color:rgba(51,69,112,.25); border-top-color:var(--color-primary);
}
@keyframes ids-spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce){ .btn.is-loading::after{ animation:none; } }

/* -------------------------------------------------------------------------
   14 · LINKS
   ------------------------------------------------------------------------- */
.ids-link{ color:var(--color-link); text-decoration:underline; text-underline-offset:2px; text-decoration-thickness:1px; font-weight:var(--fw-medium); }
.ids-link:hover{ color:var(--color-primary-hover); }

.nav-link{ font-family:var(--font-sans); font-weight:var(--fw-medium); font-size:14px; color:var(--color-text); text-decoration:none; padding:8px 4px; border-bottom:2px solid transparent; transition:border-color var(--duration-base) var(--ease-standard), color var(--duration-base) var(--ease-standard); }
.nav-link:hover, .nav-link.is-active{ color:var(--color-primary); border-color:var(--color-primary); }

.technical-link{ font-family:var(--font-mono); font-size:13px; font-weight:var(--fw-medium); color:var(--color-technical); background:var(--color-surface-subtle); border-radius:var(--radius-xs); padding:3px 8px; text-decoration:none; }
.technical-link:hover{ background:var(--gray-200); }

.external-link{ display:inline-flex; align-items:center; gap:5px; color:var(--color-link); text-decoration:underline; text-underline-offset:2px; }
.external-link::after{ content:"↗"; font-size:.85em; }

/* -------------------------------------------------------------------------
   15 · FORMULÁRIOS
   Anatomia: label + control + helper/error. Mín. 44px altura mobile.
   Placeholder nunca substitui label.
   ------------------------------------------------------------------------- */
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-size:13px; font-weight:var(--fw-semibold); color:var(--color-text); }
.field label .required{ color:var(--color-error); margin-left:2px; }
.field .helper{ font-size:12.5px; color:var(--color-text-muted); }
.field .error-msg{ font-size:12.5px; color:var(--color-error); display:flex; align-items:center; gap:5px; }
.field .success-msg{ font-size:12.5px; color:var(--color-success); }

.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="number"], .field select, .field textarea{
  width:100%; font-family:var(--font-sans); font-size:16px; color:var(--color-text);
  background:var(--color-surface); border:var(--border-width) solid var(--color-border-strong);
  border-radius:var(--radius-xs); padding:0 14px; min-height:var(--size-touch-min);
  transition:border-color var(--duration-base) var(--ease-standard), background var(--duration-base) var(--ease-standard);
}
.field textarea{ padding:12px 14px; min-height:110px; resize:vertical; font-family:var(--font-sans); }
.field input:hover, .field select:hover, .field textarea:hover{ border-color:var(--color-text-muted); }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--color-focus); box-shadow:var(--focus-ring); outline:none; }
.field input:disabled, .field select:disabled, .field textarea:disabled{ background:var(--color-surface-subtle); color:var(--color-text-muted); cursor:not-allowed; }
.field.is-filled input{ border-color:var(--color-border-strong); }
.field.is-error input, .field.is-error select, .field.is-error textarea{ border-color:var(--color-error); }
.field.is-success input{ border-color:var(--color-success); }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23535D71' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; background-size:16px; padding-right:38px; }

.field-check{ display:flex; align-items:flex-start; gap:10px; }
.field-check input[type="checkbox"], .field-check input[type="radio"]{
  appearance:none; width:20px; height:20px; flex:none; margin-top:1px;
  border:var(--border-width) solid var(--color-border-strong); background:var(--color-surface);
  display:inline-flex; align-items:center; justify-content:center; cursor:pointer;
}
.field-check input[type="checkbox"]{ border-radius:var(--radius-xs); }
.field-check input[type="radio"]{ border-radius:50%; }
.field-check input:checked{ background:var(--color-primary); border-color:var(--color-primary); }
.field-check input[type="checkbox"]:checked::after{ content:""; width:5px; height:9px; border:2px solid #fff; border-top:none; border-left:none; transform:rotate(45deg) translate(-1px,-1px); }
.field-check input[type="radio"]:checked::after{ content:""; width:8px; height:8px; border-radius:50%; background:#fff; }
.field-check input:focus-visible{ box-shadow:var(--focus-ring); }
.field-check label{ font-size:13.5px; color:var(--color-text-muted); line-height:1.5; }

.toggle{ position:relative; display:inline-flex; align-items:center; width:44px; height:26px; flex:none; }
.toggle input{ position:absolute; inset:0; opacity:0; cursor:pointer; margin:0; }
.toggle .track{ position:absolute; inset:0; background:var(--gray-300); border-radius:var(--radius-pill); transition:background var(--duration-base) var(--ease-standard); }
.toggle .thumb{ position:absolute; top:3px; left:3px; width:20px; height:20px; background:#fff; border-radius:50%; box-shadow:var(--shadow-xs); transition:transform var(--duration-base) var(--ease-standard); }
.toggle input:checked + .track{ background:var(--color-primary); }
.toggle input:checked ~ .thumb{ transform:translateX(18px); }
.toggle input:focus-visible ~ .track{ box-shadow:var(--focus-ring); }

.file-upload{ border:1.5px dashed var(--color-border-strong); border-radius:var(--radius-xs); padding:24px; text-align:center; background:var(--color-surface-subtle); cursor:pointer; }
.file-upload:hover{ border-color:var(--color-primary); background:var(--blue-50); }
.file-upload input{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.file-upload .ids-caption{ margin-top:6px; }

/* -------------------------------------------------------------------------
   16/17 · CARDS — famílias distintas, cada uma responde a uma função
   ------------------------------------------------------------------------- */
.card-base{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-sm); }

/* A. Product card — imagem, nome, referência, specs, status, CTA */
.product-card{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-sm); overflow:hidden; transition:border-color var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard); }
.product-card:hover{ border-color:var(--color-border-strong); box-shadow:var(--shadow-sm); }
.product-card__media{ position:relative; background:var(--color-surface-subtle); aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; padding:20px; }
.product-card__media img{ max-height:100%; width:auto; object-fit:contain; }
.product-card__body{ padding:18px 20px 20px; }
.product-card__cat{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--color-text-muted); }
.product-card__name{ font-family:var(--font-sans); font-weight:var(--fw-bold); font-size:16px; color:var(--color-text); margin-top:4px; }
.product-card__ref{ font-family:var(--font-mono); font-size:11.5px; color:var(--color-text-muted); margin-top:2px; }
.product-card__specs{ display:flex; flex-direction:column; gap:4px; margin:14px 0; }
.product-card__specs span{ display:flex; justify-content:space-between; font-family:var(--font-mono); font-size:12.5px; color:var(--color-text); }
.product-card__specs span em{ font-style:normal; font-family:var(--font-sans); color:var(--color-text-muted); }
.product-card__footer{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:16px; }

/* B. Technical card — dado grande, unidade, descrição */
.tech-card{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-sm); padding:20px; }
.tech-card__value{ font-family:var(--font-mono); font-weight:var(--fw-bold); font-size:30px; color:var(--color-text); line-height:1; }
.tech-card__unit{ font-family:var(--font-mono); font-size:13px; color:var(--color-text-muted); margin-left:4px; }
.tech-card__desc{ font-size:12.5px; color:var(--color-text-muted); margin-top:8px; }

/* C. Content card — categoria, headline, resumo, CTA */
.content-card{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-sm); padding:22px; display:flex; flex-direction:column; gap:10px; }
.content-card__cat{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--color-link); }
.content-card__title{ font-weight:var(--fw-bold); font-size:17px; color:var(--color-text); }
.content-card__summary{ font-size:13.5px; color:var(--color-text-muted); line-height:1.6; }

/* D. Case card — problema, solução, resultado/prova */
.case-card{ background:var(--blue-900); color:#fff; border-radius:var(--radius-lg); padding:28px; display:flex; flex-direction:column; gap:16px; }
.case-card__row{ padding-top:14px; border-top:1px solid rgba(255,255,255,.14); }
.case-card__row:first-child{ border-top:none; padding-top:0; }
.case-card__label{ font-family:var(--font-mono); font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--blue-300); }
.case-card__text{ font-size:14px; color:rgba(255,255,255,.85); margin-top:5px; line-height:1.55; }

/* E. Service card — nome, descrição, CTA */
.service-card{ border-left:3px solid var(--color-primary); background:var(--color-surface-subtle); border-radius:0 var(--radius-sm) var(--radius-sm) 0; padding:20px 22px; }
.service-card__name{ font-weight:var(--fw-bold); font-size:15.5px; }
.service-card__desc{ font-size:13.5px; color:var(--color-text-muted); margin-top:6px; line-height:1.55; }

/* F. Manufacturer card — logo, descrição, link */
.manufacturer-card{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-sm); padding:20px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:10px; }
.manufacturer-card img{ height:32px; width:auto; }
.manufacturer-card__desc{ font-size:12.5px; color:var(--color-text-muted); }

/* -------------------------------------------------------------------------
   18 · TECH SPEC — valores em mono, labels em sans
   ------------------------------------------------------------------------- */
.tech-spec--line{ display:flex; flex-wrap:wrap; gap:20px 32px; }
.tech-spec--line .tech-spec__item{ display:flex; flex-direction:column; gap:3px; }
.tech-spec--grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media (min-width:640px){ .tech-spec--grid{ grid-template-columns:repeat(4,1fr); } }
.tech-spec--grid .tech-spec__item{ background:var(--color-surface-subtle); border-radius:var(--radius-xs); padding:12px 14px; }
.tech-spec__label{ font-family:var(--font-sans); font-size:11px; letter-spacing:.04em; text-transform:uppercase; color:var(--color-text-muted); }
.tech-spec__value{ font-family:var(--font-mono); font-weight:var(--fw-semibold); font-size:16px; color:var(--color-text); }
table.tech-spec--table{ width:100%; border-collapse:collapse; font-size:14px; }
table.tech-spec--table td{ padding:10px 14px; border-bottom:1px solid var(--color-border); }
table.tech-spec--table td:first-child{ font-family:var(--font-sans); color:var(--color-text-muted); font-weight:var(--fw-medium); width:42%; background:var(--color-surface-subtle); }
table.tech-spec--table td:last-child{ font-family:var(--font-mono); font-weight:var(--fw-semibold); color:var(--color-text); }

/* -------------------------------------------------------------------------
   19 · TABELAS
   ------------------------------------------------------------------------- */
.table-scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; border:var(--border-width) solid var(--color-border); border-radius:var(--radius-xs); }
table.ids-table{ width:100%; border-collapse:collapse; font-size:13.5px; min-width:520px; }
table.ids-table caption{ text-align:left; font-size:12px; color:var(--color-text-muted); padding:10px 14px; caption-side:top; }
table.ids-table th{ text-align:left; font-family:var(--font-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--color-text-muted); background:var(--color-surface-subtle); padding:10px 14px; border-bottom:2px solid var(--color-border-strong); }
table.ids-table td{ padding:11px 14px; border-bottom:1px solid var(--color-border); color:var(--color-text); }
table.ids-table tbody tr:nth-child(even) td{ background:var(--color-surface-subtle); }
table.ids-table.ids-table--technical td:not(:first-child){ font-family:var(--font-mono); }
table.ids-table.ids-table--comparison th:not(:first-child){ text-align:center; }
table.ids-table.ids-table--comparison td:not(:first-child){ text-align:center; }

/* mobile: cards em vez de tabela — usar [data-label] em cada td */
@media (max-width:640px){
  table.ids-table.ids-table--cards-mobile, table.ids-table.ids-table--cards-mobile thead{ display:none; }
  table.ids-table.ids-table--cards-mobile, table.ids-table.ids-table--cards-mobile tbody, table.ids-table.ids-table--cards-mobile tr, table.ids-table.ids-table--cards-mobile td{ display:block; width:100%; min-width:0; }
  table.ids-table.ids-table--cards-mobile tr{ border:var(--border-width) solid var(--color-border); border-radius:var(--radius-xs); margin-bottom:12px; padding:6px 0; }
  table.ids-table.ids-table--cards-mobile td{ display:flex; justify-content:space-between; gap:12px; border-bottom:1px solid var(--color-border); background:none !important; }
  table.ids-table.ids-table--cards-mobile td:last-child{ border-bottom:none; }
  table.ids-table.ids-table--cards-mobile td::before{ content:attr(data-label); font-family:var(--font-sans); font-weight:var(--fw-semibold); color:var(--color-text-muted); font-size:11px; text-transform:uppercase; letter-spacing:.04em; }
}

/* -------------------------------------------------------------------------
   19B · EYEBROW — rótulo de seção. Usado nas 3 páginas do Brand System mas
   nunca tinha sido formalizado aqui (só existia local em cada <style> —
   corrigido ao construir a landing DPS, ver Governança regra 10).
   ------------------------------------------------------------------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-weight:var(--fw-semibold); font-size:11px;
  letter-spacing:.12em; text-transform:uppercase; color:var(--color-link);
  background:var(--blue-50); border-radius:var(--radius-pill); padding:6px 14px; margin-bottom:16px;
}
.eyebrow--on-dark{ background:rgba(255,255,255,.12); color:#fff; }

/* -------------------------------------------------------------------------
   20 · BADGES / TAGS / STATUS
   ------------------------------------------------------------------------- */
.badge{ display:inline-flex; align-items:center; gap:5px; font-family:var(--font-sans); font-weight:var(--fw-semibold); font-size:11px; letter-spacing:.03em; text-transform:uppercase; padding:5px 10px; border-radius:var(--radius-xs); background:var(--color-surface-subtle); color:var(--color-text); border:1px solid transparent; }
.badge--pill{ border-radius:var(--radius-pill); }
.badge--success{ background:var(--color-success-bg); color:var(--color-success); }
.badge--warning{ background:var(--color-warning-bg); color:var(--color-warning); }
.badge--info{ background:var(--color-info-bg); color:var(--color-link); }
.badge--technical{ font-family:var(--font-mono); text-transform:none; letter-spacing:0; background:var(--blue-900); color:#fff; }
.badge--stock{ background:var(--color-success-bg); color:var(--color-success); }
.badge--stock::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--color-success); }
.badge--validation{ background:var(--color-warning-bg); color:var(--color-warning); border-color:var(--color-warning); }
.badge--validation::before{ content:"▲"; font-size:8px; }

/* -------------------------------------------------------------------------
   21 · NAVIGATION SYSTEM
   ------------------------------------------------------------------------- */
.site-header{ position:sticky; top:0; z-index:var(--z-sticky); background:rgba(255,255,255,.92); backdrop-filter:blur(10px); border-bottom:var(--border-width) solid var(--color-border); }
.site-header__inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:14px var(--container-padding-inline); max-width:var(--container-max-lg); margin:0 auto; }
.site-header__logo{ flex-shrink:0; }
.site-header__logo img{ height:30px; width:auto; max-width:none; }
.site-header__nav{ display:none; gap:26px; }
@media (min-width:1024px){ .site-header__nav{ display:flex; } }
.site-header__cta{ display:flex; align-items:center; gap:12px; }
.site-header__hamburger{ display:flex; width:44px; height:44px; align-items:center; justify-content:center; background:none; border:var(--border-width) solid var(--color-border-strong); border-radius:var(--radius-xs); }
@media (min-width:1024px){ .site-header__hamburger{ display:none; } }
.site-header__hamburger span, .site-header__hamburger span::before, .site-header__hamburger span::after{ content:""; display:block; width:18px; height:2px; background:var(--color-text); position:relative; transition:transform var(--duration-base) var(--ease-standard); }
.site-header__hamburger span::before{ position:absolute; top:-6px; }
.site-header__hamburger span::after{ position:absolute; top:6px; }

.mobile-menu{ position:fixed; inset:0; z-index:var(--z-modal); display:none; }
.mobile-menu[data-open="true"]{ display:block; }
.mobile-menu__backdrop{ position:absolute; inset:0; background:rgba(10,18,36,.5); }
.mobile-menu__panel{ position:absolute; top:0; right:0; bottom:0; width:min(320px,86vw); background:var(--color-surface); box-shadow:var(--shadow-md); padding:20px; display:flex; flex-direction:column; gap:4px; }
.mobile-menu__panel .nav-link{ padding:14px 4px; font-size:16px; border-bottom:1px solid var(--color-border); }
.mobile-menu__close{ align-self:flex-end; width:40px; height:40px; }

.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--color-text-muted); flex-wrap:wrap; }
.breadcrumb a{ color:var(--color-text-muted); text-decoration:none; }
.breadcrumb a:hover{ color:var(--color-primary); text-decoration:underline; }
.breadcrumb .sep{ color:var(--gray-400); }
.breadcrumb [aria-current="page"]{ color:var(--color-text); font-weight:var(--fw-medium); }

.anchor-nav{ display:flex; gap:4px; overflow-x:auto; border-bottom:var(--border-width) solid var(--color-border); scrollbar-width:none; }
.anchor-nav::-webkit-scrollbar{ display:none; }
.anchor-nav a{ flex:none; padding:12px 14px; font-size:13px; font-weight:var(--fw-medium); color:var(--color-text-muted); text-decoration:none; border-bottom:2px solid transparent; white-space:nowrap; }
.anchor-nav a.is-active{ color:var(--color-primary); border-color:var(--color-primary); }

.site-footer{ background:var(--blue-900); color:rgba(255,255,255,.7); padding:48px 0 24px; }
.site-footer__grid{ display:grid; grid-template-columns:1fr; gap:32px; max-width:var(--container-max-lg); margin:0 auto; padding:0 var(--container-padding-inline); }
@media (min-width:768px){ .site-footer__grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; } }
.site-footer h5{ color:#fff; font-size:12px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:12px; }
.site-footer a{ color:rgba(255,255,255,.7); text-decoration:none; font-size:13.5px; display:block; padding:5px 0; }
.site-footer a:hover{ color:#fff; }
.site-footer__bottom{ max-width:var(--container-max-lg); margin:32px auto 0; padding:20px var(--container-padding-inline) 0; border-top:1px solid rgba(255,255,255,.12); font-size:12px; color:rgba(255,255,255,.5); }

/* -------------------------------------------------------------------------
   22 · HERO SYSTEM
   ------------------------------------------------------------------------- */
.hero{ position:relative; overflow:hidden; padding:64px var(--container-padding-inline); border-radius:var(--radius-lg); }
.hero__grid{ position:relative; display:grid; grid-template-columns:1fr; gap:32px; align-items:center; max-width:var(--container-max-lg); margin:0 auto; }
@media (min-width:860px){ .hero__grid{ grid-template-columns:1.1fr .9fr; } }
.hero__eyebrow{ display:inline-flex; font-family:var(--font-mono); font-weight:var(--fw-semibold); font-size:11px; letter-spacing:.1em; text-transform:uppercase; padding:6px 14px; border-radius:var(--radius-pill); margin-bottom:16px; }
.hero__title{ font-family:var(--font-sans); font-weight:var(--fw-bold); font-size:clamp(28px,4.4vw,44px); line-height:1.1; letter-spacing:-.015em; }
.hero__sub{ font-size:16.5px; line-height:1.6; margin-top:14px; max-width:48ch; }
.hero__ctas{ display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.hero__visual{ display:flex; align-items:center; justify-content:center; }
.hero__visual img{ max-height:280px; width:auto; }

.hero--institutional{ background:linear-gradient(160deg,var(--blue-900) 0%,var(--blue-950) 100%); color:#fff; }
.hero--institutional::after{ content:""; position:absolute; inset:0; opacity:.5; pointer-events:none; background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size:32px 32px; mask-image:radial-gradient(ellipse at 68% 25%, black, transparent 70%); }
.hero--institutional .hero__eyebrow{ background:rgba(255,255,255,.12); color:#fff; }
.hero--institutional .hero__sub{ color:rgba(255,255,255,.78); }

.hero--product{ background:var(--color-surface-subtle); color:var(--color-text); }
.hero--product .hero__eyebrow{ background:var(--blue-100); color:var(--color-primary); }
.hero--product .hero__sub{ color:var(--color-text-muted); }
.hero--product .hero__data{ display:flex; flex-wrap:wrap; gap:20px; margin-top:24px; padding-top:20px; border-top:var(--border-width) solid var(--color-border-strong); }

.hero--campaign{ background:var(--blue-600); color:#fff; text-align:center; padding-top:80px; padding-bottom:80px; }
.hero--campaign .hero__grid{ grid-template-columns:1fr; }
.hero--campaign .hero__title{ font-size:clamp(30px,5vw,48px); max-width:22ch; margin:0 auto; }
.hero--campaign .hero__sub{ margin:14px auto 0; }
.hero--campaign .hero__ctas{ justify-content:center; }

.hero--cobrand{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); }
.hero--cobrand .partner-lockup{ margin-bottom:18px; }

/* -------------------------------------------------------------------------
   23 · GRAMÁTICA — .node / .connection / .module
   Proporções derivadas do símbolo real, ver design-tokens.css bloco 13.
   ------------------------------------------------------------------------- */
.node{
  --node-line: 8px;
  width:calc(var(--node-line) * var(--grammar-node-ratio));
  height:calc(var(--node-line) * var(--grammar-node-ratio));
  border-radius:6px; background:var(--color-primary); border:1.5px solid #fff;
  display:inline-flex; align-items:center; justify-content:center; flex:none;
}
.node--sm{ --node-line:5px; }
.node--on-dark{ background:var(--accent-on-dark); }

.connection{ position:relative; background:var(--color-primary); border-radius:2px; }
.connection--h{ height:6px; width:100%; }
.connection--v{ width:6px; height:100%; }
.connection--signal{ background:var(--color-text-muted); opacity:.6; }
.connection--signal.connection--h{ height:calc(6px * var(--grammar-line-signal-ratio)); } /* linha de sinal = 1/3 da estrutural, ver bloco 13 de design-tokens.css */

.module{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-xs); }
.module--filled{ background:var(--color-primary); border-color:var(--color-primary); }
.module--subtle{ background:var(--color-surface-subtle); border-color:transparent; }
.module-grid{ display:grid; grid-template-columns:1fr 4fr; gap:4px; } /* 1:4 — mesma razão ícone:wordmark do logo oficial */

/* -------------------------------------------------------------------------
   24 · STEPPER — proprietário, construído com nó + conexão
   ------------------------------------------------------------------------- */
.stepper{ display:flex; flex-direction:column; gap:0; }
@media (min-width:760px){ .stepper{ flex-direction:row; align-items:flex-start; } }
.stepper__step{ display:flex; flex-direction:row; gap:16px; flex:1; position:relative; }
@media (min-width:760px){ .stepper__step{ flex-direction:column; align-items:center; text-align:center; } }
.stepper__node{ display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:var(--radius-sm); background:var(--color-primary); color:#fff; font-family:var(--font-mono); font-weight:var(--fw-bold); font-size:14px; flex:none; z-index:1; }
.stepper__step:not(.is-active):not(.is-done) .stepper__node{ background:var(--color-surface-subtle); color:var(--color-text-muted); }
.stepper__connection{ position:absolute; background:var(--color-border-strong); }
.stepper__step:not(:last-child) .stepper__connection{ left:19px; top:40px; width:2px; height:calc(100% + 8px); }
@media (min-width:760px){ .stepper__step:not(:last-child) .stepper__connection{ left:calc(50% + 20px); top:19px; width:calc(100% - 8px); height:2px; } }
.stepper__step.is-done .stepper__connection{ background:var(--color-primary); }
.stepper__body{ padding-bottom:28px; }
@media (min-width:760px){ .stepper__body{ padding-bottom:0; margin-top:12px; } }
.stepper__label{ font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--color-text-muted); }
.stepper__title{ font-weight:var(--fw-semibold); font-size:14px; color:var(--color-text); margin-top:2px; }

/* -------------------------------------------------------------------------
   25 · ACCORDION
   ------------------------------------------------------------------------- */
.accordion{ border-top:var(--border-width) solid var(--color-border); }
.accordion-item{ border-bottom:var(--border-width) solid var(--color-border); }
.accordion-trigger{ width:100%; text-align:left; background:none; border:none; padding:18px 4px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-weight:var(--fw-semibold); font-size:15px; color:var(--color-text); cursor:pointer; }
.accordion-trigger .icon{ flex:none; width:20px; height:20px; position:relative; }
.accordion-trigger .icon::before, .accordion-trigger .icon::after{ content:""; position:absolute; background:var(--color-text); border-radius:2px; top:50%; left:50%; }
.accordion-trigger .icon::before{ width:12px; height:2px; transform:translate(-50%,-50%); }
.accordion-trigger .icon::after{ width:2px; height:12px; transform:translate(-50%,-50%); transition:transform var(--duration-base) var(--ease-standard); }
.accordion-item[data-open="true"] .icon::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.accordion-panel{ max-height:0; overflow:hidden; transition:max-height var(--duration-base) var(--ease-standard); }
.accordion-item[data-open="true"] .accordion-panel{ max-height:600px; }
.accordion-panel__inner{ padding:0 4px 20px; font-size:14px; color:var(--color-text-muted); line-height:1.65; }

/* -------------------------------------------------------------------------
   26 · TABS
   ------------------------------------------------------------------------- */
.tabs{ }
.tab-list{ display:flex; gap:4px; border-bottom:var(--border-width) solid var(--color-border); overflow-x:auto; }
.tab{ background:none; border:none; padding:12px 16px; font-weight:var(--fw-medium); font-size:14px; color:var(--color-text-muted); border-bottom:2px solid transparent; cursor:pointer; white-space:nowrap; }
.tab[aria-selected="true"]{ color:var(--color-primary); border-color:var(--color-primary); font-weight:var(--fw-semibold); }
.tab-panel{ padding:20px 2px; }
.tab-panel[hidden]{ display:none; }

/* -------------------------------------------------------------------------
   27 · ALERTAS E CALLOUTS
   ------------------------------------------------------------------------- */
.alert{ display:flex; gap:12px; border-left:4px solid var(--color-link); background:var(--color-info-bg); border-radius:0 var(--radius-xs) var(--radius-xs) 0; padding:14px 18px; }
.alert__title{ font-family:var(--font-mono); font-weight:var(--fw-bold); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--color-link); display:block; margin-bottom:4px; }
.alert__text{ font-size:13.5px; color:var(--color-text); line-height:1.55; }
.alert--technical{ border-color:var(--color-technical); background:var(--color-surface-subtle); }
.alert--technical .alert__title{ color:var(--color-technical); font-family:var(--font-mono); }
.alert--warning{ border-color:var(--color-warning); background:var(--color-warning-bg); }
.alert--warning .alert__title{ color:var(--color-warning); }
.alert--validation{ border-color:var(--color-warning); background:var(--color-warning-bg); }
.alert--validation .alert__title{ color:var(--color-warning); }
.alert--validation .alert__title::before{ content:"▲ "; }

/* -------------------------------------------------------------------------
   28 · CTA SYSTEM
   ------------------------------------------------------------------------- */
.cta-inline{ display:inline-flex; align-items:center; gap:6px; font-weight:var(--fw-semibold); color:var(--color-primary); text-decoration:none; }
.cta-inline::after{ content:"→"; transition:transform var(--duration-base) var(--ease-standard); }
.cta-inline:hover::after{ transform:translateX(3px); }

.cta-card{ background:var(--color-surface-subtle); border-radius:var(--radius-sm); padding:22px; display:flex; flex-direction:column; gap:12px; align-items:flex-start; }

.cta-section{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-lg); padding:36px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:16px; }

.cta-final{ background:linear-gradient(160deg,var(--blue-900) 0%,var(--blue-950) 100%); color:#fff; border-radius:var(--radius-lg); padding:56px 32px; text-align:center; }
.cta-final .ids-h2{ color:#fff; }
.cta-final p{ color:rgba(255,255,255,.75); margin-top:10px; }
.cta-final .hero__ctas{ justify-content:center; margin-top:24px; }

.cta-sticky-mobile{ position:fixed; left:0; right:0; bottom:0; z-index:var(--z-fixed); background:var(--color-surface); border-top:var(--border-width) solid var(--color-border); padding:10px var(--space-4); display:flex; gap:10px; box-shadow:var(--shadow-md); }
@media (min-width:1024px){ .cta-sticky-mobile{ display:none; } }
.cta-sticky-mobile .btn{ flex:1; }

/* -------------------------------------------------------------------------
   29 · WHATSAPP FLOAT
   ------------------------------------------------------------------------- */
.wa-float{ position:fixed; right:20px; bottom:20px; z-index:var(--z-fixed); width:56px; height:56px; border-radius:50%; background:#1EA952; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); border:none; cursor:pointer; }
.wa-float:hover{ background:#188C44; }
.wa-float svg{ width:26px; height:26px; fill:#fff; }
/* quando existir cta-sticky-mobile no mobile, o float sobe pra não competir */
@media (max-width:1023px){ body:has(.cta-sticky-mobile) .wa-float{ bottom:76px; } }

/* -------------------------------------------------------------------------
   30 · ESTADOS DE INTERFACE
   ------------------------------------------------------------------------- */
.state{ text-align:center; padding:56px 24px; display:flex; flex-direction:column; align-items:center; gap:14px; }
.state__icon{ width:48px; height:48px; color:var(--color-text-muted); }
.state__title{ font-weight:var(--fw-semibold); font-size:16px; color:var(--color-text); }
.state__desc{ font-size:13.5px; color:var(--color-text-muted); max-width:40ch; }
.state--error .state__title{ color:var(--color-error); }

/* -------------------------------------------------------------------------
   31 · SKELETON
   ------------------------------------------------------------------------- */
.skeleton-line, .skeleton-block{ background:linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%); background-size:200% 100%; border-radius:var(--radius-xs); animation:ids-skeleton 1.6s ease-in-out infinite; }
.skeleton-line{ height:12px; margin-bottom:8px; }
.skeleton-line:last-child{ width:70%; }
.skeleton-block{ width:100%; aspect-ratio:4/3; }
@keyframes ids-skeleton{ 0%{ background-position:200% 0; } 100%{ background-position:-200% 0; } }
@media (prefers-reduced-motion:reduce){ .skeleton-line, .skeleton-block{ animation:none; } }

/* -------------------------------------------------------------------------
   32 · SEARCH / FILTER (demonstrativo, sem backend)
   ------------------------------------------------------------------------- */
.filter-bar{ display:flex; flex-wrap:wrap; gap:10px; padding:16px; background:var(--color-surface-subtle); border-radius:var(--radius-sm); }
.filter-bar .field{ flex:1; min-width:160px; }
.filter-bar .field input, .filter-bar .field select{ min-height:40px; }

/* -------------------------------------------------------------------------
   33 · ÍCONES — tamanhos, traço fixo via stroke-width no SVG
   ------------------------------------------------------------------------- */
.icon{ display:inline-block; flex:none; fill:none; stroke:currentColor; stroke-width:var(--icon-stroke); stroke-linecap:round; stroke-linejoin:round; }
.icon--16{ width:16px; height:16px; }
.icon--20{ width:20px; height:20px; }
.icon--24{ width:24px; height:24px; }
.icon--32{ width:32px; height:32px; }

/* -------------------------------------------------------------------------
   34 · CHARACTER CALLOUT
   ------------------------------------------------------------------------- */
.character-callout{ display:flex; align-items:flex-end; gap:16px; background:var(--blue-900); border-radius:var(--radius-lg); padding:20px 22px; overflow:hidden; position:relative; }
.character-callout__img{ height:110px; width:auto; flex:none; margin-bottom:-20px; }
.character-callout__body{ flex:1; }
.character-callout__cat{ font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--accent-on-dark); }
.character-callout__text{ color:#fff; font-weight:var(--fw-semibold); font-size:14.5px; margin-top:4px; line-height:1.4; }
.character-callout .cta-inline{ color:#fff; margin-top:10px; }

/* -------------------------------------------------------------------------
   35 · MÍDIA DE PRODUTO
   ------------------------------------------------------------------------- */
.media-frame{ background:var(--color-surface-subtle); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; padding:32px; }
.media-frame img{ max-height:340px; width:auto; }
.media-frame--sm{ padding:16px; border-radius:var(--radius-sm); }
.media-frame--sm img{ max-height:140px; }
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-top:10px; }
.thumbnail{ border-radius:var(--radius-xs); overflow:hidden; border:2px solid transparent; cursor:pointer; background:var(--color-surface-subtle); }
.thumbnail.is-active{ border-color:var(--color-primary); }
figure.ids-figure{ margin:0; }
figure.ids-figure figcaption{ font-size:12px; color:var(--color-text-muted); margin-top:8px; }

/* -------------------------------------------------------------------------
   36 · CO-BRANDING DIGITAL — PARTNER LOCKUP
   Indparts é sempre a marca hospedeira. Não recolorir logo do parceiro,
   não absorver a paleta do parceiro na página.
   ------------------------------------------------------------------------- */
.partner-lockup{ display:inline-flex; align-items:center; gap:14px; }
.partner-lockup img{ height:26px; width:auto; }
.partner-lockup .x{ color:var(--color-text-muted); font-weight:var(--fw-bold); }
.partner-lockup__chip{ display:inline-flex; align-items:center; background:var(--color-primary); border-radius:var(--radius-xs); padding:6px 11px; }
.partner-lockup__chip img{ height:16px; filter:brightness(0) invert(1); }
/* variante clara — pra logo de parceiro que já vem com fundo próprio opaco
   (não transparente): nunca aplicar filtro de recor em cima do arquivo,
   só uma moldura neutra ao redor dele. */
.partner-lockup__chip--light{ background:var(--color-surface); border:var(--border-width) solid var(--color-border); border-radius:var(--radius-xs); padding:4px 10px; }
.partner-lockup__chip--light img{ height:20px; filter:none; }
