/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #0b0c10;
}
::-webkit-scrollbar-thumb {
  background: #00e5ff30;
  border-radius: 2px;
}

/* ── Glassmorphism ── */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.glass-cyan {
  background: rgba(0, 229, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

/* ── Gradient borders ── */
.border-gradient {
  position: relative;
  border-radius: 12px;
}
.border-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.4),
    rgba(212, 175, 55, 0.15),
    rgba(0, 229, 255, 0.1)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Cyan glow text ── */
.text-glow {
  text-shadow:
    0 0 30px rgba(0, 229, 255, 0.5),
    0 0 60px rgba(0, 229, 255, 0.2);
}
.gold-glow {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* ── Section separator ── */
.sep {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 229, 255, 0.3),
    transparent
  );
}

/* ── Animated underline CTA ── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.12),
    rgba(0, 229, 255, 0.04)
  );
  border: 1px solid rgba(0, 229, 255, 0.5);
  border-radius: 6px;
  color: #00e5ff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  border-color: #00e5ff;
  box-shadow:
    0 0 24px rgba(0, 229, 255, 0.35),
    inset 0 0 20px rgba(0, 229, 255, 0.05);
  transform: translateY(-1px);
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0.05)
  );
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 6px;
  color: #d4af37;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-gold:hover {
  border-color: #d4af37;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

/* ── Card hover ── */
.card-hover {
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.card-hover:hover {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow:
    0 0 30px rgba(0, 229, 255, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

/* ── Navbar ── */
#navbar {
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(11, 12, 16, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 229, 255, 0.1);
}

/* ── Checklist item ── */
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.check-item:hover {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.25);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  color: #9ca3af;
  letter-spacing: 0.04em;
  transition: all 0.25s;
}
.badge:hover {
  border-color: rgba(0, 229, 255, 0.3);
  color: #00e5ff;
}

/* ── Flow diagram ── */
.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 10px;
  min-width: 140px;
  transition: all 0.3s;
}
.flow-node:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}
.flow-arrow {
  color: #00e5ff;
  font-size: 1.4rem;
  opacity: 0.6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ── Security icon card ── */
.sec-card {
  padding: 28px;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 12px;
  transition: all 0.35s;
}
.sec-card:hover {
  background: rgba(0, 229, 255, 0.07);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}

/* ── Gold card (exec) ── */
.exec-card {
  padding: 28px;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: all 0.35s;
}
.exec-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

/* ── Fade in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Price tag ── */
.price-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 4px;
  color: #00e5ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.price-tag-gold {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  color: #d4af37;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Mobile menu ── */
#mobile-menu {
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: #0b0c10; /* ✅ fundo sólido */
  border-radius: 0 0 12px 12px;
  margin: 0 -1.5rem; /* estende até as bordas da nav */
  padding: 0 1.5rem;
}

#mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

/* ── Grid line background ── */
.grid-bg {
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Responsive utility ── */
@media (max-width: 640px) {
  .flow-diagram-wrap {
    flex-direction: column;
    align-items: center;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* ══════════════════════════════════════════
       ZOOM FLUTUANTE (zoomFlutuante.txt)
    ══════════════════════════════════════════ */
.kw-space {
  position: relative;
  height: 500px;
  width: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 200, 255, 0.08) 0%,
    transparent 70%
  );
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Pausa as keywords flutuantes quando fora da tela */
.kw-space:not(.is-active) .kw-word {
  animation-play-state: paused;
}

.kw-space .kw-word {
  position: absolute;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: normal; /* era nowrap */
  max-width: 85%; /* limita a largura → força a quebra */
  overflow-wrap: break-word; /* quebra palavras longas se precisar */
  text-align: center;
  background: linear-gradient(90deg, #00e696, #00c8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
  will-change: font-size, top, left, translate, opacity;
  animation:
    kwFloat 6s ease-in-out infinite,
    kwZoom 20s ease-in-out infinite;
}

@keyframes kwFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}
@keyframes kwZoom {
  0% {
    top: var(--rt);
    left: var(--rl);
    translate: 0 0;
    font-size: 0.95rem;
    opacity: 0.35;
  }
  8% {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    font-size: 2.6rem;
    opacity: 1;
    z-index: 10;
  }
  14% {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    font-size: 2.6rem;
    opacity: 1;
    z-index: 10;
  }
  20% {
    top: var(--rt);
    left: var(--rl);
    translate: 0 0;
    font-size: 0.95rem;
    opacity: 0.35;
  }
  100% {
    top: var(--rt);
    left: var(--rl);
    translate: 0 0;
    font-size: 0.95rem;
    opacity: 0.35;
  }
}
.kw-space .kw-word:nth-child(1) {
  --rt: 6%;
  --rl: 4%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: 0s, 0s;
}
.kw-space .kw-word:nth-child(2) {
  --rt: 10%;
  --rl: 70%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: -1s, 2.5s;
}
.kw-space .kw-word:nth-child(3) {
  --rt: 34%;
  --rl: 8%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: -2s, 5s;
}
.kw-space .kw-word:nth-child(4) {
  --rt: 38%;
  --rl: 65%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: -3s, 7.5s;
}
.kw-space .kw-word:nth-child(5) {
  --rt: 64%;
  --rl: 6%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: -4s, 10s;
}
.kw-space .kw-word:nth-child(6) {
  --rt: 68%;
  --rl: 68%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: -1.5s, 12.5s;
}
.kw-space .kw-word:nth-child(7) {
  --rt: 88%;
  --rl: 12%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: -2.5s, 15s;
}
.kw-space .kw-word:nth-child(8) {
  --rt: 90%;
  --rl: 62%;
  top: var(--rt);
  left: var(--rl);
  animation-delay: -3.5s, 17.5s;
}
@media (max-width: 768px) {
  .kw-space {
    height: 340px;
  }
  .kw-space .kw-word {
    font-size: 0.8rem;
  }
}

/* ══════════════════════════════════════════
       TLZ BUILDER (custom.txt)
    ══════════════════════════════════════════ */
.tlz-builder * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.tlz-builder {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
  color: #fff;
  overflow: hidden;
}
.tlz-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.tlz-link-line {
  fill: none;
  stroke: url(#tlzLinkGrad);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(0, 230, 150, 0.6));
  animation: tlzDraw 6s ease-in-out infinite;
}
.tlz-link-line[data-i="0"] {
  animation-delay: 0s;
}
.tlz-link-line[data-i="1"] {
  animation-delay: 0.7s;
}
.tlz-link-line[data-i="2"] {
  animation-delay: 1.4s;
}
.tlz-link-line[data-i="3"] {
  animation-delay: 2.1s;
}
@keyframes tlzDraw {
  0% {
    stroke-dashoffset: var(--len);
    opacity: 1;
  }
  10% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  98% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: var(--len);
    opacity: 0;
  }
}
.tlz-modules {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.tlz-modules.right {
  align-items: flex-start;
}
.tlz-modules.left {
  align-items: flex-end;
}
.tlz-mod {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  width: 100%;
  max-width: 240px;
  position: relative;
  opacity: 0.9;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.tlz-mod:hover {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.25);
}
.tlz-modules.right .tlz-mod {
  flex-direction: row-reverse;
  text-align: right;
}
.tlz-mod-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.tlz-mod-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tlz-mod-text {
  min-width: 0;
}
.tlz-mod-text strong {
  display: block;
  font-size: 0.95rem;
}
.tlz-mod-text small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}
.tlz-core {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 2;
}
.tlz-core-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #00e696, #00c8ff);
  color: #0a0e1a;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.2;
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.4);
  animation: tlzCoreGlow 6s ease-in-out infinite;
}
@keyframes tlzCoreGlow {
  0%,
  47% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.4);
  }
  55% {
    transform: scale(1.15);
    box-shadow:
      0 0 80px rgba(0, 230, 150, 1),
      0 0 130px rgba(0, 200, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 55px rgba(0, 230, 150, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.4);
  }
}
.tlz-core::before,
.tlz-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 200, 255, 0.3);
}
.tlz-core::before {
  inset: 0;
  animation: tlzSpin 14s linear infinite;
}
.tlz-core::after {
  inset: 18px;
  border-color: rgba(0, 230, 150, 0.25);
  animation: tlzSpin 9s linear infinite reverse;
}
@keyframes tlzSpin {
  to {
    transform: rotate(360deg);
  }
}
/* Pausa animações do ecossistema quando fora da tela */
.tlz-builder.tlz-paused .tlz-core-inner,
.tlz-builder.tlz-paused .tlz-core::before,
.tlz-builder.tlz-paused .tlz-core::after,
.tlz-builder.tlz-paused .tlz-link-line {
  animation-play-state: paused !important;
}

/* ===== MOBILE / ANDROID ===== */
@media (max-width: 820px) {
  .tlz-builder {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 2rem 1rem;
  }
  .tlz-links {
    display: none;
  }
  .tlz-modules.left {
    order: 1;
  }
  .tlz-core {
    order: 2;
  }
  .tlz-modules.right {
    order: 3;
  }

  .tlz-modules.left,
  .tlz-modules.right {
    width: 100%;
    align-items: center;
  }
  .tlz-modules.right .tlz-mod {
    flex-direction: row;
    text-align: left;
  }
  .tlz-mod {
    width: 100%;
    max-width: 320px;
  }
  .tlz-core {
    margin: 0.5rem auto;
  }
}

/* Escurece o fundo neon animado */
#neonBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* Camada escura global sobre o canvas de fundo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(11, 12, 16, 0.55); /* aumente p/ escurecer mais */
  z-index: -1;
  pointer-events: none;
}

/* ── Cursor do efeito máquina de escrever ── */
.tw-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 4px;
  background: #00e5ff;
  vertical-align: text-bottom;
  animation: twBlink 0.8s step-end infinite;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}
@keyframes twBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.tw-cursor.done {
  animation: twBlink 1s step-end infinite;
}
.tw-cyan {
  color: #00e5ff;
}

/* Garante que a imagem fique nítida, sem ruído/filtros */
img {
  image-rendering: auto;
  filter: none;
}

/* Bloqueia qualquer overlay de ruído sobre o container da imagem */
.relative > .rounded-2xl::before,
.relative > .rounded-2xl::after {
  display: none !important;
}

/* Suaviza e melhora a renderização da foto */
.rounded-2xl img {
  filter: contrast(1.02) saturate(1.05);
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ═══ ECOSSISTEMA — Fluxo vertical ═══ */
.flow-node-h {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.flow-node-h svg {
  flex-shrink: 0;
}
.flow-node-h:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}
.flow-arrow-v {
  color: #00e5ff;
  opacity: 0.5;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
}

/* ═══ ECOSSISTEMA — Palco celular + raios ═══ */
.alt-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin: 0 auto;
}
.alt-rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.alt-ray {
  fill: none;
  stroke: url(#rayGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  filter: drop-shadow(0 0 5px rgba(0, 230, 150, 0.7));
  animation: altRay 2s linear infinite;
  animation-delay: var(--d);
  animation-play-state: paused;
}
.alt-stage.is-active .alt-ray {
  animation-play-state: running; /* 👈 liga ao entrar na tela */
}
@keyframes altRay {
  to {
    stroke-dashoffset: -36;
  }
}

/* Ícones nos cantos */
.alt-icon {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 92px;
  padding: 10px 8px;
  text-align: center;
  background: rgba(11, 12, 16, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}
.alt-icon span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #00e5ff;
  line-height: 1.1;
}

/* Celular */
.alt-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 55%;
  aspect-ratio: 9 / 19;
  background: #0b0c10;
  border: 3px solid rgba(0, 229, 255, 0.35);
  border-radius: 26px;
  padding: 6px;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}
.alt-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* Mobile */
@media (max-width: 1023px) {
  .alt-stage {
    max-width: 360px;
    margin-top: 1rem;
  }
  .alt-icon {
    width: 78px;
  }
}
/* ===== PALCO DO ESCUDO ===== */
.shield-stage {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: grid;
}

.shield-svg,
.shield-cards {
  grid-area: 1 / 1; /* 👈 ambos empilhados, mesma altura */
}

/* SVG do escudo ocupa TODO o palco (que cresce com os cards) */
.shield-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.25));
}

/* Aura pulsante — começa pausada */
.shield-aura {
  transform-origin: center;
  animation: shieldPulse 3s ease-in-out infinite;
  animation-play-state: paused;
}

/* Linha que "escaneia" a borda */
.shield-scan {
  animation: shieldScan 6s linear infinite;
  animation-play-state: paused;
}

/* Liga as animações quando entra na tela */
.shield-stage.is-active .shield-aura,
.shield-stage.is-active .shield-scan {
  animation-play-state: running;
}

@keyframes shieldPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
@keyframes shieldScan {
  to {
    stroke-dashoffset: -680;
  }
}

/* ===== CARDS FLUTUANTES ===== */
.shield-cards {
  position: relative;
  z-index: 2; /* 👈 cards SEMPRE na frente do escudo */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 14% 13%;
}
.shield-svg {
  z-index: 1;
}

.shield-card {
  background: rgba(10, 16, 28, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 229, 255, 0.08);

  /* Entrada: invisível por padrão */
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* Quando ativo: aparecem + começam a flutuar */
.shield-stage.is-active .shield-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.shield-stage.is-active .float-a {
  animation: floatA 5s ease-in-out infinite 0.7s;
}
.shield-stage.is-active .float-b {
  animation: floatB 6s ease-in-out infinite 0.9s;
}

/* Delay de entrada do segundo card */
.float-b {
  transition-delay: 0.2s;
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  } /* reduzido de -10px */
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  } /* reduzido de 8px */
}

.shield-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 640px) {
  .shield-stage {
    max-width: 100%;
  }
  .shield-cards {
    padding: 16% 9%; /* mais respiro lateral no mobile */
    gap: 0.9rem;
  }
  .shield-card {
    padding: 0.85rem 0.95rem;
  }
  .shield-card h3 {
    font-size: 0.8rem;
  }
}
/* ═══ ACCORDION CONSULTORIA EXECUTIVA ═══ */
.exec-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exec-item {
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.exec-item.open {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.exec-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.exec-title {
  flex: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.exec-chevron {
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.exec-item.open .exec-chevron {
  transform: rotate(180deg);
}

/* Corpo que expande suavemente */
.exec-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.exec-item.open .exec-body {
  max-height: 220px;
}
.exec-body p {
  padding: 0 24px 20px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #9ca3af;
  margin: 0;
}

/* Mobile: preço quebra pra baixo do título */
@media (max-width: 600px) {
  .exec-head {
    flex-wrap: wrap;
    gap: 8px;
  }
  .exec-title {
    flex: 1 1 100%;
  }
}
/* ═══ BANNER EDUCAÇÃO / PALESTRA ═══ */
.edu-stage {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  aspect-ratio: 21 / 9;
}

/* mobile: imagem um pouco mais alta */
@media (max-width: 640px) {
  .edu-stage {
    aspect-ratio: 4 / 3;
  }
}

.edu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
  filter: saturate(1.05) contrast(1.03);
}
.edu-stage:hover .edu-img {
  transform: scale(1);
}

/* Overlay degradê para legibilidade + tom neon */
.edu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 16, 0.92) 0%,
    rgba(11, 12, 16, 0.55) 45%,
    rgba(0, 229, 255, 0.06) 100%
  );
  pointer-events: none;
}

/* Selo "Ao vivo" flutuante */
.edu-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(11, 12, 16, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #00e5ff;
  letter-spacing: 0.04em;
}
.edu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00e696;
  box-shadow: 0 0 0 0 rgba(0, 230, 150, 0.6);
  animation: eduPulse 1.8s ease-out infinite;
}
@keyframes eduPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 150, 0.6);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(0, 230, 150, 0);
  }
}

/* Texto sobreposto na base */
.edu-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 60%;
  padding: 28px 32px;
}
.edu-caption h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.edu-caption p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

@media (max-width: 640px) {
  .edu-caption {
    max-width: 100%;
    padding: 20px;
  }
}
/* 📱 Ajuste do selo no mobile */
@media (max-width: 640px) {
  .edu-badge {
    font-size: 0.7rem; /* texto menor */
    padding: 4px 8px; /* selo mais compacto */
    line-height: 1.2;
    max-width: 85%; /* não estoura a largura */
    top: 8px; /* ajuste a posição se precisar */
    left: 8px;
  }

  .edu-dot {
    width: 6px;
    height: 6px;
  }
}
/* ═══ Cards de Dores ═══ */
.pain-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(34, 211, 238, 0.15);
  backdrop-filter: blur(8px);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.pain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.05);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.15);
}

/* Ícone gigante no topo */
.pain-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  color: var(--cyan-neon, #22d3ee);
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.4));
  transition: transform 0.4s ease;
}

.pain-card:hover .pain-icon {
  transform: scale(1.12) rotate(-4deg);
}

.pain-icon svg {
  width: 100%;
  height: 100%;
}

.pain-text {
  font-family: var(--font-body, inherit);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--txt-gray, #9ca3af);
}

/* 📱 Mobile */
@media (max-width: 640px) {
  .pain-card {
    padding: 2rem 1.5rem;
  }
  .pain-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
  }
}
/* 🟡 Ampulheta */
.pain-icon.icon-amber {
  color: #fbbf24;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.45));
}

/* 🔵 Lua (azul mais escuro) */
.pain-icon.icon-blue {
  color: #3b82f6;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.45));
}

/* 🔴 Gráfico */
.pain-icon.icon-red {
  color: #ef4444;
  filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.45));
}
/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
