/* ============================================
   TRÍADE — v2 Premium Design System
   Light/Dark Mode + Lovable Visual Reference
   ============================================ */

/* ---------- LENIS SMOOTH SCROLL ---------- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand */
  --orange: #FF6600;
  --orange-hover: #FF7A1A;
  --orange-glow: rgba(255, 102, 0, 0.25);
  --orange-glow-sm: rgba(255, 102, 0, 0.15);
  --orange-subtle: rgba(255, 102, 0, 0.08);
  --orange-border: rgba(255, 102, 0, 0.2);

  /* Light Mode (default) */
  --bg: #FDF6E9;
  --bg-soft: #F8F1E4;
  --bg-card: #FDF6E9;
  --bg-muted: #F3ECDF;
  --fg: #09090B;
  --fg-secondary: #71717A;
  --fg-muted: #A1A1AA;
  --border: #E8E1D4;
  --border-hover: #D9D2C5;

  /* Glass */
  --glass-bg: rgba(253, 246, 233, 0.75);
  --glass-border: rgba(253, 246, 233, 0.5);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);

  /* Typography */
  --font: 'Satoshi', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container-max: 1200px;
  --container-px: clamp(20px, 5vw, 40px);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
  --dur-slow: 0.5s;

  /* Theme transition */
  --theme-transition: background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

/* ---------- DARK MODE ---------- */
[data-theme="dark"] {
  --bg: #09090B;
  --bg-soft: #0F0F11;
  --bg-card: #18181B;
  --bg-muted: #1E1E22;
  --fg: #FAFAFA;
  --fg-secondary: #A1A1AA;
  --fg-muted: #71717A;
  --border: #27272A;
  --border-hover: #3F3F46;
  --glass-bg: rgba(9, 9, 11, 0.7);
  --glass-border: rgba(39, 39, 42, 0.5);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: var(--theme-transition);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}


/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  transition: color var(--dur-slow) var(--ease);
}

h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  transition: color var(--dur-slow) var(--ease);
}

.text-orange {
  color: var(--orange);
}

.text-orange-italic {
  color: var(--orange);
  font-style: italic;
}

/* Pointer Highlight Animation */
.pointer-highlight {
  position: relative;
  display: inline-block;
}

.ph-rect {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 102, 0, 0.35);
  border-radius: 4px;
  pointer-events: none;
  z-index: 0;
  width: 0;
  height: 0;
  transition: width 1s ease-in-out, height 1s ease-in-out;
}

[data-theme="dark"] .ph-rect {
  border-color: rgba(255, 102, 0, 0.5);
}

.pointer-highlight.active .ph-rect {
  width: 100%;
  height: 100%;
}

.ph-pointer {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transform: rotate(-90deg);
  color: var(--orange);
  font-size: 1.25rem;
  top: 0;
  left: 0;
  transition: opacity 0.1s ease-in-out, top 1s ease-in-out, left 1s ease-in-out;
}

.ph-pointer svg {
  display: inline;
  width: 1.25rem;
  height: 1.25rem;
}

.pointer-highlight.active .ph-pointer {
  opacity: 1;
  top: calc(100% + 4px);
  left: calc(100% + 4px);
}

/* Shimmer Text Animation */
.shimmer-text {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--orange) 0%, #ffcc80 40%, var(--orange) 60%, #ff8a50 80%, var(--orange) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerWave 4s linear infinite;
}

@keyframes shimmerWave {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}


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

.section {
  padding: var(--section-py) 0;
  transition: var(--theme-transition);
}

.section-alt {
  background: var(--bg-soft);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}

.section-header p {
  margin-top: 14px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--orange-subtle);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  transition: var(--theme-transition);
}

.section-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}


/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 0 24px var(--orange-glow);
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur) var(--ease);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-subtle);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* Premium Shiny CTA Button (Adapted — Orange Brand) */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 20%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: #ffcc80;
  inherits: false;
}

.shiny-cta {
  --gradient-angle: 0deg;
  --gradient-angle-offset: 0deg;
  --gradient-percent: 20%;
  --gradient-shine: #ffcc80;
  --shadow-size: 2px;
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(#0a0b14, #0a0b14) padding-box,
    conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent 0%,
      #FF6600 5%,
      var(--gradient-shine) 15%,
      #FF6600 30%,
      transparent 40%,
      transparent 100%) border-box;
  border: 2px solid transparent;
  box-shadow: inset 0 0 0 1px #1a1818;
  outline: none;
  transition:
    --gradient-angle-offset 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --gradient-percent 800ms cubic-bezier(0.25, 1, 0.5, 1),
    --gradient-shine 800ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.3s,
    transform 0.3s ease;
  cursor: pointer;
  isolation: isolate;
  outline-offset: 4px;
  font-family: var(--font);
  z-index: 0;
  animation: shiny-border-spin 2.5s linear infinite;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 100%;
  height: 56px;
}

/* Light theme: fundo claro com borda laranja */
[data-theme="light"] .shiny-cta {
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
    conic-gradient(from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent 0%,
      #FF6600 5%,
      var(--gradient-shine) 15%,
      #FF6600 30%,
      transparent 40%,
      transparent 100%) border-box;
  color: var(--fg);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

@keyframes shiny-border-spin {
  to {
    --gradient-angle: 360deg;
  }
}

.shiny-cta:hover {
  transform: scale(1.04);
}

.shiny-cta:active {
  transform: translateY(1px) scale(1.02);
}

/* Dot pattern mask — rotates with the gradient */
.shiny-cta::before {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  --size: calc(100% - 6px);
  --position: 2px;
  --space: 4px;
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle at var(--position) var(--position), white 0.5px, transparent 0) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(from calc(var(--gradient-angle) + 45deg), black, transparent 10% 90%, black);
  border-radius: inherit;
  opacity: 0.4;
}

/* Shimmer sweep overlay */
.shiny-cta::after {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(-50deg, transparent, #FF7A1A, transparent);
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
  animation: shiny-shimmer 4s linear infinite;
}

[data-theme="light"] .shiny-cta::after {
  background: linear-gradient(-50deg, transparent, #FF6600, transparent);
  opacity: 0.4;
}

.shiny-cta span {
  position: relative;
  z-index: 2;
  display: inline-block;
}

/* Breathing glow behind text */
.shiny-cta span::before {
  content: '';
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  --size: calc(100% + 1rem);
  width: var(--size);
  height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px #FF6600;
  opacity: 0;
  border-radius: inherit;
  transition: opacity 800ms cubic-bezier(0.25, 1, 0.5, 1);
  animation: shiny-breathe 4.5s linear infinite;
}

@keyframes shiny-shimmer {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes shiny-breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.20);
  }
}

[data-theme="light"] .btn-sweep {
  background-color: #0f0f0f;
  color: #fff;
}

[data-theme="dark"] .btn-sweep {
  background-color: #fafafa;
  color: #0f0f0f;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.btn-sweep:active {
  transform: translate(3px, 3px);
}

.btn-sweep:hover {
  outline: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .btn-sweep:hover {
  outline: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-sweep svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.btn-sweep:hover svg {
  transform: translateX(3px);
}

.btn-sweep-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  height: 130px;
  width: 130px;
  border-radius: 9999px;
  background-color: white;
  mix-blend-mode: difference;
  transform: translateX(0) translateY(0);
  transition: transform 0.3s linear, border-radius 0.3s linear;
  pointer-events: none;
}

.btn-sweep:hover .btn-sweep-overlay {
  transform: translateX(calc(100% + 130px)) translateY(-50%);
  border-radius: 0;
}



/* Shimmer CTA Button */
.btn-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 140px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-pill);
  border: 1px solid var(--orange-border);
  background: var(--bg-card);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all var(--dur) var(--ease);
}

.btn-header::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 102, 0, 0.2) 25%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 102, 0, 0.2) 75%, transparent 100%);
  background-size: 200% 100%;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.btn-header:hover::before {
  opacity: 1;
  animation: shimmerSync 2s infinite ease-in-out;
}

@keyframes shimmerSync {
  0% {
    background-position: 150% 0;
  }

  100% {
    background-position: -150% 0;
  }
}

.btn-header-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 5px;
  z-index: 2;
  transition: all 0.4s var(--ease);
}

.btn-header:hover .btn-header-icon {
  width: calc(100% - 10px);
  border-radius: 30px;
}

.btn-header-icon svg {
  width: 16px;
  height: 16px;
  stroke: #FFF;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.3s ease;
}

.btn-header:hover .btn-header-icon svg {
  animation: arrowNudge 1s infinite ease-in-out;
}

@keyframes arrowNudge {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

.btn-header-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg);
  margin-left: 10px;
  margin-right: 14px;
  white-space: nowrap;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-header:hover .btn-header-text {
  opacity: 0;
  transform: translateX(30px);
}


/* ---------- HEADER ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: padding var(--dur) var(--ease);
}

#header.scrolled {
  padding: 10px 24px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 20px;
  border-radius: var(--radius-pill);
  background: var(--glass-bg);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: var(--theme-transition), box-shadow var(--dur-slow) var(--ease);
}

[data-theme="dark"] .header-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}


.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--fg);
}

.logo-icon {
  width: 36px;
  height: 36px;
}

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

/* Nav Links with Icon Reveal */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-secondary);
  transition: color 0.3s ease, padding 0.5s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--fg);
  padding: 6px 16px;
}

.nav-link-icon {
  width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.5s ease, opacity 0.5s ease, transform 0.5s ease, margin 0.5s ease;
  transform: scale(0.2);
}

.nav-link-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.nav-link:hover .nav-link-icon {
  width: 16px;
  opacity: 1;
  transform: scale(1);
  margin-right: 8px;
}

/* Hover underline glow */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease;
  box-shadow: 0 0 8px var(--orange-glow);
}

.nav-link:hover::after {
  left: 20%;
  right: 20%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  transition: var(--theme-transition);
  flex-shrink: 0;
}

.theme-toggle-knob {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fg);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

[data-theme="dark"] .theme-toggle-knob {
  transform: translateX(20px);
  background: var(--orange);
}

.theme-toggle-icons {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  pointer-events: none;
}

.theme-toggle-icons svg {
  width: 12px;
  height: 12px;
  color: var(--fg-muted);
}

/* Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), background var(--dur-slow) var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg-secondary);
}

.mobile-menu a:hover {
  color: var(--orange);
}


/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Grid Ripple Background */
.grid-ripple {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.grid-ripple-row {
  display: flex;
  flex-shrink: 0;
}

.grid-ripple-cell {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 0.5px solid rgba(255, 102, 0, 0.04);
  background: transparent;
  animation: rippleCell 5.5s ease-in-out infinite;
  animation-delay: var(--d);
}

[data-theme="dark"] .grid-ripple-cell {
  border-color: rgba(255, 102, 0, 0.03);
  animation-name: rippleCellDark;
}

@keyframes rippleCell {

  0%,
  18%,
  100% {
    background-color: transparent;
  }

  8% {
    background-color: rgba(255, 102, 0, 0.06);
  }
}

@keyframes rippleCellDark {

  0%,
  18%,
  100% {
    background-color: transparent;
  }

  8% {
    background-color: rgba(255, 102, 0, 0.08);
  }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  pointer-events: none;
}

[data-theme="dark"] .hero-glow {
  background: radial-gradient(circle, rgba(255, 102, 0, 0.12) 0%, transparent 70%);
}

/* ---- Energy Flow Visualization ---- */
.energy-flow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  pointer-events: none;
  z-index: 2;
  filter: blur(1.5px);
  opacity: 0.5;
  transition: filter 0.8s var(--ease), opacity 0.8s var(--ease);
}

#hero.energized .energy-flow {
  filter: blur(0.5px);
  opacity: 0.75;
}

/* SVG Connections */
.energy-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.conn-glow {
  fill: none;
  stroke: rgba(255, 102, 0, 0.15);
  stroke-width: 0.6;
  stroke-linecap: round;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
  filter: blur(1.5px);
}

.conn-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 0.2;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.5s ease-in-out;
  transition-delay: var(--cd, 0s);
  filter: drop-shadow(0 0 2px rgba(255, 102, 0, 0.5));
}

.conn-core {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 0.08;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.5s ease-in-out;
  transition-delay: var(--cd, 0s);
}

#hero.energized .conn-glow {
  opacity: 1;
}

#hero.energized .conn-line {
  stroke-dashoffset: 0;
}

#hero.energized .conn-core {
  stroke-dashoffset: 0;
}

/* Orb Nodes */
.orb-node {
  position: absolute;
  left: var(--ox);
  top: var(--oy);
  z-index: 3;
  transition: left 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#hero.energized .orb-node {
  left: var(--gx);
  top: var(--gy);
}

.orb-float {
  transform: translate(-50%, -50%);
}

.orb-body {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.7s var(--ease);
  position: relative;
  overflow: hidden;
}

.orb-body::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 60%);
}

.orb-body svg {
  width: 20px;
  height: 20px;
  stroke: var(--fg-muted);
  stroke-width: 1.5;
  fill: none;
  position: relative;
  z-index: 1;
  transition: all 0.5s var(--ease);
}

#hero.energized .orb-body {
  border-color: var(--orange);
  background: rgba(255, 102, 0, 0.06);
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.25);
}

[data-theme="dark"] #hero.energized .orb-body {
  background: rgba(255, 102, 0, 0.1);
  box-shadow: 0 0 40px rgba(255, 102, 0, 0.35);
}

#hero.energized .orb-body svg {
  stroke: var(--orange);
  filter: drop-shadow(0 0 4px rgba(255, 102, 0, 0.5));
}

.orb-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s;
}

#hero.energized .orb-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Orb Float Animations */
.orb-anim-1 {
  animation: floatOrb1 12s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.orb-anim-2 {
  animation: floatOrb2 14s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite reverse;
}

.orb-anim-3 {
  animation: floatOrb1 16s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite 2s;
}

#hero.energized .orb-anim-1,
#hero.energized .orb-anim-2,
#hero.energized .orb-anim-3 {
  animation: none;
}

@keyframes floatOrb1 {

  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0);
  }

  25% {
    transform: translate(-50%, -50%) translate(10px, -15px) rotate(5deg);
  }

  50% {
    transform: translate(-50%, -50%) translate(-5px, -10px) rotate(-3deg);
  }

  75% {
    transform: translate(-50%, -50%) translate(-8px, 5px) rotate(-2deg);
  }
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: translate(-50%, -50%) translate(0, 0) rotate(0);
  }

  25% {
    transform: translate(-50%, -50%) translate(-12px, 8px) rotate(-5deg);
  }

  50% {
    transform: translate(-50%, -50%) translate(8px, -6px) rotate(3deg);
  }

  75% {
    transform: translate(-50%, -50%) translate(-5px, 10px) rotate(-4deg);
  }
}

/* Central Hub */
.energy-hub {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  pointer-events: all;
  cursor: pointer;
  z-index: 4;
}

.hub-body {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s var(--ease);
  position: relative;
}

.hub-body:hover {
  border-color: var(--border-hover);
}

.hub-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.2;
  transition: all 0.5s var(--ease);
  animation: hubPulse 2s ease infinite;
}

#hero.energized .hub-body {
  border-color: var(--orange);
  background: rgba(255, 102, 0, 0.08);
  box-shadow: 0 0 50px rgba(255, 102, 0, 0.35);
}

#hero.energized .hub-dot {
  background: var(--orange);
  opacity: 1;
  animation: none;
}

.hub-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  opacity: 0;
  pointer-events: none;
}

#hero.energized .hub-ping {
  animation: hubPingAnim 1.5s ease infinite;
}

@keyframes hubPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.35;
  }
}

@keyframes hubPingAnim {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Energy state text */
.energy-text {
  position: absolute;
  left: 50%;
  bottom: 1%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  opacity: 0.5;
  transition: all 0.5s ease;
  white-space: nowrap;
}

.energy-text-before {
  opacity: 0.5;
}

.energy-text-after {
  opacity: 0;
}

#hero.energized .energy-text-before {
  opacity: 0;
}

#hero.energized .energy-text-after {
  opacity: 1;
  color: var(--orange);
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  transition: filter 0.8s var(--ease), opacity 0.8s var(--ease);
}

/* When energized: hero text blurs, energy flow becomes sharp */
#hero.energized .hero-content {
  filter: blur(3px);
  opacity: 0.4;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  color: var(--fg-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--fg-muted);
  margin-left: -6px;
  transition: var(--theme-transition);
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-stars {
  color: var(--orange);
  letter-spacing: 2px;
}


/* ---------- MARQUEE (Premium Silver Edition) ---------- */
.marquee-wrapper {
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--theme-transition);
}

.stripe {
  position: relative;
  width: 100%;
  padding: 14px 0;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  user-select: none;
  font-weight: 500;
}

.scroller {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.stripe .item {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  text-transform: uppercase;
  padding: 0 20px;
  letter-spacing: 0.12em;
}

.stripe .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: 20px;
  display: inline-block;
}

/* Faixa Prateada */
.stripe.silver-band {
  background: radial-gradient(67.54% 100.03% at 50% 0%, #F9FAFB 0%, #E5E7EB 25.48%, #D1D5DB 62.5%, #9CA3AF 100%);
  color: #1f2937;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

[data-theme="light"] .stripe.silver-band {
  background: radial-gradient(67.54% 100.03% at 50% 0%, var(--bg) 0%, var(--bg-soft) 25.48%, var(--border) 62.5%, var(--border-hover) 100%);
}

.stripe.silver-band .dot {
  background-color: #1f2937;
}

.stripe.silver-band .scroller {
  animation: scroll-left 60s linear infinite;
}

/* Faixa Escura */
.stripe.dark-band {
  background-color: #0a0b14;
  color: #E5E7EB;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 5;
}

[data-theme="light"] .stripe.dark-band {
  background-color: var(--fg);
  color: var(--bg);
}

.stripe.dark-band .dot {
  background-color: #9CA3AF;
}

.stripe.dark-band .scroller {
  animation: scroll-right 65s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}


/* ---------- CARDS (Glass Card Premium) ---------- */
.card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  background: transparent;
  border: none;
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

/* Rotating conic gradient border */
.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      transparent 70%,
      rgba(255, 140, 50, 0.4) 92%,
      rgba(255, 102, 0, 0.6) 96%,
      rgba(255, 140, 50, 0.4) 99%,
      transparent 100%);
  animation: glassCardRotate 15s linear infinite;
  z-index: 0;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.card:hover::before {
  opacity: 0.8;
}

/* Inner mask */
.card::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  background: var(--bg-card);
  border-radius: calc(var(--radius-xl) - 1.5px);
  z-index: 1;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, background-color 0.5s ease;
}

[data-theme="dark"] .card::after {
  background: rgba(18, 18, 20, 0.9);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
}

@keyframes glassCardRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px -10px rgba(255, 102, 0, 0.12);
}

[data-theme="dark"] .card:hover {
  box-shadow: 0 20px 50px -10px rgba(255, 102, 0, 0.2);
}

.card:hover::after {
  border-color: rgba(255, 102, 0, 0.2);
}

/* Specular shine layer */
.card-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: var(--radius-xl);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 102, 0, 0.08) 0%, transparent 60%);
}

.card:hover .card-shine {
  opacity: 1;
}

/* All card inner content above z layers */
.card>*:not(.card-shine) {
  position: relative;
  z-index: 2;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--orange-subtle);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.5s var(--ease);
}

.card:hover .card-icon {
  background: rgba(255, 102, 0, 0.12);
  border-color: rgba(255, 102, 0, 0.35);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 24px rgba(255, 102, 0, 0.2);
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  stroke-width: 1.5;
  fill: none;
}

.card h4 {
  margin-bottom: 8px;
}

.card p {
  font-size: 0.875rem;
  line-height: 1.6;
}


/* ---------- PROBLEMS SECTION ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* ---------- SOLUTION SECTION ---------- */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.pillar-tag {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: var(--theme-transition);
}


/* ---------- FOUNDERS SECTION (Editorial Layout) ---------- */
#fundadores {
  position: relative;
  overflow: hidden;
}

/* Header centralizado */
.founders-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.founders-header .section-badge {
  margin-bottom: 24px;
}

.founders-header h2 {
  margin-bottom: 20px;
}

.founders-header-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--fg-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* Grid editorial: 3 blocos + 2 dividers */
.founders-editorial {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Cada bloco fundador */
.founder-block {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Numeração decorativa */
.founder-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--fg);
  opacity: 0.07;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* Nome em destaque */
.founder-name {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--fg);
  line-height: 1.2;
}

/* Papel / título em laranja */
.founder-role {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

/* Tags / pills */
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.founder-tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--orange-subtle);
  border: 1px solid var(--orange-border);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--orange);
  transition: all var(--dur) var(--ease);
}

.founder-tag:hover {
  background: rgba(255, 102, 0, 0.12);
  border-color: rgba(255, 102, 0, 0.35);
}

/* Frase de impacto */
.founder-quote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fg-secondary);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Botão LinkedIn */
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  width: fit-content;
}

.founder-linkedin svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: color 0.35s var(--ease);
}

.founder-linkedin:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.25);
}

.founder-linkedin:hover svg {
  color: #fff;
}

/* Divider vertical entre blocos */
.founder-block-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  flex-shrink: 0;
  align-self: stretch;
}

/* Link institucional LinkedIn */
.founders-company-link {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
}

.founders-company-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.founders-company-link svg {
  width: 16px;
  height: 16px;
}

.founders-company-link a:hover {
  color: var(--orange);
}


/* ---------- TESTIMONIAL CAROUSEL ---------- */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track-wrapper {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}

.carousel-track:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.testimonial-video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.testimonial-video-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.35);
}

/* Play button */
.testimonial-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s var(--ease);
}

.testimonial-play svg {
  width: 22px;
  height: 22px;
  color: #fff;
  margin-left: 3px;
}

.testimonial-video-placeholder:hover .testimonial-play {
  background: rgba(255, 102, 0, 0.85);
  border-color: rgba(255, 102, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Play pulse animation */
.testimonial-play::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Bottom overlay with label */
.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.testimonial-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* Carousel Arrows */
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  z-index: 5;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--fg);
}

.carousel-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.carousel-arrow:hover svg {
  color: #fff;
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.carousel-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: var(--radius-pill);
}

/* When video is embedded */
.testimonial-card video,
.testimonial-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}


/* ===============================================
   MÉTODO T3 — ZOOM STAGE (estilo Karpa Digital)
   =============================================== */

/* Seção container principal */
#metodo {
  position: relative;
}

/* ---------- STAGE DO ZOOM ---------- */
/* Ocupa 100vh fixo, é o "portal" de entrada */
.metodo-zoom-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  transition: background-color 0.5s ease;
}

/* Badge pré-zoom */
.metodo-pre-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--orange-subtle);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* Wrapper do título — centraliza e controla o overflow */
.metodo-title-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: visible;
}

/* O título gigante que vai dar ZOOM */
.metodo-zoom-title {
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  text-align: center;
  will-change: transform, opacity, filter;
  transform-origin: 50% 50%;
  transition: color 0.4s ease;
  white-space: nowrap;
}

.metodo-zoom-title em {
  font-style: italic;
  color: var(--orange);
}

/* Descrição pré-zoom */
.metodo-pre-desc {
  margin-top: 24px;
  font-size: clamp(0.9rem, 1.2vw, 1.0625rem);
  color: var(--fg-secondary);
  text-align: center;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

/* Overlay escuro que emerge durante o zoom */
.metodo-dark-overlay {
  position: absolute;
  inset: 0;
  background: #09090B;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* ---------- CONTEÚDO DARK ---------- */
/* Overlay absoluto dentro do stage pinado — aparece sobre o fundo escuro */
.metodo-dark-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09090B;
  opacity: 0;
  pointer-events: none;
}

.metodo-dark-content .section-header h2 {
  color: #FAFAFA;
}

.metodo-dark-content .card {
  background: transparent;
}

/* Cards no universo dark */
.metodo-dark-content .card::after {
  background: rgba(18, 18, 20, 0.92);
  border-color: rgba(255, 102, 0, 0.12);
}

.metodo-dark-content .card h4 {
  color: #FAFAFA;
}

.metodo-dark-content .card p {
  color: rgba(250, 250, 250, 0.6);
}

/* ---------- METHOD GRID ---------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 16px;
  flex-shrink: 0;
}


/* ---------- SOCIAL PROOF NUMBERS ---------- */
#numeros {
  padding: clamp(40px, 5vw, 60px) 0;
}

.proof-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: var(--theme-transition);
}

.proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.5;
}

.proof-metrics {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.proof-metric {
  flex: 1;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 32px);
}

.proof-number {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.proof-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

.proof-divider {
  width: 1px;
  align-self: stretch;
  min-height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  flex-shrink: 0;
}

.proof-context {
  text-align: center;
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--border);
  line-height: 1.7;
  font-style: italic;
}

/* Reduced motion: show final values immediately */
@media (prefers-reduced-motion: reduce) {
  .proof-number {
    transition: none;
  }
}


/* ---------- SERVICES SECTION ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* ---------- DIFFERENTIALS TABLE ---------- */
.diff-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--theme-transition);
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
}

.diff-table th,
.diff-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  transition: var(--theme-transition);
}

.diff-table th {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: var(--bg-muted);
}

.diff-table th:first-child {
  text-align: left;
  color: var(--fg);
}

.diff-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--fg);
}

.diff-table th.hl {
  background: var(--orange);
  color: #FFF;
}

.diff-table td.hl {
  background: var(--orange-subtle);
  color: var(--orange);
  font-weight: 600;
}

.diff-table tbody tr:last-child td {
  border-bottom: none;
}

.diff-check {
  color: var(--orange);
  font-weight: 700;
}

.diff-x {
  color: var(--fg-muted);
  opacity: 0.4;
}


/* ---------- NICHES ---------- */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.niche-card {
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--dur) var(--ease), background-color var(--dur-slow) var(--ease);
}

.niche-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.niche-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.niche-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--fg-muted);
  stroke-width: 1.5;
  fill: none;
  transition: stroke var(--dur) var(--ease);
}

.niche-card:hover .niche-icon svg {
  stroke: var(--orange);
}

.niche-card h4 {
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.niche-card p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}


/* ---------- STATS ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--theme-transition);
}

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

.stat-number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}


/* ---------- CTA FINAL ---------- */
#cta-final {
  padding: var(--section-py) 0;
  text-align: center;
}

.cta-box {
  max-width: 680px;
  margin: 0 auto;
}

.cta-box h2 {
  margin-bottom: 14px;
}

.cta-box>p {
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-checks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.cta-check {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
}


/* ---------- FAQ ---------- */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--theme-transition);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}

.faq-q:hover {
  color: var(--orange);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--fg-muted);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}


/* ---------- FOOTER ---------- */
#footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--border);
  transition: var(--theme-transition);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: var(--fg-muted);
  stroke-width: 1.5;
  fill: none;
}

.footer-social a:hover {
  border-color: var(--orange);
  background: var(--orange-subtle);
}

.footer-social a:hover svg {
  stroke: var(--orange);
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-secondary);
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-bottom a {
  color: var(--fg-muted);
  transition: color var(--dur) var(--ease);
}

.footer-bottom a:hover {
  color: var(--orange);
}


/* ---------- WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: transform var(--dur) var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: #FFF;
}


/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 {
  transition-delay: 0.08s;
}

.fade-up-d2 {
  transition-delay: 0.16s;
}

.fade-up-d3 {
  transition-delay: 0.24s;
}

.fade-up-d4 {
  transition-delay: 0.32s;
}

.fade-up-d5 {
  transition-delay: 0.4s;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {

  .nav-links,
  .header-actions .btn-header {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .problems-grid,
  .pillars-row,
  .method-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founders-editorial {
    flex-wrap: wrap;
  }

  .founder-block {
    flex: 1 1 calc(50% - 1px);
    min-width: 280px;
  }

  .founder-block-divider:last-of-type {
    display: none;
  }

  .founder-block:last-child {
    flex: 1 1 100%;
    max-width: 50%;
    margin: 0 auto;
  }

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-metrics {
    flex-wrap: wrap;
  }

  .proof-metric {
    flex: 0 0 calc(50% - 1px);
    padding: 20px 16px;
  }

  .proof-divider:nth-child(2),
  .proof-divider:nth-child(6) {
    display: block;
  }

  .proof-divider:nth-child(4) {
    width: 100%;
    height: 1px;
    min-height: auto;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {

  .problems-grid,
  .pillars-row,
  .method-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .founders-editorial {
    flex-direction: column;
  }

  .founder-block {
    padding: 24px 16px;
  }

  .founder-block-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  .founder-block:last-child {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-metrics {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .proof-metric {
    flex: none;
    width: 100%;
    padding: 20px 0;
  }

  .proof-divider {
    width: 60%;
    height: 1px;
    min-height: auto;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .shiny-cta,
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    justify-content: center;
    width: 100%;
    min-width: unset;
  }

  .shiny-cta {
    min-width: unset;
    width: 100%;
    height: 52px;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-proof {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-proof span {
    font-size: 0.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    justify-content: center;
    width: 100%;
  }

  .cta-checks {
    flex-direction: column;
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .energy-flow,
  .energy-hub,
  .energy-text {
    display: none;
  }

  #hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 4px;
  }

  h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-sub {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  h2 {
    font-size: clamp(1.375rem, 5vw, 1.875rem);
  }

  /* Método T3 dark content — scrollable on mobile */
  .metodo-dark-content {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
  }

  .metodo-dark-content .container {
    padding-top: 16px;
  }

  .metodo-dark-content .section-header {
    margin-bottom: 24px;
  }

  .metodo-dark-content .section-header h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .metodo-dark-content .section-header p {
    font-size: 0.875rem;
  }

  .method-grid {
    gap: 12px;
  }

  .metodo-dark-content .card {
    padding: 20px 16px;
  }

  /* Differentials table — horizontal scroll with visual cue */
  .diff-wrapper {
    position: relative;
  }

  .diff-wrapper::after {
    content: '→';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--orange);
    opacity: 0.5;
    pointer-events: none;
    animation: scrollHint 1.5s ease-in-out infinite;
  }

  @keyframes scrollHint {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.5; }
    50% { transform: translateY(-50%) translateX(4px); opacity: 1; }
  }

  .diff-table th,
  .diff-table td {
    padding: 10px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }

  .carousel-arrow {
    display: none;
  }

  .testimonial-carousel {
    gap: 0;
  }

  /* Proof card padding */
  .proof-card {
    padding: 32px 20px;
  }

  .proof-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .proof-context {
    font-size: 0.8125rem;
  }

  /* Founders adjustments */
  .founders-header h2 {
    font-size: clamp(1.375rem, 5vw, 1.875rem);
  }

  .founders-header-desc {
    font-size: 0.9375rem;
  }

  .founder-name {
    font-size: 1.1875rem;
  }

  /* CTA box */
  .cta-box h2 {
    font-size: clamp(1.375rem, 5vw, 1.875rem);
  }

  .cta-box > p {
    font-size: 0.9375rem;
  }

  /* Pillar number */
  .pillar-num {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .niches-grid {
    grid-template-columns: 1fr;
  }

  #header {
    padding: 10px 14px;
  }

  .header-inner {
    padding: 6px 6px 6px 14px;
  }

  h1 {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }

  h2 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }

  .hero-sub {
    font-size: 0.875rem;
  }

  #hero {
    padding: 110px 0 50px;
  }

  .shiny-cta {
    height: 48px;
    font-size: 0.8125rem;
    padding: 0.75rem 1.25rem;
  }

  .btn-outline {
    padding: 12px 20px;
    font-size: 0.8125rem;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 0.8125rem;
  }

  .card {
    padding: 22px 18px;
  }

  .founder-num {
    font-size: 2.25rem;
  }

  .metodo-zoom-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  /* Diff table — smaller cells */
  .diff-table th,
  .diff-table td {
    padding: 8px 10px;
    font-size: 0.6875rem;
  }

  .diff-wrapper::after {
    display: none;
  }

  /* Section padding reduce */
  .section {
    padding: clamp(50px, 8vw, 80px) 0;
  }

  .marquee-wrapper .stripe .item {
    font-size: 0.6875rem;
    padding: 0 12px;
  }
}

/* Scroll Reveal Blur */
.fade-up,
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  will-change: opacity, transform, filter;
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible,
.reveal.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.fade-up-d1,
.delay-100 {
  transition-delay: 0.1s;
}

.fade-up-d2,
.delay-200 {
  transition-delay: 0.2s;
}

.fade-up-d3,
.delay-300 {
  transition-delay: 0.3s;
}

.fade-up-d4,
.delay-400 {
  transition-delay: 0.4s;
}

/* Aura Button - Premium */
.aura-btn {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  height: 56px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 9999px;
  position: relative;
  transition: all 0.3s ease;
  mask-image: -webkit-radial-gradient(white, black);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  text-decoration: none;
}

.aura-btn:hover {
  transform: scale(1.03);
}

.aura-outer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aura-inner {
  position: absolute;
  inset: -200%;
  width: 400%;
  height: 400%;
  animation: rotate-gradient var(--speed, 4s) linear infinite;
}

@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.aura-gradient {
  position: absolute;
  inset: 0;
  background: conic-gradient(from calc(270deg - (var(--spread) * 0.5)), transparent 0, var(--shimmer-color) var(--spread), transparent var(--spread));
}

.shimmer-onda {
  background: linear-gradient(10deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: overlay;
  width: 80px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -20%;
  transform: skew(-25deg);
  pointer-events: none;
  animation: shinery 4s infinite ease-in-out;
  z-index: 5;
}

@keyframes shinery {

  0%,
  100% {
    left: -20%;
    opacity: 0;
  }

  20% {
    opacity: 0.4;
  }

  48% {
    left: 120%;
    opacity: 0.4;
  }

  51% {
    opacity: 0;
  }
}

.border-beam {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.border-beam-gradient {
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  animation: borderBeamRotation 4s infinite linear;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes borderBeamRotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.aura-base {
  position: absolute;
  inset: 1.5px;
  background: #0a0b14;
  border-radius: 9999px;
  z-index: 1;
}

[data-theme="light"] .aura-base {
  background: #ffffff;
}

.fundo-revelador {
  position: absolute;
  left: 5px;
  width: 0%;
  height: calc(100% - 10px);
  background: #ffffff;
  border-radius: 100px;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 6;
  opacity: 0;
}

[data-theme="light"] .fundo-revelador {
  background: #f0f0f0;
}

.aura-btn:hover .fundo-revelador {
  width: calc(100% - 10px);
  opacity: 1;
}

.aura-content {
  z-index: 10;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 1.25rem;
  align-items: center;
  position: relative;
  border-radius: 9999px;
}

.wrapper-avatar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 20;
}

.aura-btn:hover .wrapper-avatar {
  transform: translateX(110px);
}

.avatar-ring {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  background: linear-gradient(to bottom right, #404040, #171717, #000);
}

[data-theme="light"] .avatar-ring {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to bottom right, #f5f5f5, #e5e5e5, #d4d4d4);
}

.aura-btn:hover .avatar-ring {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .aura-btn:hover .avatar-ring {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.8);
}

.avatar-gradient {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
}

[data-theme="light"] .avatar-gradient {
  background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.1), transparent);
}

.icon-wand {
  opacity: 0;
  position: absolute;
  right: -2rem;
  transition: opacity 0.5s;
}

[data-theme="light"] .icon-wand {
  color: #171717;
}

[data-theme="dark"] .icon-wand {
  color: #fff;
}

.aura-btn:hover .icon-wand {
  opacity: 1;
}

.aura-texts {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.texto-principal {
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

[data-theme="light"] .texto-principal {
  color: #000000;
}

.aura-btn:hover .texto-principal {
  opacity: 0;
  transform: translateX(-40px);
}

.texto-hover {
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(30px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  color: #000000;
  font-weight: 600;
  z-index: 10;
  white-space: nowrap;
}

[data-theme="light"] .texto-hover,
[data-theme="dark"] .texto-hover {
  color: #000000;
}

.aura-btn:hover .texto-hover {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(-15px);
}

/* Logos Light and Dark */
.logo-light,
.logo-dark {
  display: none;
}

[data-theme="light"] .logo-light {
  display: block;
}

[data-theme="dark"] .logo-dark {
  display: block;
}