:root {
  --vone-glow-cyan: #00f0ff;
  --vone-glow-violet: #8b5cf6;
  --vone-glow-emerald: #10b981;
  --vone-surface: #07060b;
  --vone-surface-raised: #0d0b14;
}

/* Home (index): fundo global e hero alinhados à página Tecnologia; seções mais escuras */
body.vone-home {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #05050a 0%, #07060b 18%, #07060b 100%);
  color: rgba(255, 255, 255, 0.94);
  -webkit-tap-highlight-color: rgba(89, 225, 255, 0.18);
  touch-action: manipulation;
  --vone-surface: #030308;
  --vone-surface-raised: #05050c;
  --vone-glow-cyan: #59e1ff;
  --vone-glow-violet: #8f5cff;
  --vone-glow-emerald: #47d7ac;
}

.vone-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--vone-surface);
}

body.vone-home .vone-hero {
  background: transparent;
  isolation: isolate;
}

body.vone-home .vone-hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

body.vone-home .vone-hero__noise {
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body.vone-home .vone-hero__scan-beam {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(89, 225, 255, 0.55) 25%,
    rgba(143, 92, 255, 0.75) 50%,
    rgba(89, 225, 255, 0.55) 75%,
    transparent 100%
  );
}

body.vone-home .vone-hero__glow-orb {
  filter: blur(90px);
}

body.vone-home .vone-hero__glow-orb--violet {
  background: rgba(143, 92, 255, 0.13);
}

body.vone-home .vone-hero__glow-orb--cyan {
  background: rgba(89, 225, 255, 0.09);
}

body.vone-home .vone-hero__glow-orb--emerald {
  background: rgba(71, 215, 172, 0.07);
}

body.vone-home .vone-hero__stats {
  background: rgba(5, 5, 12, 0.72);
  border-top-color: rgba(255, 255, 255, 0.05);
}

/* ── Lattice canvas background ── */
.vone-hero__lattice {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.vone-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 92%);
  opacity: 0.18;
  animation: voneHeroGridPulse 7s ease-in-out infinite;
}

@keyframes voneHeroGridPulse {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.34; }
}

.vone-hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.vone-hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--p-color, var(--vone-glow-cyan));
  box-shadow: 0 0 7px var(--p-color, var(--vone-glow-cyan));
  opacity: 0;
  animation: voneHeroParticleRise 7s ease-out infinite;
}

@keyframes voneHeroParticleRise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.85; }
  90% { opacity: 0.25; }
  100% { transform: translateY(-72px) translateX(18px); opacity: 0; }
}

/* ── Radial glow layers ── */
.vone-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
}

.vone-hero__glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
}

.vone-hero__glow-orb--violet {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.15);
  bottom: -15%;
  left: -5%;
  animation: voneHeroOrbDrift1 20s ease-in-out infinite;
}

.vone-hero__glow-orb--cyan {
  width: 400px;
  height: 400px;
  background: rgba(0, 240, 255, 0.08);
  top: -10%;
  right: -5%;
  animation: voneHeroOrbDrift2 24s ease-in-out infinite;
}

.vone-hero__glow-orb--emerald {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  top: 40%;
  left: 35%;
  animation: voneHeroOrbDrift3 17s ease-in-out infinite;
}

@keyframes voneHeroOrbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-2.5rem, 3.5rem); }
  66% { transform: translate(2rem, -1.5rem); }
}

@keyframes voneHeroOrbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(3rem, -2rem); }
  66% { transform: translate(-1.5rem, 2.5rem); }
}

@keyframes voneHeroOrbDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2.5rem, -3rem); }
}

/* ── Noise overlay ── */
.vone-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ── Horizontal scan line ── */
.vone-hero__scanline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.008) 2px,
    rgba(255, 255, 255, 0.008) 4px
  );
}

.vone-hero__scan-beam {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 240, 255, 0.55) 25%,
    rgba(139, 92, 246, 0.75) 50%,
    rgba(16, 185, 129, 0.55) 75%,
    transparent 100%
  );
  opacity: 0;
  animation: voneHeroScanLine 11s ease-in-out infinite;
}

@keyframes voneHeroScanLine {
  0% { top: -1px; opacity: 0; }
  4% { opacity: 0.65; }
  96% { opacity: 0.28; }
  100% { top: 100%; opacity: 0; }
}

/* ── Top gradient fade (for potential nav overlap) ── */
.vone-hero__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--vone-surface) 0%, transparent 100%);
  opacity: 0.5;
}

/* ── Content ── */
.vone-hero__content {
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 176px;
}

@media (max-width: 767px) {
  .vone-hero__content {
    padding-top: 88px;
    padding-bottom: 152px;
  }
}

/* ── Tag / eyebrow ── */
.vone-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  background: rgba(139, 92, 246, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  width: fit-content;
  margin: 0 auto 32px;
}

.vone-hero__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vone-glow-cyan);
  box-shadow: 0 0 8px var(--vone-glow-cyan);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--vone-glow-cyan); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--vone-glow-cyan); }
}

/* ── Headline ── */
.vone-hero__headline {
  max-width: 16ch;
  margin: 0 auto;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  font-weight: 500;
  text-wrap: balance;
}

.vone-hero__headline-accent {
  background: linear-gradient(135deg, var(--vone-glow-cyan) 0%, var(--vone-glow-violet) 50%, var(--vone-glow-emerald) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Sub-headline ── */
.vone-hero__sub {
  max-width: 620px;
  margin: 24px auto 0;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.55);
  text-wrap: pretty;
}

@media (min-width: 768px) {
  .vone-hero__sub {
    margin-top: 32px;
  }
}

/* ── CTA area ── */
.vone-hero__cta-area {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .vone-hero__cta-area {
    margin-top: 56px;
  }
}

.vone-cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px 14px 28px;
  border-radius: 9999px;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  touch-action: manipulation;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--vone-glow-violet) 0%, #6d28d9 100%);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.3),
    0 4px 24px -4px rgba(139, 92, 246, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.vone-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vone-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.5),
    0 8px 32px -4px rgba(139, 92, 246, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.vone-cta-primary:hover::before {
  opacity: 1;
}

.vone-cta-primary:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(7, 6, 11, 0.92),
    0 0 0 4px rgba(0, 240, 255, 0.42),
    0 8px 32px -4px rgba(139, 92, 246, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.vone-cta-primary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.vone-cta-primary:hover .vone-cta-primary__icon {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Bottom stats strip ── */
.vone-hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 6, 11, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.vone-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.vone-hero__stat {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.vone-hero__stat:last-child {
  border-right: none;
}

.vone-hero__stat-value {
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.vone-hero__stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .vone-hero__stat {
    padding: 20px 32px;
  }
  .vone-hero__stat-value {
    font-size: 16px;
  }
  .vone-hero__stat-label {
    font-size: 13px;
  }
}

@media (min-width: 1280px) {
  .vone-hero__stat {
    padding: 24px 40px;
  }
  .vone-hero__stat-value {
    font-size: 18px;
  }
}

/* ── Side accent line ── */
.vone-hero__accent-line {
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  z-index: 5;
  background: linear-gradient(to bottom, transparent, var(--vone-glow-violet), var(--vone-glow-cyan), transparent);
  opacity: 0.4;
}

@media (max-width: 767px) {
  .vone-hero__accent-line {
    display: none;
  }
}

/* ── Floating geometric shapes ── */
.vone-hero__geo {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.vone-hero__geo--hex {
  right: 8%;
  top: 18%;
  width: 280px;
  height: 280px;
  opacity: 0.04;
  animation: geoSpin 60s linear infinite;
}

.vone-hero__geo--ring {
  right: 15%;
  bottom: 25%;
  width: 180px;
  height: 180px;
  opacity: 0.03;
  animation: geoSpin 45s linear infinite reverse;
}

@keyframes geoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1023px) {
  .vone-hero__geo--hex {
    width: 180px;
    height: 180px;
    right: 3%;
    top: 10%;
  }
  .vone-hero__geo--ring {
    width: 120px;
    height: 120px;
    right: 5%;
    bottom: 20%;
  }
}

/* ── Entry animations ── */
.vone-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: voneFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes voneFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vone-fade-up--d1 { animation-delay: 0.1s; }
.vone-fade-up--d2 { animation-delay: 0.25s; }
.vone-fade-up--d3 { animation-delay: 0.4s; }
.vone-fade-up--d4 { animation-delay: 0.55s; }
.vone-fade-up--d5 { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .vone-hero__grid,
  .vone-hero__particle,
  .vone-hero__glow-orb,
  .vone-hero__scan-beam,
  .vone-hero__geo,
  .vone-hero__tag-dot,
  .vone-fade-up {
    animation: none;
  }

  .vone-fade-up {
    opacity: 1;
    transform: none;
  }

  .vone-cta-primary,
  .vone-cta-primary::before,
  .vone-cta-primary__icon {
    transition: none;
  }
}

/* ── Canvas grid animation styles ── */
#latticeCanvas {
  width: 100%;
  height: 100%;
}


/* ════════════════════════════════════════════════════
   s02 — PROBLEMA
   ════════════════════════════════════════════════════ */

.vone-problem {
  position: relative;
  overflow: hidden;
  background: var(--vone-surface-raised);
  padding-top: 80px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .vone-problem {
    padding-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-problem {
    padding-top: 160px;
  }
}

.vone-problem__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 75% 20%, rgba(239, 68, 68, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
}

.vone-problem__wrap {
  position: relative;
  z-index: 1;
}

/* ── Eyebrow ── */
.vone-problem__eyebrow-label {
  margin-bottom: 40px !important;
}

@media (min-width: 768px) {
  .vone-problem__eyebrow-label {
    margin-bottom: 48px !important;
  }
}

@media (min-width: 1280px) {
  .vone-problem__eyebrow-label {
    margin-bottom: 56px !important;
  }
}

/* ── Split header ── */
.vone-problem__header {
  padding-bottom: 56px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vone-problem.is-visible .vone-problem__header {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .vone-problem__header {
    padding-bottom: 64px;
  }
}

/* Red accent on headline keyword */
.vone-problem__accent {
  color: #ef4444;
}

.vone-problem__header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1280px) {
  .vone-problem__header-right {
    max-width: 44%;
  }
}

/* ── Main panel ── */
.vone-problem__panel {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}

.vone-problem.is-visible .vone-problem__panel {
  opacity: 1;
  transform: translateY(0);
}

/* ── Indicators column ── */
.vone-problem__ind-col {
  display: flex;
  flex-direction: column;
  border-right: none;
}

@media (min-width: 1280px) {
  .vone-problem__ind-col {
    border-right: 1px solid rgba(240, 228, 255, 0.08);
  }
}

/* ── Individual indicator card ── */
.vone-problem__ind-card {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.25s ease;
}

@media (min-width: 768px) {
  .vone-problem__ind-card {
    padding: 32px 36px;
  }
}

.vone-problem__ind-card:not(:last-child) {
  border-bottom: 1px solid rgba(240, 228, 255, 0.08);
}

.vone-problem__ind-card:hover {
  background: rgba(255, 255, 255, 0.015);
}

/* Left accent bar per card */
.vone-problem__ind-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vone-problem__ind-card:hover::before {
  opacity: 1;
}

.vone-problem__ind-card--1::before { background: linear-gradient(to bottom, #ef4444, rgba(239,68,68,0.2)); }
.vone-problem__ind-card--2::before { background: linear-gradient(to bottom, #ef4444, rgba(239,68,68,0.2)); }
.vone-problem__ind-card--3::before { background: linear-gradient(to bottom, #f59e0b, rgba(245,158,11,0.2)); }

/* Protocol header row */
.vone-problem__ind-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vone-problem__ind-proto-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vone-problem__ind-proto {
  font-family: var(--font-brand-mono, 'DSemi', monospace);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 768px) {
  .vone-problem__ind-proto {
    font-size: 15px;
  }
}

.vone-problem__ind-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.vone-problem__ind-badge--critical {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.vone-problem__ind-badge--warn {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.vone-problem__ind-desc {
  margin: 0;
  line-height: 1.6;
}

/* Progress bar */
.vone-problem__ind-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vone-problem__ind-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.vone-problem__ind-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vone-problem.is-visible .vone-problem__ind-bar-fill {
  width: var(--fill-width);
}

.vone-problem__ind-bar-fill--critical {
  background: linear-gradient(to right, rgba(239, 68, 68, 0.7), #ef4444);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.35);
}

.vone-problem__ind-bar-fill--warn {
  background: linear-gradient(to right, rgba(245, 158, 11, 0.6), #f59e0b);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.25);
}

.vone-problem__ind-pct {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(239, 68, 68, 0.8);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.vone-problem__ind-pct--warn {
  color: rgba(245, 158, 11, 0.8);
}

/* ── Visual column ── */
.vone-problem__visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  min-height: 320px;
}

@media (min-width: 768px) {
  .vone-problem__visual-col {
    padding: 64px 40px;
  }
}

.vone-problem__shield-wrap {
  position: relative;
  width: 220px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

@media (min-width: 768px) {
  .vone-problem__shield-wrap {
    width: 280px;
    height: 310px;
  }
}

.vone-problem__shield-field {
  position: absolute;
  inset: 14% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.08), transparent 52%),
    radial-gradient(circle at 50% 38%, rgba(139, 92, 246, 0.08), transparent 54%);
  filter: blur(10px);
  opacity: 0.8;
}

.vone-problem__shield-grid {
  position: absolute;
  inset: 10% 8%;
  border-radius: 50%;
  border: 1px solid rgba(239, 68, 68, 0.08);
  background-image:
    linear-gradient(rgba(239, 68, 68, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 68, 68, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95) 0 58%, transparent 78%);
  opacity: 0.42;
}

.vone-problem__shield-reticle {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(239, 68, 68, 0.12);
  pointer-events: none;
}

.vone-problem__shield-reticle::before,
.vone-problem__shield-reticle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(239, 68, 68, 0.15);
  transform: translate(-50%, -50%);
}

.vone-problem__shield-reticle::before {
  width: calc(100% - 52px);
  height: 1px;
}

.vone-problem__shield-reticle::after {
  width: 1px;
  height: calc(100% - 52px);
}

.vone-problem__shield-reticle--outer {
  width: 250px;
  height: 250px;
  animation: problemReticleSpin 18s linear infinite;
}

.vone-problem__shield-reticle--inner {
  width: 188px;
  height: 188px;
  border-style: dashed;
  border-color: rgba(245, 158, 11, 0.16);
  animation: problemReticleSpin 14s linear infinite reverse;
}

.vone-problem__shield-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  mask-image: radial-gradient(circle at center, transparent 0 54%, rgba(0, 0, 0, 0.96) 68%);
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg 286deg,
      rgba(239, 68, 68, 0.28) 318deg,
      rgba(255, 255, 255, 0.06) 334deg,
      transparent 360deg
    );
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: problemSweepRotate 5.8s linear infinite;
}

.vone-problem__shield-node {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow:
    0 0 0 6px rgba(239, 68, 68, 0.06),
    0 0 12px rgba(239, 68, 68, 0.5);
  z-index: 2;
  animation: problemNodeBlink 2.8s ease-in-out infinite;
}

.vone-problem__shield-node--top {
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.vone-problem__shield-node--left {
  left: 14px;
  top: 52%;
  transform: translateY(-50%);
  animation-delay: 0.7s;
}

.vone-problem__shield-node--right {
  right: 14px;
  top: 38%;
  transform: translateY(-50%);
  animation-delay: 1.3s;
}

.vone-problem__shield-hud {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 88px;
  padding: 8px 10px;
  border: 1px solid rgba(239, 68, 68, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 10, 14, 0.82), rgba(8, 7, 12, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.vone-problem__shield-hud::after {
  content: '';
  position: absolute;
  inset: auto auto -1px -1px;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.55), transparent);
}

.vone-problem__shield-hud--top {
  top: 8px;
  right: -44px;
  animation: problemHudFloat 6s ease-in-out infinite;
}

.vone-problem__shield-hud--left {
  left: -56px;
  bottom: 54px;
  animation: problemHudFloat 7s ease-in-out infinite 0.7s;
}

.vone-problem__shield-hud--right {
  right: -58px;
  bottom: 88px;
  animation: problemHudFloat 6.4s ease-in-out infinite 1.2s;
}

.vone-problem__shield-hud-label {
  font-family: var(--font-brand-mono, 'DSemi', monospace);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.vone-problem__shield-hud-value {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Pulse rings ── */
.vone-problem__pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(239, 68, 68, 0.1);
  animation: problemPulse 4s ease-out infinite;
}

.vone-problem__pulse-ring--1 { width: 160px; height: 160px; animation-delay: 0s; }
.vone-problem__pulse-ring--2 { width: 240px; height: 240px; animation-delay: 1.3s; }
.vone-problem__pulse-ring--3 { width: 320px; height: 320px; animation-delay: 2.6s; }

@keyframes problemPulse {
  0%   { transform: scale(0.85); opacity: 0.5; border-color: rgba(239, 68, 68, 0.2); }
  100% { transform: scale(1.4);  opacity: 0;   border-color: rgba(239, 68, 68, 0); }
}

/* ── Shield SVG ── */
.vone-problem__shield {
  width: 190px;
  height: 210px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 48px rgba(239, 68, 68, 0.1));
}

@media (min-width: 768px) {
  .vone-problem__shield {
    width: 230px;
    height: 254px;
  }
}

@media (max-width: 767px) {
  .vone-problem__shield-reticle--outer {
    width: 210px;
    height: 210px;
  }

  .vone-problem__shield-reticle--inner,
  .vone-problem__shield-sweep {
    width: 156px;
    height: 156px;
  }

  .vone-problem__shield-hud {
    min-width: 74px;
    padding: 7px 8px;
  }

  .vone-problem__shield-hud--top {
    right: -10px;
    top: -8px;
  }

  .vone-problem__shield-hud--left {
    left: -2px;
    bottom: 22px;
  }

  .vone-problem__shield-hud--right {
    right: -6px;
    bottom: 56px;
  }

  .vone-problem__shield-hud-label {
    font-size: 8px;
  }

  .vone-problem__shield-hud-value {
    font-size: 11px;
  }
}

/* ── Crack animations ── */
.vone-problem__crack {
  stroke-dashoffset: 100;
  animation: crackReveal 2s ease-out forwards;
}

.vone-problem__crack--1 { animation-delay: 0.3s; }
.vone-problem__crack--2 { animation-delay: 0.6s; }
.vone-problem__crack--3 { animation-delay: 0.9s; }
.vone-problem__crack--4 { animation-delay: 1.2s; }
.vone-problem__crack--5 { animation-delay: 1.5s; }

@keyframes crackReveal { to { stroke-dashoffset: 0; } }

/* ── Debris ── */
.vone-problem__debris { animation: debrisFloat 6s ease-in-out infinite; }
.vone-problem__debris--1 { animation-delay: 0s;    animation-duration: 5s; }
.vone-problem__debris--2 { animation-delay: -1s;   animation-duration: 7s; }
.vone-problem__debris--3 { animation-delay: -2s;   animation-duration: 6s; }
.vone-problem__debris--4 { animation-delay: -3s;   animation-duration: 8s; }
.vone-problem__debris--5 { animation-delay: -0.5s; animation-duration: 5.5s; }
.vone-problem__debris--6 { animation-delay: -2.5s; animation-duration: 7.5s; }

@keyframes debrisFloat {
  0%, 100% { transform: translate(0, 0);    opacity: 0.4; }
  25%       { transform: translate(-4px,-6px); opacity: 0.2; }
  50%       { transform: translate(3px,-3px);  opacity: 0.5; }
  75%       { transform: translate(-2px,4px);  opacity: 0.15; }
}

@keyframes problemReticleSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes problemSweepRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes problemNodeBlink {
  0%, 100% {
    opacity: 0.45;
    box-shadow:
      0 0 0 6px rgba(239, 68, 68, 0.04),
      0 0 8px rgba(239, 68, 68, 0.28);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 0 8px rgba(239, 68, 68, 0.08),
      0 0 16px rgba(239, 68, 68, 0.58);
  }
}

@keyframes problemHudFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Shield label ── */
.vone-problem__shield-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.vone-problem__shield-label-text {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(239, 68, 68, 0.55);
  font-weight: 600;
  white-space: nowrap;
  animation: glitchFlicker 3s ease-in-out infinite;
}

@keyframes glitchFlicker {
  0%, 92%, 100% { opacity: 0.55; }
  93% { opacity: 0.1; transform: translateX(2px); }
  94% { opacity: 0.7; transform: translateX(-1px); }
  95% { opacity: 0.2; transform: translateX(0); }
  96% { opacity: 0.55; }
}

/* ── Bottom divider ── */
.vone-problem__divider {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .vone-problem__divider {
    margin-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-problem__divider {
    margin-top: 160px;
  }
}

.vone-problem__divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(239, 68, 68, 0.12) 20%, rgba(139, 92, 246, 0.08) 80%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  .vone-problem__pulse-ring,
  .vone-problem__shield-reticle--outer,
  .vone-problem__shield-reticle--inner,
  .vone-problem__shield-sweep,
  .vone-problem__shield-node,
  .vone-problem__shield-hud,
  .vone-problem__crack,
  .vone-problem__debris,
  .vone-problem__shield-label-text,
  .vone-problem__ind-bar-fill {
    animation: none !important;
    transition: none !important;
  }

  .vone-problem__ind-bar-fill {
    width: var(--fill-width);
  }
}


/* ════════════════════════════════════════════════════
   s03 — AGITAÇÃO
   ════════════════════════════════════════════════════ */

.vone-agitation {
  position: relative;
  overflow: hidden;
  background: var(--vone-surface);
  padding-top: 80px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .vone-agitation {
    padding-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-agitation {
    padding-top: 160px;
  }
}

.vone-agitation__bg-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.vone-agitation__content {
  position: relative;
  z-index: 1;
}

/* ── Header: split layout ── */
.vone-agitation__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 56px;
}

@media (min-width: 1024px) {
  .vone-agitation__header {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 72px;
  }
}

@media (min-width: 1280px) {
  .vone-agitation__header {
    padding-bottom: 80px;
  }
}

.vone-agitation__header-left {
  flex: 1;
  min-width: 0;
}

@media (min-width: 1024px) {
  .vone-agitation__header-left {
    max-width: 55%;
    padding-right: 48px;
  }
}

.vone-agitation__headline {
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
}

.vone-agitation__header-right {
  flex: 1;
  min-width: 0;
}

@media (min-width: 1024px) {
  .vone-agitation__header-right {
    padding-left: 48px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 6px;
  }
}

.vone-agitation__desc {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65 !important;
}

.vone-agitation__desc strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ── Cards grid ── */
.vone-agitation__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.2s;
}

.vone-agitation.is-visible .vone-agitation__grid {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .vone-agitation__grid {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 768px) {
  .vone-agitation__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Card ── */
.vone-agitation__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(13, 12, 19, 0.94), rgba(7, 7, 12, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 32px rgba(0, 0, 0, 0.18);
  color: inherit;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

@media (min-width: 768px) {
  .vone-agitation__card {
    padding: 32px 28px;
    gap: 40px;
    min-height: 220px;
  }
}

@media (min-width: 1280px) {
  .vone-agitation__card {
    padding: 40px 32px;
    gap: 48px;
    min-height: 250px;
  }
}

.vone-agitation__card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(18, 18, 26, 0.96), rgba(10, 10, 16, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.24);
}

.vone-agitation__card--highlight {
  border-color: rgba(239, 68, 68, 0.12);
  background:
    linear-gradient(180deg, rgba(42, 13, 18, 0.94), rgba(18, 9, 12, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 16px 34px rgba(0, 0, 0, 0.2);
}

.vone-agitation__card--highlight:hover {
  border-color: rgba(239, 68, 68, 0.2);
  background:
    linear-gradient(180deg, rgba(52, 15, 21, 0.96), rgba(22, 10, 14, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.26);
}

/* ── Card icon ── */
.vone-agitation__card-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}

.vone-agitation__card-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .vone-agitation__card-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 1280px) {
  .vone-agitation__card-icon svg {
    width: 40px;
    height: 40px;
  }
}

/* ── Card text ── */
.vone-agitation__card-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .vone-agitation__card-title {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .vone-agitation__card-title {
    font-size: 20px;
  }
}

.vone-agitation__card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 1280px) {
  .vone-agitation__card-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ── Bottom divider ── */
.vone-agitation__divider {
  margin-top: 80px;
  position: relative;
}

@media (min-width: 768px) {
  .vone-agitation__divider {
    margin-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-agitation__divider {
    margin-top: 160px;
  }
}

.vone-agitation__divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06) 20%, rgba(139, 92, 246, 0.08) 80%, transparent);
}


/* ════════════════════════════════════════════════════
   s04 — SOLUÇÃO
   ════════════════════════════════════════════════════ */

.vone-solution {
  position: relative;
  overflow: hidden;
  background: var(--vone-surface-raised);
  padding-top: 80px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .vone-solution {
    padding-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-solution {
    padding-top: 160px;
  }
}

/* ── Background ── */
.vone-solution__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 60%, rgba(0, 240, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
}

/* ── Content wrapper ── */
.vone-solution__wrap {
  position: relative;
  z-index: 1;
}

/* ── Eyebrow ── */
.vone-solution__eyebrow-label {
  margin-bottom: 40px !important;
}

@media (min-width: 768px) {
  .vone-solution__eyebrow-label {
    margin-bottom: 56px !important;
  }
}

/* ── Header split ── */
.vone-solution__header {
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  .vone-solution__header {
    padding-bottom: 72px;
  }
}

@media (min-width: 1280px) {
  .vone-solution__header {
    padding-bottom: 80px;
  }
}

/* ── Right column: desc + CTA ── */
.vone-solution__header-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

@media (min-width: 1280px) {
  .vone-solution__header-body {
    max-width: 44%;
    padding-top: 8px;
  }
}

.vone-solution__cta-wrap {
  display: flex;
}

/* ── Grid container ── */
.vone-solution__grid {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}

.vone-solution.is-visible .vone-solution__grid {
  opacity: 1;
  transform: translateY(0);
}

/* ── Benefit cards ── */
.vone-solution__benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 20px;
  border-color: rgba(240, 228, 255, 0.08);
  overflow: hidden;
  transition: background 0.3s ease;
}

@media (min-width: 768px) {
  .vone-solution__benefit {
    padding: 32px 28px;
    min-height: 300px;
    gap: 40px;
  }
}

@media (min-width: 1280px) {
  .vone-solution__benefit {
    padding: 40px 40px;
    min-height: 360px;
    gap: 48px;
  }
}

.vone-solution__benefit:hover {
  background: rgba(255, 255, 255, 0.015);
}

/* Border separators — match nd-border-light (rgba 240,228,255,.08) */
.vone-solution__benefit--1,
.vone-solution__benefit--2 {
  border-bottom: 1px solid rgba(240, 228, 255, 0.08);
}

.vone-solution__benefit--1,
.vone-solution__benefit--3 {
  border-right: none;
}

@media (min-width: 768px) {
  .vone-solution__benefit--1,
  .vone-solution__benefit--3 {
    border-right: 1px solid rgba(240, 228, 255, 0.08);
  }
}

/* ── Top accent line (gradient bar) ── */
.vone-solution__benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(to right, var(--vone-glow-cyan), var(--vone-glow-violet), var(--vone-glow-emerald));
}

.vone-solution__benefit:hover::before {
  opacity: 1;
}

/* Each card gets a distinct accent on the left via initial state (always visible, subtle) */
.vone-solution__benefit--1::after,
.vone-solution__benefit--2::after,
.vone-solution__benefit--3::after,
.vone-solution__benefit--4::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
}

.vone-solution__benefit--1::after {
  background: linear-gradient(to bottom, var(--vone-glow-cyan), transparent);
  opacity: 0.3;
}

.vone-solution__benefit--2::after {
  background: linear-gradient(to bottom, var(--vone-glow-violet), transparent);
  opacity: 0.3;
}

.vone-solution__benefit--3::after {
  background: linear-gradient(to bottom, var(--vone-glow-emerald), transparent);
  opacity: 0.3;
}

.vone-solution__benefit--4::after {
  background: linear-gradient(to bottom, var(--vone-glow-cyan), var(--vone-glow-emerald));
  opacity: 0.25;
}

/* ── Icon wrapper ── */
.vone-solution__benefit-top {
  flex-shrink: 0;
}

.vone-solution__benefit-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.vone-solution__benefit-icon svg {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  width: 28px;
  height: 28px;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .vone-solution__benefit-icon svg {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1280px) {
  .vone-solution__benefit-icon svg {
    width: 40px;
    height: 40px;
  }
}

.vone-solution__benefit--1:hover .vone-solution__benefit-icon svg { color: var(--vone-glow-cyan); }
.vone-solution__benefit--2:hover .vone-solution__benefit-icon svg { color: var(--vone-glow-violet); }
.vone-solution__benefit--3:hover .vone-solution__benefit-icon svg { color: var(--vone-glow-emerald); }
.vone-solution__benefit--4:hover .vone-solution__benefit-icon svg { color: var(--vone-glow-cyan); }

/* ── Description ── */
.vone-solution__benefit-desc {
  margin-top: 12px !important;
}

@media (min-width: 1280px) {
  .vone-solution__benefit-desc {
    margin-top: 16px !important;
  }
}

/* ── Bottom divider ── */
.vone-solution__divider {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .vone-solution__divider {
    margin-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-solution__divider {
    margin-top: 160px;
  }
}

.vone-solution__divider-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.12) 20%, rgba(0, 240, 255, 0.08) 80%, transparent);
}


/* ════════════════════════════════════════════════════
   s05 — AUTORIDADE
   ════════════════════════════════════════════════════ */

.vone-authority {
  position: relative;
  overflow: hidden;
  background: var(--vone-surface);
  padding-top: 80px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .vone-authority {
    padding-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-authority {
    padding-top: 160px;
  }
}

/* Background subtle glow: cold steel + deep emerald */
.vone-authority__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% -10%, rgba(0, 240, 255, 0.045) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 90% 50%,  rgba(16, 185, 129, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 5% 80%,   rgba(139, 92, 246, 0.04) 0%, transparent 60%);
}

.vone-authority__wrap {
  position: relative;
  z-index: 1;
}

/* ── Eyebrow ── */
.vone-authority__eyebrow {
  margin-bottom: 40px !important;
}

@media (min-width: 768px) {
  .vone-authority__eyebrow {
    margin-bottom: 48px !important;
  }
}

@media (min-width: 1280px) {
  .vone-authority__eyebrow {
    margin-bottom: 56px !important;
  }
}

/* ── Split header ── */
.vone-authority__header {
  padding-bottom: 56px;

  /* Fade-up on scroll */
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vone-authority.is-visible .vone-authority__header {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .vone-authority__header {
    padding-bottom: 72px;
  }
}

.vone-authority__header-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 1280px) {
  .vone-authority__header-right {
    max-width: 44%;
  }
}

.vone-authority__cta-row {
  display: flex;
  align-items: center;
}

/* ── Stat cards grid ── */
.vone-authority__stats {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}

.vone-authority.is-visible .vone-authority__stats {
  opacity: 1;
  transform: translateY(0);
}

/* Stat icon color: muted teal */
.vone-authority__stat-icon {
  color: rgba(255, 255, 255, 0.3);
}

/* Highlight color utilities used inside stat values */
.text-nd-highlight-green  { color: var(--vone-glow-emerald); }
.text-nd-highlight-lavendar { color: var(--vone-glow-violet); }
.text-nd-highlight-gold   { color: #f5c842; }

/* ── Protocol strip ── */
.vone-authority__protocols {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;

  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.25s;
}

.vone-authority.is-visible .vone-authority__protocols {
  opacity: 1;
  transform: translateY(0);
}

.vone-authority__protocols-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  padding-left: 2px;
}

/* Scrolling track with fade masks */
.vone-authority__protocols-track {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);

  /* Fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%,
    transparent 100%
  );
}

/* Scrolling inner strip */
.vone-authority__protocols-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: vone-proto-scroll 30s linear infinite;
}

@keyframes vone-proto-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vone-authority__protocols-track:hover .vone-authority__protocols-inner {
  animation-play-state: paused;
}

/* Individual protocol tag */
.vone-authority__proto-tag {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.vone-authority__proto-tag:hover {
  color: var(--vone-glow-cyan);
}

.vone-authority__proto-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Bottom divider ── */
.vone-authority__divider {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .vone-authority__divider {
    margin-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-authority__divider {
    margin-top: 160px;
  }
}

.vone-authority__divider-line {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 240, 255, 0.10) 20%,
    rgba(16, 185, 129, 0.08) 80%,
    transparent
  );
}


/* ════════════════════════════════════════════════════
   s06 — BRANDING
   ════════════════════════════════════════════════════ */

.vone-branding {
  position: relative;
  overflow: hidden;
  background: var(--vone-surface-raised);
  padding-top: 80px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .vone-branding {
    padding-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-branding {
    padding-top: 160px;
  }
}

.vone-branding__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 20% 0%,  rgba(0, 240, 255, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 60%,  rgba(139, 92, 246, 0.04) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
}

/* ── Header ── */
.vone-branding__eyebrow {
  margin-bottom: 40px !important;
}

@media (min-width: 768px) {
  .vone-branding__eyebrow {
    margin-bottom: 48px !important;
  }
}

@media (min-width: 1280px) {
  .vone-branding__eyebrow {
    margin-bottom: 56px !important;
  }
}

.vone-branding__header {
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.vone-branding.is-visible .vone-branding__header {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .vone-branding__header {
    padding-bottom: 64px;
  }
}

.vone-branding__header-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 1280px) {
  .vone-branding__header-right {
    max-width: 44%;
  }
}

/* ── Carousel outer wrapper ── */
.vone-branding__carousel-outer {
  position: relative;
  z-index: 1;
  overflow: visible; /* arrows can overflow */
}

/* ── Meta bar: counter + progress + arrows ── */
.vone-branding__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.08s;
}

.vone-branding.is-visible .vone-branding__meta {
  opacity: 1;
  transform: translateY(0);
}

.vone-branding__counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.vone-branding__counter-current {
  color: rgba(255, 255, 255, 0.85);
}

.vone-branding__counter-sep {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 1px;
}

.vone-branding__counter-total {
  color: rgba(255, 255, 255, 0.3);
}

.vone-branding__progress {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  overflow: hidden;
}

.vone-branding__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--vone-glow-cyan), var(--vone-glow-violet));
  border-radius: 1px;
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.vone-branding__arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.vone-branding__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.vone-branding__arrow:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  color: var(--vone-glow-cyan);
}

/* ── Carousel viewport ── */
.vone-branding__viewport {
  overflow: hidden;
  /* Fade left/right edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,1) 4%,
    rgba(0,0,0,1) 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,1) 4%,
    rgba(0,0,0,1) 96%,
    transparent 100%
  );
}

/* ── Carousel track ── */
.vone-branding__track {
  display: flex;
  gap: 16px;
  /* Align first card with the constrained content above */
  padding-left: max(20px, calc((100vw - 1280px) / 2 + 20px));
  padding-right: max(20px, calc((100vw - 1280px) / 2 + 20px));
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;

  opacity: 0;
  /* Note: opacity separate from transform so carousel slide still works */
}

.vone-branding.is-visible .vone-branding__track {
  opacity: 1;
  transition:
    transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

/* ── Individual slides ── */
.vone-branding__slide {
  flex-shrink: 0;
  width: clamp(270px, 36vw, 440px);
}

/* ── Card ── */
.vone-branding__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #050810;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: grab;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.vone-branding__card:active {
  cursor: grabbing;
}

.vone-branding__card:hover,
.vone-branding__card--active {
  border-color: rgba(0, 240, 255, 0.18);
  box-shadow: 0 0 32px rgba(0, 240, 255, 0.06), 0 0 0 1px rgba(0, 240, 255, 0.06);
  transform: translateY(-3px);
}

/* ── SVG art fills the card ── */
.vone-branding__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vone-branding__art svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Caption overlay at bottom ── */
.vone-branding__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(3, 6, 14, 0.92) 0%, rgba(3, 6, 14, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vone-branding__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vone-glow-cyan);
}

.vone-branding__title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Bottom divider ── */
.vone-branding__divider {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .vone-branding__divider {
    margin-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-branding__divider {
    margin-top: 160px;
  }
}

.vone-branding__divider-line {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(139, 92, 246, 0.10) 25%,
    rgba(0, 240, 255, 0.07) 75%,
    transparent
  );
}


/* ════════════════════════════════════════════════════
   s07 — FAQ
   ════════════════════════════════════════════════════ */

.vone-faq {
  position: relative;
  overflow: hidden;
  background: var(--vone-surface);
  padding-top: 80px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .vone-faq {
    padding-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-faq {
    padding-top: 160px;
  }
}

.vone-faq__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 85% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 10% 70%, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
}

.vone-faq__wrap {
  position: relative;
  z-index: 1;
}

.vone-faq__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .vone-faq__layout {
    gap: 48px;
  }
}

@media (min-width: 1280px) {
  .vone-faq__layout {
    gap: 56px;
  }
}

.vone-faq.is-visible .vone-faq__layout {
  opacity: 1;
  transform: translateY(0);
}

.vone-faq__headline {
  margin: 0;
  width: 100%;
  max-width: 22rem;
  text-align: center;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .vone-faq__headline {
    max-width: none;
  }
}

/* Lista + acordeão centralizados */
.vone-faq__list {
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
}

@media (min-width: 768px) {
  .vone-faq__list {
    max-width: 48rem;
  }
}

/* ── Accordion ── */
.vone-faq__accordion {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.vone-faq__item {
  border-bottom: 1px solid rgba(240, 228, 255, 0.08);
}

.vone-faq__item--last {
  border-bottom: none;
}

.vone-faq__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.vone-faq__trigger {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 20px 18px;
  text-align: left;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .vone-faq__trigger {
    padding: 24px 28px;
    gap: 20px;
  }
}

.vone-faq__trigger:hover {
  background: rgba(255, 255, 255, 0.02);
}

.vone-faq__trigger:focus-visible {
  outline: 2px solid rgba(0, 240, 255, 0.5);
  outline-offset: -2px;
}

.vone-faq__num {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.28);
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
}

.vone-faq__item.is-open .vone-faq__num {
  color: var(--vone-glow-cyan);
}

.vone-faq__q-text {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.vone-faq__icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.2s ease;
  margin-top: 2px;
}

.vone-faq__item.is-open .vone-faq__icon {
  transform: rotate(180deg);
  color: var(--vone-glow-cyan);
}

/* Panel: grid height animation */
.vone-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.vone-faq__item.is-open .vone-faq__panel {
  grid-template-rows: 1fr;
}

.vone-faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.vone-faq__answer {
  margin: 0;
  padding: 0 18px 22px 18px;
  /* Alinha com o texto da pergunta (padding + coluna 01–07 + gap) */
  padding-left: 58px;
  max-width: 52rem;
}

@media (min-width: 768px) {
  .vone-faq__answer {
    padding: 0 28px 26px 28px;
    padding-left: 86px;
  }
}

/* Accent bar on open */
.vone-faq__item {
  position: relative;
}

.vone-faq__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--vone-glow-cyan), var(--vone-glow-violet));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vone-faq__item.is-open::before {
  opacity: 1;
}

/* ── Bottom divider ── */
.vone-faq__divider {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .vone-faq__divider {
    margin-top: 120px;
  }
}

@media (min-width: 1280px) {
  .vone-faq__divider {
    margin-top: 160px;
  }
}

.vone-faq__divider-line {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 240, 255, 0.08) 30%,
    rgba(139, 92, 246, 0.09) 70%,
    transparent
  );
}


/* ════════════════════════════════════════════════════
   s08 — RODAPÉ
   ════════════════════════════════════════════════════ */

.vone-footer {
  position: relative;
  overflow: hidden;
  background: var(--vone-surface);
  padding-top: 64px;
  padding-bottom: 40px;
  margin-top: 0;
}

@media (min-width: 768px) {
  .vone-footer {
    padding-top: 88px;
    padding-bottom: 48px;
  }
}

.vone-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 240, 255, 0.02) 0%, transparent 35%);
  opacity: 0.9;
}

.vone-footer__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 240, 255, 0.12) 20%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(16, 185, 129, 0.08) 80%,
    transparent
  );
  z-index: 1;
}

.vone-footer__inner {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.vone-footer.is-visible .vone-footer__inner {
  opacity: 1;
  transform: translateY(0);
}

/* ── Legal card ── */
.vone-footer__legal-wrap {
  margin-bottom: 0;
}

.vone-footer__legal-card {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 28px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
  .vone-footer__legal-card {
    padding: 28px 36px 32px;
  }
}

/* Subtle top amber stripe */
.vone-footer__legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(245, 158, 11, 0.3) 20%,
    rgba(245, 158, 11, 0.2) 80%,
    transparent
  );
}

/* Header row: icon + title */
.vone-footer__legal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .vone-footer__legal-header {
    margin-bottom: 18px;
  }
}

.vone-footer__legal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(245, 158, 11, 0.65);
}

.vone-footer__legal-title {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.vone-footer__legal-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.42);
}

.vone-footer__legal-text strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

@media (min-width: 768px) {
  .vone-footer__legal-text {
    font-size: 13.5px;
    max-width: 78ch;
  }
}

/* ── Row: links + social + logo ── */
.vone-footer__row {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(240, 228, 255, 0.08);
}

@media (min-width: 1024px) {
  .vone-footer__row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px 48px;
  }

  .vone-footer__nav-block {
    flex: 1 1 280px;
    min-width: 0;
  }

  .vone-footer__social {
    flex: 0 0 auto;
  }

  .vone-footer__logo {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.vone-footer__block-title {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.vone-footer__block-title--sm {
  margin-bottom: 14px;
}

/* Links com separador | */
.vone-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.vone-footer__links li {
  display: inline-flex;
  align-items: center;
}

.vone-footer__links li:not(:last-child)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.12);
  margin: 0 12px;
  font-weight: 300;
  font-size: 14px;
  user-select: none;
  pointer-events: none;
}

@media (min-width: 768px) {
  .vone-footer__links li:not(:last-child)::after {
    margin: 0 16px;
  }
}

.vone-footer__link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vone-footer__link:hover {
  color: var(--vone-glow-cyan);
}

.vone-footer__link:focus-visible {
  outline: 2px solid rgba(0, 240, 255, 0.45);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Redes */
.vone-footer__social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.vone-footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.vone-footer__social-btn:hover {
  border-color: rgba(0, 240, 255, 0.35);
  background: rgba(0, 240, 255, 0.06);
  color: var(--vone-glow-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.08);
}

.vone-footer__social-btn:focus-visible {
  outline: 2px solid rgba(0, 240, 255, 0.5);
  outline-offset: 2px;
}

/* Logo */
.vone-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.vone-footer__logo:hover {
  opacity: 0.85;
}

.vone-footer__logo:focus-visible {
  outline: 2px solid rgba(0, 240, 255, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

.vone-footer__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--vone-surface);
  background: linear-gradient(135deg, var(--vone-glow-cyan), var(--vone-glow-violet));
}

.vone-footer__logo-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.88);
}

/* Bottom */
.vone-footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 228, 255, 0.06);
}

.vone-footer__copy {
  margin: 0;
  font-size: 13px;
}

/* ════════════════════════════════════════════════════
   Footer padrão global (mesmo da tecnologia)
   ════════════════════════════════════════════════════ */

.tech-footer {
  position: relative;
  padding: 4rem 0 calc(3.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.98), rgba(5, 5, 8, 1));
  overflow: hidden;
}

.tech-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-footer__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.24;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 100%);
}

.tech-footer__frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.12rem;
  align-items: stretch;
}

.tech-footer__card,
.tech-footer__nav {
  min-width: 0;
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(14, 15, 20, 0.96), rgba(8, 9, 13, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tech-footer__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
  animation: techFooterRise 0.62s cubic-bezier(0.2, 0.72, 0.24, 1) both;
}

.tech-footer__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(89, 225, 255, 0.11), transparent 35%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 55%);
  opacity: 0.54;
}

.tech-footer__card > * {
  position: relative;
  z-index: 1;
}

.tech-footer__brand,
.tech-footer__legal {
  height: 100%;
  min-height: 10.4rem;
}

.tech-footer__card--legal {
  animation-delay: 0.06s;
}

.tech-footer__card:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 225, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(16, 18, 24, 0.98), rgba(10, 12, 17, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.tech-footer__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-footer__title {
  max-width: 22ch;
  margin: 0.8rem 0 0;
  font-size: clamp(2.2rem, 2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.94);
}

.tech-footer__label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.tech-footer__copy {
  margin: 0.85rem 0 0;
  font-size: 0.93rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.6);
  text-wrap: pretty;
}

.tech-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  padding: 0.62rem 0.7rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(11, 13, 18, 0.96), rgba(7, 8, 12, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.24);
  animation: techFooterRise 0.62s cubic-bezier(0.2, 0.72, 0.24, 1) both;
  animation-delay: 0.12s;
}

.tech-footer__nav-list {
  display: flex;
  flex: 1 1 38rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.58rem;
  min-width: 0;
}

.tech-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.48rem;
  padding: 0 1.08rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.97rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tech-footer__nav-credit {
  margin: 0 0 0 auto;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.tech-footer__nav-credit-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(89, 225, 255, 0.24);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.tech-footer__nav-credit-link:hover {
  color: #59e1ff;
  border-color: rgba(89, 225, 255, 0.62);
  box-shadow: 0 1px 0 rgba(89, 225, 255, 0.34);
}

.tech-footer__nav-credit-link:focus-visible {
  outline: 2px solid var(--vone-glow-cyan, #59e1ff);
  outline-offset: 3px;
}

.tech-footer__link.is-active,
.tech-footer__link[aria-current="page"] {
  color: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.32);
}

.tech-footer__link:hover {
  color: #ffffff;
  border-color: rgba(89, 225, 255, 0.24);
  background: rgba(89, 225, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.tech-footer__link:focus-visible {
  outline: 2px solid var(--vone-glow-cyan, #59e1ff);
  outline-offset: 3px;
}

@keyframes techFooterRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 960px) {
  .tech-footer__frame {
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
    align-items: stretch;
  }

  .tech-footer__nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .tech-footer {
    padding: 3.2rem 0 calc(3rem + env(safe-area-inset-bottom));
  }

  .tech-footer__brand,
  .tech-footer__legal,
  .tech-footer__nav {
    padding: 1rem 0.95rem;
    border-radius: 1.15rem;
  }

  .tech-footer__nav {
    gap: 0.72rem;
  }

  .tech-footer__nav-list {
    gap: 0.5rem;
  }

  .tech-footer__nav-credit {
    width: 100%;
    padding-top: 0.15rem;
    padding-left: 0;
    text-align: left;
    white-space: normal;
  }

  .tech-footer__link {
    min-height: 2.3rem;
    padding: 0 0.92rem;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-footer__card,
  .tech-footer__nav,
  .tech-footer__link {
    transition: none;
  }

  .tech-footer__card,
  .tech-footer__nav {
    animation: none;
  }
}
