/* ============================================
   V2 EXTRAS — Nav grouped, Sobre, Equipe, Benefícios
   ============================================ */

/* ---------- Nav with dropdowns ---------- */
.nav-wrap-v2 {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px;
}
.nav-v2 {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 4px;
  padding: 10px 12px 10px 22px;
  background: rgba(12, 20, 44, 0.82);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: 999px;
  color: white;
  max-width: 1240px;
  width: 100%;
}
.nav-v2 .nav-logo { justify-self: start; grid-row: 1; }
.nav-v2-links { justify-self: center; grid-row: 1; }
.nav-v2-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
}

/* ════════════════════════════════════════════════════════════════
   CABEÇALHO CHEIO NO TOPO → PÍLULA NO SCROLL
   Estado padrão acima = PÍLULA (flutuante, arredondada).
   A classe .nav-at-top no <html> (ativada por nav-scroll.js só na home,
   quando scroll<=8px) sobrescreve para o estado "cheio" (largura total).
   ════════════════════════════════════════════════════════════════ */
.nav-wrap-v2 {
  transition: top .45s cubic-bezier(.16, 1, .3, 1),
              padding .45s cubic-bezier(.16, 1, .3, 1);
}
.nav-v2 {
  transition: max-width .45s cubic-bezier(.16, 1, .3, 1),
              border-radius .45s cubic-bezier(.16, 1, .3, 1),
              background-color .45s ease,   /* longhand — o shorthand `background` não anima de forma confiável */
              border-color .45s ease,
              padding .45s cubic-bezier(.16, 1, .3, 1);
}
.nav-v2 .nav-logo { transition: border-color .45s ease; }  /* traço separador some/aparece suave */
html.nav-at-top .nav-wrap-v2 {
  top: 0;
  padding: 0;
}
/* NO TOPO: cabeçalho 100% limpo — só logo, nome, links e botão.
   Sem plano de fundo, sem borda, sem blur, sem traço separador. */
html.nav-at-top .nav-v2 {
  max-width: 100%;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-top: 14px;
  padding-bottom: 14px;
}
html.nav-at-top .nav-v2 .nav-logo {
  border-right-color: transparent;
}
.nav-v2 .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 16px;
  padding-right: 22px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.nav-v2-links {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-v2-item {
  position: relative;
}
.nav-v2-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25; /* explícito — alinha <a> e <button> na mesma altura */
  color: rgba(255,255,255,0.72);
  border-radius: 999px;
  transition: color 0.18s, background 0.18s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-v2-link:hover, .nav-v2-item.open > .nav-v2-link { color: white; background: rgba(255,255,255,0.06); }
.nav-v2-link svg { transition: transform 0.2s; }
.nav-v2-item.open .nav-v2-link svg { transform: rotate(180deg); }

.nav-v2-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  padding: 8px;
  background: rgba(12, 20, 44, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.2s;
  z-index: 70;
}
.nav-v2-item.open .nav-v2-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-v2-sub {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  transition: background 0.16s, color 0.16s;
}
.nav-v2-sub:hover { background: rgba(255,153,0,0.12); color: white; }
.nav-v2-sub strong { display: block; font-weight: 500; font-family: var(--font-display); letter-spacing: -0.005em; }
.nav-v2-sub span { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; font-family: var(--font-mono); letter-spacing: 0.04em; }

.nav-v2-cta {
  margin-left: 4px;
  padding: 12px 22px;
  font-size: 14px;
  line-height: 1.25;
  flex-shrink: 0;
}

/* Botão PLATAFORMA — acesso à SaaS (login). Estilo "ghost" para sinalizar
   tecnologia sem competir com o CTA laranja de orçamento (hierarquia:
   secundário discreto · principal laranja). */
.nav-v2-platform {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}
.nav-v2-platform svg { opacity: 0.85; transition: color 0.18s, opacity 0.18s; }
.nav-v2-platform:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,153,0,0.5);
  color: #fff;
  transform: translateY(-1px);
}
.nav-v2-platform:hover svg { color: var(--orange, #ff9900); opacity: 1; }

@media (max-width: 1080px) {
  .nav-v2-links { display: none; }
  .nav-v2-cta { display: none; }
  .nav-v2-platform { display: none; }
  .nav-v2-burger { display: inline-flex !important; }
}

/* Hamburguer (escondido por padrão, ativa no mobile) —
   grid-column:3 garante que fique na mesma coluna do .nav-v2-actions
   (que fica visualmente vazio no mobile) em vez de quebrar linha. */
.nav-v2-burger {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.nav-v2-burger:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }

/* DRAWER overlay */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  /* IMPORTANTE: nunca interativo. Em iOS Safari, overlays "click-to-close"
     posicionados atrás de containers transformados (position:fixed+transform)
     capturam toques que deveriam ir para o drawer. Detectamos o clique fora
     via document listener no JSX, não pelo onClick do overlay. */
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 95;
}
.nav-drawer-overlay.open { opacity: 1; }

/* DRAWER painel */
.nav-drawer {
  position: fixed;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(360px, calc(100vw - 56px));
  /* fallback opaco caso var() falhe em algum mobile */
  background-color: #0c0c0e;
  background: var(--dot-pattern) 0 0 / var(--dot-size), #0c0c0e;
  color: #f4f4f6;
  border-radius: 22px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  z-index: 100;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  /* CRÍTICO: pai .nav-wrap-v2 tem pointer-events:none (pra não bloquear
     cliques na landing atrás do cabeçalho flutuante). Sem este override,
     no iOS Safari os toques no drawer PASSAM ATRAVÉS dele e ativam botões
     da landing atrás — diagnosticado em iPhone real 2026-05-19. */
  pointer-events: auto;
}
.nav-drawer.open { transform: translate3d(0, 0, 0); }
/* iOS Safari: garante que toques registrem cliques nos elementos do drawer */
.nav-drawer a,
.nav-drawer button {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255,153,0,0.18);
  -webkit-user-select: none;
  user-select: none;
}
/* Força stacking context próprio nos itens do drawer — corrige bug do iOS
   Safari onde toques em filhos de container fixed+transform são entregues
   ao overlay atrás. */
.nav-drawer-cta,
.nav-drawer-platform,
.nav-drawer-link,
.nav-drawer-section,
.nav-drawer-sublink,
.nav-drawer-social {
  position: relative;
  z-index: 1;
}

.nav-drawer-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.nav-drawer-close:hover { color: white; background: rgba(255,255,255,0.06); }

.nav-drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 40px;
}
.nav-drawer-logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--brand-orange, #ff9900) 0%, var(--brand-orange, #ff9900) 28%, transparent 30%),
              conic-gradient(from 0deg, transparent 0deg 12deg, var(--brand-orange, #ff9900) 12deg 18deg, transparent 18deg 30deg,
                             var(--brand-orange, #ff9900) 30deg 36deg, transparent 36deg 48deg, var(--brand-orange, #ff9900) 48deg 54deg,
                             transparent 54deg 66deg, var(--brand-orange, #ff9900) 66deg 72deg, transparent 72deg 84deg,
                             var(--brand-orange, #ff9900) 84deg 90deg, transparent 90deg 102deg, var(--brand-orange, #ff9900) 102deg 108deg,
                             transparent 108deg 120deg, var(--brand-orange, #ff9900) 120deg 126deg, transparent 126deg 138deg,
                             var(--brand-orange, #ff9900) 138deg 144deg, transparent 144deg 156deg, var(--brand-orange, #ff9900) 156deg 162deg,
                             transparent 162deg 174deg, var(--brand-orange, #ff9900) 174deg 180deg, transparent 180deg 192deg,
                             var(--brand-orange, #ff9900) 192deg 198deg, transparent 198deg 210deg, var(--brand-orange, #ff9900) 210deg 216deg,
                             transparent 216deg 228deg, var(--brand-orange, #ff9900) 228deg 234deg, transparent 234deg 246deg,
                             var(--brand-orange, #ff9900) 246deg 252deg, transparent 252deg 264deg, var(--brand-orange, #ff9900) 264deg 270deg,
                             transparent 270deg 282deg, var(--brand-orange, #ff9900) 282deg 288deg, transparent 288deg 300deg,
                             var(--brand-orange, #ff9900) 300deg 306deg, transparent 306deg 318deg, var(--brand-orange, #ff9900) 318deg 324deg,
                             transparent 324deg 336deg, var(--brand-orange, #ff9900) 336deg 342deg, transparent 342deg 354deg,
                             var(--brand-orange, #ff9900) 354deg 360deg);
  flex-shrink: 0;
}
.nav-drawer-logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: white;
  letter-spacing: -0.01em;
}
.nav-drawer-logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.nav-drawer-meta {
  font-family: var(--font-mono, ui-monospace, monospace);
  /* font-size compacto + letter-spacing negativo + nowrap garante que a data
     (formato curto: "quarta-feira, 27 mai 2026 · Catanduva · SP") cabe em
     1 linha em qualquer largura de tela mobile. */
  font-size: clamp(9px, 2.4vw, 11.5px);
  color: var(--brand-orange, #ff9900);
  margin: 4px 0 16px;
  letter-spacing: -0.01em;       /* leve compressão pra ganhar +alguns pixels */
  white-space: nowrap;           /* nunca quebra linha */
}

.nav-drawer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
/* Espelha exatamente o .footer-social — mesmo formato, hover (pulse + cor
   da marca via [data-brand]) idêntico ao do rodapé. */
.nav-drawer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: white;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
  will-change: transform;
  position: relative;       /* preservado do .nav-drawer-social original */
  z-index: 1;
}
.nav-drawer-social svg {
  width: 16px;
  height: 16px;
  transition: color 0.22s;
}
.nav-drawer-social:hover {
  background: #ffffff;
  border-color: #ffffff;
  animation: footer-social-pulse 1.2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
.nav-drawer-social:focus-visible {
  outline: 2px solid var(--orange, #ff9900);
  outline-offset: 3px;
}
/* Mesma paleta de cores da marca por rede social */
.nav-drawer-social[data-brand="facebook"]:hover  { color: #1877F2; }
.nav-drawer-social[data-brand="youtube"]:hover   { color: #FF0000; }
.nav-drawer-social[data-brand="linkedin"]:hover  { color: #0A66C2; }
.nav-drawer-social[data-brand="instagram"]:hover { color: #E4405F; }
.nav-drawer-social[data-brand="whatsapp"]:hover  { color: #25D366; }

@media (prefers-reduced-motion: reduce) {
  .nav-drawer-social:hover { animation: none; transform: scale(1.05); }
}

.nav-drawer-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: white;
  color: var(--brand-orange, #ff9900);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}
.nav-drawer-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(255,153,0,0.55); }

/* Botão PLATAFORMA no drawer — ghost (secundário) abaixo do CTA laranja. */
.nav-drawer-platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.16);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.nav-drawer-platform svg { opacity: 0.85; }
.nav-drawer-platform:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,153,0,0.45);
  transform: translateY(-1px);
}

.nav-drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 22px 0 18px;
}

.nav-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  color: white;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.nav-drawer-link:hover { background: rgba(255,255,255,0.06); color: var(--brand-orange, #ff9900); }
.nav-drawer-link svg { color: rgba(255,255,255,0.75); }
.nav-drawer-link:hover svg { color: var(--brand-orange, #ff9900); }

.nav-drawer-section {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.nav-drawer-section:hover { background: rgba(255,255,255,0.06); color: var(--brand-orange, #ff9900); }
.nav-drawer-section.open { color: var(--brand-orange, #ff9900); }
.nav-drawer-section-plus {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 18px; height: 18px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1;
}
.nav-drawer-section.open .nav-drawer-section-plus { color: var(--brand-orange, #ff9900); }

/* Wrapper que faz a animação suave de altura ao abrir/fechar.
   Truque com grid-template-rows 0fr → 1fr permite transição
   sem saber a altura final do conteúdo. */
.nav-drawer-sublist-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.22s ease;
}
.nav-drawer-sublist-wrap.open {
  grid-template-rows: 1fr;
  opacity: 1;
}
.nav-drawer-sublist-wrap > .nav-drawer-sublist {
  overflow: hidden;
  min-height: 0;
}

.nav-drawer-sublist {
  display: flex;
  flex-direction: column;
  padding: 4px 0 8px 38px;
  gap: 2px;
}
.nav-drawer-sublink {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.16s, background 0.16s;
}
.nav-drawer-sublink strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
}
.nav-drawer-sublink span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}
.nav-drawer-sublink:hover { background: rgba(255,255,255,0.05); }
.nav-drawer-sublink:hover strong { color: var(--brand-orange, #ff9900); }

/* Backdrop when any dropdown is open */
.nav-v2-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: transparent;
  pointer-events: auto;
}

/* ---------- SOBRE — manifesto split ---------- */
.about {
  background: var(--bg-2);              /* era --bg → --bg-2 (diferencia do Quote/Equipe) */
  padding: clamp(36px, 4.5vw, 64px) 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;     /* dá um pouco mais pra coluna direita (visual) */
  gap: 48px;                /* era 56px */
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(28px, 3.8vw, 50px);  /* era 32-58 — h2 menor pra encurtar bloco */
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;      /* era 18px */
}
.about-copy h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.about-lead {
  font-size: 15.5px;        /* era 17px */
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 12px;      /* era 16px */
  max-width: 56ch;
}
.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 20px;
  /* Sem border-top — só linhas INTERNAS da grade.
     Desktop: cruz no centro (1 horizontal + 1 vertical)
     Mobile: 3 horizontais entre as 4 células empilhadas */
}
.about-meta-cell {
  padding: 14px 24px 14px 0;
  border-right: 1px solid rgba(12, 20, 44, 0.14);
  border-bottom: 1px solid rgba(12, 20, 44, 0.14);
}
.about-meta-cell:nth-child(2n) { border-right: 0; padding-left: 24px; padding-right: 0; }
.about-meta-cell:nth-last-child(-n+2) { border-bottom: 0; }
.about-meta-num {
  font-family: var(--font-display);
  font-size: 28px;          /* era 32px */
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 5px;       /* era 6px */
}
.about-meta-num .accent { color: var(--orange); }
.about-meta-num .unit { font-size: 16px; color: var(--muted); margin-left: 4px; }
/* Variante para texto (não-numérico) — fonte menor e line-height confortável */
.about-meta-num--text {
  font-size: 18px;          /* era 21px */
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.about-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Variante prosa — para frases longas que ficariam estranhas em caixa alta */
.about-meta-label--prose {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
}

.about-visual {
  position: relative;
  aspect-ratio: 5 / 4;       /* era 4/5 — agora paisagem, bem mais baixa */
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy);
  max-height: 460px;         /* limita altura no desktop */
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,20,44,0.55) 100%);
}
.about-visual-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-visual-tag-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.about-visual-tag-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { aspect-ratio: 4 / 3; max-height: 480px; }
}

/* ---------- EQUIPE ---------- */
.team {
  background: white;             /* era --bg → white (contraste limpo contra o cream do Sobre) */
  padding: clamp(48px, 6vw, 88px) 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover img { transform: scale(1.05); }
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,20,44,0.92) 100%);
  pointer-events: none;
}
.team-card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  color: white;
}
.team-card-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.team-card-cred {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
  .about-meta { grid-template-columns: 1fr; }
  .about-meta-cell { padding: 20px 0; border-right: 0; }
  .about-meta-cell:nth-child(2n) { padding-left: 0; }
  /* No mobile (1 coluna) restaura a borda do penúltimo (Solução completa),
     que estava sendo zerada pela regra desktop nth-last-child(-n+2). */
  .about-meta-cell:nth-last-child(-n+2) { border-bottom: 1px solid rgba(12, 20, 44, 0.14); }
  .about-meta-cell:last-child { border-bottom: 0; }
  .about-meta-num { font-size: 32px; }
  .about-meta-num.about-meta-num--text { font-size: 22px; }
}

/* ---------- EQUIPE V2 (cards com foto circular + WhatsApp) ---------- */
.team-card-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 20px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card-v2-photo {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg-2);
  flex-shrink: 0;
}
.team-card-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card-v2-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.team-card-v2-role {
  font-size: 13px;
  color: var(--accent, #ea580c);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-card-v2-cred {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  min-height: 58px;
}

/* Botão único "Fale com a gente" — abaixo do grid, alinhado à direita */
.team-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.team-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 18px -6px rgba(37, 211, 102, 0.45);
}
.team-cta:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(37, 211, 102, 0.55);
}
@media (max-width: 540px) {
  .team-cta-row { justify-content: center; }
  .team-cta { width: 100%; max-width: 320px; justify-content: center; }
}
/* ---------- BENEFÍCIOS — seção escura, cards brancos flutuantes ---------- */
.benefits {
  background:
    var(--dot-pattern) 0 0 / var(--dot-size),
    var(--navy);
  color: white;
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.benefits .h-section { color: white; }
.benefits .h-section em { color: rgba(255,255,255,0.5); font-weight: 300; font-style: italic; }
.benefits .lead { color: rgba(255,255,255,0.6); }
.benefits::before {
  content: "";
  position: absolute;
  top: 30%; left: -20%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(255,153,0,0.12), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

/* Base comum — TODOS os cards brancos (stat + benefício) */
.benefit-stat,
.benefit-card {
  background: #fff;
  border: 1px solid rgba(12,20,44,0.08);
  border-radius: 16px;
  padding: 22px 20px;                 /* compacto (era 28-40px) */
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.benefit-stat:hover,
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,153,0,0.5);
  box-shadow: 0 22px 44px -18px rgba(255,153,0,0.25),
              0 10px 22px -12px rgba(12,20,44,0.14);
}

/* ---- Card de DESTAQUE (número) ---- */
.benefit-stat-idx {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 10px;
}
.benefit-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.benefit-num .pre { color: var(--orange); }
.benefit-num .u {
  font-size: 0.42em;
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0;
}
.benefit-stat-label {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
}
.benefit-stat-sub {
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---- Card de BENEFÍCIO (ícone CIRCULAR) ---- */
.benefit-card { gap: 10px; }
.benefit-ico {
  width: 46px; height: 46px;
  border-radius: 50%;                 /* círculo (era quadrado arredondado) */
  background: rgba(255,153,0,0.10);
  border: 1px solid rgba(255,153,0,0.25);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.benefit-card:hover .benefit-ico {
  background: rgba(255,153,0,0.2);
  transform: scale(1.08) rotate(-3deg);
}
.benefit-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
}
.benefit-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* ---- Responsivo: 2 colunas em tablet E mobile (menos scroll) ---- */
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) {
  .benefits-grid { gap: 10px; }
  .benefit-stat, .benefit-card { padding: 18px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .benefit-stat, .benefit-card, .benefit-ico { transition: none !important; }
  .benefit-stat:hover, .benefit-card:hover { transform: none; }
}

/* ---------- EQUIPAMENTOS ---------- */
.equipamentos {
  padding: 96px 0;
  background: white;
  color: var(--ink);
}
.equipamentos .eyebrow { color: var(--navy); }
.equipamentos .h-section { color: var(--ink); }
.equipamentos .section-lede { color: var(--muted); max-width: 60ch; }
.equip-block-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brand-orange, #ff9900);
  background: rgba(255,153,0,0.12);
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.equip-categorias {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.equip-cat-row {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line, #e8e6df);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.equip-cat-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.equip-cat-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.equip-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.equip-brand-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2, #2a3148);
  background: white;
  border: 1px solid var(--line, #e8e6df);
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.equip-brand-chip:hover {
  background: rgba(255,153,0,0.12);
  border-color: rgba(255,153,0,0.45);
  color: var(--ink);
}
.equip-foot {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line, #e8e6df);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
}
.equip-foot svg { color: var(--brand-orange, #ff9900); flex-shrink: 0; }

@media (max-width: 860px) { .equip-categorias { grid-template-columns: 1fr; } }

/* ============================================================
   EQUIPAMENTOS — OVERRIDES TEMA CLARO
   Equipamentos foi convertida pra fundo bege escuro. Os blocos
   .equip-compare e .equip-editorial e .equip-brand-* tinham
   cores hardcoded em white/rgba(255,255,255,..) — overrides
   aqui pra manter legibilidade sobre o novo fundo claro.
   ============================================================ */
.equipamentos .equip-compare {
  background: rgba(255,255,255,0.55);
  border-color: var(--line, #e8e6df);
}
.equipamentos .equip-compare-title { color: var(--ink, #0c142c); }
.equipamentos .equip-compare-sub { color: var(--muted, #6b7185); }
.equipamentos .equip-compare-card-title { color: var(--ink, #0c142c); }
.equipamentos .equip-compare-list li { color: var(--ink-2, #2a3148); }

.equipamentos .equip-editorial { border-top-color: var(--line, #e8e6df); }
.equipamentos .equip-ed-col { border-right-color: var(--line, #e8e6df); }
.equipamentos .equip-ed-title { color: var(--ink, #0c142c); }
.equipamentos .equip-ed-row { border-bottom-color: var(--line, #e8e6df); }
.equipamentos .equip-ed-name { color: var(--ink-2, #2a3148); }
.equipamentos .equip-ed-logo {
  filter: brightness(0);            /* logos viram pretos sobre bege */
  opacity: 0.75;
}
.equipamentos .equip-ed-row:hover .equip-ed-logo {
  opacity: 1;
}
.equipamentos .equip-cat-header .equip-cat-name { color: var(--ink, #0c142c); }
.equipamentos .equip-cat-count { color: var(--muted, #6b7185); }

/* Cards de marcas — em fundo bege, brancos sólidos ficam melhor
   do que translúcidos com glassmorphism (que esperava fundo escuro). */
.equipamentos .equip-brand-card {
  background: white;
  border-color: var(--line, #e8e6df);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.equipamentos .equip-brand-card:hover {
  background: white;
  border-color: rgba(255,153,0,0.35);
  box-shadow: 0 8px 18px rgba(12,20,44,0.10), 0 2px 4px rgba(12,20,44,0.06);
}
.equipamentos .equip-brand-name { color: var(--ink, #0c142c); }

@media (max-width: 880px) {
  .equipamentos .equip-ed-col { border-bottom-color: var(--line, #e8e6df); }
}

/* ============================================================
   KIT COMPOSIÇÃO — "O que compõe o kit de energia solar"
   ============================================================ */
.kit-section {
  padding: 64px 0;
  background:
    var(--dot-pattern) 0 0 / var(--dot-size),
    var(--navy);
  color: white;
}
.kit-section .eyebrow { color: white; }
.kit-section .h-section { color: white; }
.kit-section .section-lede { color: rgba(255,255,255,0.65); max-width: 60ch; }

.kit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.kit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s cubic-bezier(0.32, 0.72, 0.2, 1),
    box-shadow 0.22s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255,153,0,0.18);
}
.kit-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,153,0,0.32);
  color: white;
}
.kit-pill.active {
  background: var(--brand-orange, #ff9900);
  border-color: var(--brand-orange, #ff9900);
  color: white;
  box-shadow: 0 12px 28px rgba(255,153,0,0.32);
  transform: translateY(-1px);
}
.kit-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  opacity: 0.85;
}
.kit-pill.active .kit-pill-icon { opacity: 1; }
.kit-pill-icon svg { width: 100%; height: 100%; }
.kit-pill-label { white-space: nowrap; }

.kit-detail {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  /* ALTURA FIXA — todas as 5 abas (Painel, Inversor, etc.) ficam com a
     mesma altura no desktop. Evita "salto" ao alternar entre componentes. */
  min-height: 360px;
}
.kit-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,153,0,0.06), transparent 60%);
  pointer-events: none;
}
.kit-detail > * { position: relative; z-index: 1; }

.kit-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  animation: kitFadeIn 0.42s cubic-bezier(0.32, 0.72, 0.2, 1);
}
.kit-detail-img svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}
/* Foto real dos componentes — substitui os SVGs ilustrativos.
   object-fit: contain pra não distorcer, max-height pra não estourar o card. */
.kit-detail-photo {
  width: 100%;
  max-width: 320px;
  max-height: 240px;
  object-fit: contain;
  display: block;
}
/* Layout DUO — pra aba Inversor mostrar inversor central + microinversor
   lado a lado, com label identificando cada um. */
.kit-detail-duo {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
}
.kit-detail-duo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
}
.kit-detail-photo-half {
  width: 100%;
  max-width: 200px;
  max-height: 220px;
  object-fit: contain;
  display: block;
}
.kit-detail-duo-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-align: center;
}
@keyframes kitFadeIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.kit-detail-body {
  animation: kitFadeIn 0.42s cubic-bezier(0.32, 0.72, 0.2, 1) 0.05s both;
}
.kit-detail-step {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange, #ff9900);
  margin-bottom: 12px;
}
.kit-detail-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 12px;
}
.kit-detail-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
}
.kit-detail-cta {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 860px) {
  .kit-section { padding: 64px 0; }
  .kit-pills { gap: 8px; }
  .kit-pill {
    padding: 12px 14px;
    font-size: 13px;
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    justify-content: center;
  }
  .kit-pill-label { font-size: 13px; }
  .kit-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
    /* Altura fixa mobile — empilha foto + texto, mesma altura pra todas as abas */
    min-height: 580px;
  }
  .kit-detail-img { min-height: 140px; }
  .kit-detail-img svg { max-width: 200px; }
  .kit-detail-title { font-size: 24px; }
  .kit-detail-desc { font-size: 14px; }
}
@media (max-width: 420px) {
  .kit-pill { flex: 1 1 100%; }
}

/* ============================================================
   EQUIPAMENTOS — Comparação Tier 1 vs Painel genérico
   (inspirada na Descarbonize, adaptada ao DNA Taiyō)
   ============================================================ */
.equip-compare {
  margin-top: 56px;
  padding: 48px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.equip-compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(220,38,38,0.06), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(47,158,68,0.06), transparent 50%);
  pointer-events: none;
}
.equip-compare > * { position: relative; z-index: 1; }

.equip-compare-head {
  text-align: center;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.equip-compare-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: white;
  margin-bottom: 12px;
}
.equip-compare-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-orange, #ff9900);
}
.equip-compare-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}

.equip-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.equip-compare-card {
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.equip-compare-bad {
  background: rgba(220,38,38,0.05);
  border-color: rgba(220,38,38,0.18);
}
.equip-compare-good {
  background: rgba(47,158,68,0.05);
  border-color: rgba(47,158,68,0.20);
}
.equip-compare-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 6px;
}
.equip-compare-bad .equip-compare-tag {
  color: #ff6b6b;
  background: rgba(220,38,38,0.12);
}
.equip-compare-good .equip-compare-tag {
  color: #51cf66;
  background: rgba(47,158,68,0.12);
}
.equip-compare-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.015em;
  margin: 0;
}
.equip-compare-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.equip-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.equip-compare-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.equip-compare-bad .equip-compare-list li svg { color: #ff6b6b; }
.equip-compare-good .equip-compare-list li svg { color: #51cf66; }

.equip-compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,153,0,0.55);
}

@media (max-width: 760px) {
  .equip-compare { padding: 28px 18px; margin-top: 36px; }
  .equip-compare-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .equip-compare-divider {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .equip-compare-card { padding: 22px 18px; }
  .equip-compare-card-title { font-size: 19px; }
  .equip-compare-list li { font-size: 13.5px; }
}

/* ============================================================
   EQUIPAMENTOS V2 — cards com logos dos fabricantes
   Quando você me enviar os SVGs dos logos, basta trocar
   <span class="equip-brand-name">Texto</span> por
   <img src="logos/marca.svg" alt="Marca" class="equip-brand-logo" />
   ============================================================ */
.equip-categorias-v2 {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.equip-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.equip-cat-header > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.equip-cat-header .equip-cat-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
}
.equip-cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
}

.equip-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.equip-brand-card {
  /* Branco bem translúcido com glassmorphism — efeito frosted glass
     que se integra ao fundo navy sem competir com ele. */
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  /* Altura FIXA — todos os cards alinhados independente da forma do logo. */
  height: 110px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s cubic-bezier(0.32, 0.72, 0.2, 1),
    box-shadow 0.22s ease,
    background 0.22s ease;
  cursor: default;
  overflow: hidden;
}
.equip-brand-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.78);     /* hover ganha mais opacidade pra destacar */
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 32px rgba(0,0,0,0.22), 0 4px 8px rgba(0,0,0,0.12);
}
.equip-brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-align: center;
}
/* Logos com max-height fixo + object-fit:contain = alinhamento óptico
   consistente. PNGs com aspect ratios diferentes (quadrados, alongados,
   altos) terminam ocupando o mesmo "trilho" vertical visual. */
.equip-brand-logo {
  width: 100%;
  height: 100%;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
  display: block;
}

@media (max-width: 600px) {
  .equip-categorias-v2 { gap: 40px; }
  .equip-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .equip-brand-card {
    height: 88px;
    padding: 12px 16px;
  }
  .equip-brand-name { font-size: 14px; }
  .equip-brand-logo { max-height: 56px; }
}

/* ============================================================
   EQUIPAMENTOS — LAYOUT EDITORIAL (Opção 4)
   3 colunas, sem fundo de card. Nome da marca à esquerda,
   logo pequeno à direita. Estilo editorial premium.
   ============================================================ */
.equip-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
  margin-top: 8px;
}
.equip-ed-col {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 32px;
}
.equip-ed-col:last-child {
  border-right: 0;
  padding-right: 0;
}
.equip-ed-head {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
  width: fit-content;
}
.equip-ed-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
}
.equip-ed-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: white;
  letter-spacing: -0.015em;
}
.equip-ed-list {
  display: flex;
  flex-direction: column;
}
.equip-ed-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.equip-ed-row:last-child { border-bottom: 0; }
.equip-ed-row:hover {
  padding-left: 6px;
}
.equip-ed-row:hover .equip-ed-name {
  color: var(--orange);
}
.equip-ed-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
/* Logo pequeno à direita — substitui a "bandeira CN" do preview.
   Brightness/invert pra logos coloridos ficarem visíveis no fundo navy. */
.equip-ed-logo {
  height: 22px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: brightness(0) invert(1);    /* força branco — uniformiza logos coloridos */
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.equip-ed-row:hover .equip-ed-logo {
  opacity: 1;
  /* Mantém branco no hover — mais limpo que tentar restaurar cor original */
}

@media (max-width: 880px) {
  .equip-editorial {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .equip-ed-col {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .equip-ed-col:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .equip-ed-title { font-size: 20px; }
  .equip-ed-name { font-size: 15px; }
}

/* ============================================================
   MOBILE STICKY CTA BAR — Taiyō
   Só visível em mobile (<=860px). Barra fixa inferior com
   WhatsApp (promessa de tempo) + ícone Orçamento.
   ============================================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none; /* hidden no desktop por padrão — JS habilita em mobile */
  align-items: stretch;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: transparent;   /* sem forma de fundo — botões flutuam direto sobre a página */
  z-index: 85; /* abaixo do drawer (100), abaixo do nav (60? na verdade nav é 60 — bar fica acima) */
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0.2, 1);
  pointer-events: none;
}
.mobile-cta-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 860px) {
  .mobile-cta-bar { display: flex; }
  /* Adiciona padding inferior no body pra evitar que a bar cubra conteúdo
     quando o user chegar no final */
  body.has-mobile-cta { padding-bottom: 78px; }
}

.mobile-cta-whatsapp {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #25D366;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-display, sans-serif);
  min-height: 50px;
  transition: transform 0.18s;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);   /* sombra: destaca o botão flutuante sobre o conteúdo */
}
.mobile-cta-whatsapp:active { transform: scale(0.97); }
.mobile-cta-whatsapp svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.mobile-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.mobile-cta-main {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.mobile-cta-sub {
  font-size: 10.5px;
  letter-spacing: 0.04em;
  opacity: 0.88;
  margin-top: 2px;
  font-family: var(--font-mono, ui-monospace, monospace);
}

.mobile-cta-orcamento {
  flex: 0 0 auto;             /* largura natural baseada no conteúdo (texto+ícone) */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;            /* respiração lateral pro texto */
  background: var(--brand-orange, #ff9900);
  color: var(--navy, #0c142c);
  border-radius: 12px;
  text-decoration: none;
  min-height: 50px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  transition: transform 0.18s, box-shadow 0.18s;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);   /* sombra: destaca o botão flutuante sobre o conteúdo */
}
.mobile-cta-orcamento:active { transform: scale(0.94); }
.mobile-cta-orcamento svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta-orcamento-label {
  font-family: inherit;
  font-weight: 700;
  font-size: 13.5px;
}
/* Em telas MUITO estreitas (iPhone SE / 320px), esconde o label e mantém só
   o ícone — evita comprimir o botão do WhatsApp. */
@media (max-width: 360px) {
  .mobile-cta-orcamento { padding: 0; flex: 0 0 50px; gap: 0; }
  .mobile-cta-orcamento-label { display: none; }
}

/* O scroll-edge button precisa subir quando a bar está visível pra
   não ficar atrás dela */
@media (max-width: 860px) {
  .mobile-cta-bar.visible ~ .scroll-edge-btn.visible,
  body:has(.mobile-cta-bar.visible) .scroll-edge-btn.visible {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   SCROLL EDGE BUTTON — botão flutuante topo/rodapé
   ============================================================ */
.scroll-edge-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 20, 44, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.20);
  opacity: 0;
  transform: translateY(14px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.28s ease,
              transform 0.32s cubic-bezier(0.32, 0.72, 0.2, 1),
              background 0.18s ease,
              border-color 0.18s ease;
  /* iOS Safari: garante que toques registrem */
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 153, 0, 0.18);
  padding: 0;
}
.scroll-edge-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-edge-btn:hover,
.scroll-edge-btn:focus-visible {
  background: var(--brand-orange, #ff9900);
  border-color: rgba(255, 153, 0, 0.55);
  outline: none;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px rgba(255, 153, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.20);
}
.scroll-edge-btn:active {
  transform: translateY(0) scale(0.96);
}
.scroll-edge-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.36s cubic-bezier(0.32, 0.72, 0.2, 1);
}
/* Direção pra cima — rotaciona o chevron 180° */
.scroll-edge-btn.up svg {
  transform: rotate(180deg);
}

/* Mobile: menor + respeita safe-area do iPhone */
@media (max-width: 768px) {
  .scroll-edge-btn {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
  .scroll-edge-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-edge-btn,
  .scroll-edge-btn svg {
    transition: opacity 0.18s ease;
  }
}
