/* =============================================
   DIGI&TAL SOLUÇÕES CRIATIVAS
   Design System — Dark · Magnético · Humano
   ============================================= */

/* ── 1. TOKENS ──────────────────────────────── */
:root {
  /* Cores */
  --bg:           #080D14;
  --surface:      #0D1B2A;
  --elevated:     #112236;
  --border:       #1E3048;
  --brand:        #F5A623;
  --brand-glow:   #FF8C00;
  --brand-amber:  #FFB84D;
  --silver:       #C8D6E5;
  --silver-muted: #8899AA;
  --text:         #F0F4F8;
  --success:      #2DD4A0;
  --info:         #4AA8FF;

  /* Gradientes */
  --grad-brand: linear-gradient(135deg, #F5A623 0%, #FF8C00 50%, #FFB84D 100%);

  /* Tipografia */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Escalas */
  --text-hero:   clamp(3rem, 8vw, 6rem);
  --text-h1:     clamp(2rem, 5vw, 3.5rem);
  --text-h2:     clamp(1.5rem, 3vw, 2.25rem);
  --text-h3:     1.5rem;
  --text-large:  1.125rem;
  --text-base:   1rem;
  --text-sm:     0.875rem;
  --text-xs:     0.75rem;

  /* Raios */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Sombras */
  --shadow-card:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:       0 0 30px rgba(245,166,35,0.18);
  --shadow-glow-heavy: 0 0 60px rgba(245,166,35,0.4);

  /* Transições */
  --t-fast:  0.2s ease;
  --t-base:  0.35s ease;
  --t-slow:  0.6s ease;

  /* Layout */
  --container:  1200px;
  --container-n: 720px;
}

/* ── 1b. COMETS CANVAS ──────────────────────── */
#comets-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* ── 1c. LIGHTNING CANVAS ───────────────────── */
#lightning-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}
@media (max-width: 768px) { #lightning-canvas { display: none; } }
@media (prefers-reduced-motion: reduce) { #lightning-canvas { display: none; } }

/* ── 1d. SCROLL REVEAL GLOBAL ───────────────── */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}
[data-reveal="fade-up"]    { transform: translateY(40px); }
[data-reveal="fade-down"]  { transform: translateY(-40px); }
[data-reveal="fade-right"] { transform: translateX(-30px); }
[data-reveal="fade-left"]  { transform: translateX(30px); }
[data-reveal="fade-scale"] { transform: scale(0.92); }
[data-reveal="expand-width"] {
  transform: scaleX(0);
  transform-origin: left center;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="expand-width"].revealed {
  opacity: 1;
  transform: scaleX(1);
  transition:
    opacity 0.4s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

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

html {
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* Foco visível para navegação por teclado */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Reduz animações para quem prefere */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 3. UTILITÁRIOS ─────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--container-n);
  margin: 0 auto;
  padding: 0 24px;
}
.font-mono { font-family: var(--font-mono); }
.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Skip link (acessibilidade por teclado) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--brand);
  color: #080D14;
  padding: 8px 20px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: var(--text-sm);
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus-visible {
  top: 16px;
  outline: none;
}

/* ── 4. COMPONENTES GLOBAIS ─────────────────── */

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.28);
  color: var(--brand);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
}

/* Divisória laranja */
.section-divider {
  width: 56px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 2px;
  margin: 14px 0 28px;
}

/* Botão primário */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-brand);
  color: #080D14;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 4px 24px rgba(245,166,35,0.38);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  animation: glow-pulse 2.8s ease-in-out infinite;
}
/* Shimmer sweep no hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 45%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.26), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245,166,35,0.62);
}
.btn-primary:hover::after {
  left: 130%;
}
.btn-primary:active {
  transform: translateY(0) scale(0.96);
  transition: transform 0.1s ease;
}
.btn-primary.btn-sm {
  padding: 10px 22px;
  font-size: var(--text-sm);
}
.btn-primary.btn-xl {
  padding: 20px 48px;
  font-size: 1.05rem;
}

/* Botão outline */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  padding: 14px 34px;
  border-radius: var(--r-sm);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
/* Fill da esquerda para direita */
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,166,35,0.1);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s ease;
  border-radius: inherit;
}
.btn-secondary:hover {
  box-shadow: 0 0 22px rgba(245,166,35,0.2);
}
.btn-secondary:hover::before {
  transform: scaleX(1);
}
.btn-secondary:active {
  transform: scale(0.97);
  transition: transform 0.1s ease;
}

/* Botão ghost */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--silver);
  padding: 12px 0;
  border: none;
  font-weight: 500;
  font-size: var(--text-base);
  transition: color var(--t-fast), gap var(--t-fast);
}
.btn-ghost:hover { color: var(--brand); gap: 12px; }
.btn-ghost svg { transition: transform var(--t-fast); }
.btn-ghost:hover svg { transform: translateX(5px); }
.btn-ghost:active svg { transform: translateX(8px); }

/* Card de serviço */
.card-service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-service::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--t-base);
}
.card-service:hover {
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow);
  will-change: transform;
}
.card-service:hover::before { opacity: 1; }

.card-service--destaque {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(160deg, #0D1B2A 0%, #112236 100%);
}
.card-destaque-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--grad-brand);
  color: #080D14;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
}
.card-icon {
  color: var(--brand);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,166,35,0.08);
  border-radius: var(--r-md);
  border: 1px solid rgba(245,166,35,0.16);
}
.card-tag {
  font-size: var(--text-xs);
  color: var(--silver-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.card-title {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.card-desc {
  font-size: var(--text-base);
  color: var(--silver-muted);
  line-height: 1.7;
  flex: 1;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--silver-muted);
}
.card-features li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── 5. ANIMAÇÕES ───────────────────────────── */
@keyframes float-pixel {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50%      { transform: translateY(-22px) rotate(45deg); opacity: 1; }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(245,166,35,0.38); }
  50%      { box-shadow: 0 4px 48px rgba(245,166,35,0.75); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scan-line {
  0%   { transform: translateY(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(400px); opacity: 0; }
}
@keyframes fab-pulse {
  0%   { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  70%  { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes word-in {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ripple-expand {
  from { transform: scale(0); opacity: 1; }
  to   { transform: scale(1); opacity: 0; }
}

/* ── 6. LOADER (minimal) ────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  animation: fadeInUp 0s ease 0.8s forwards;
  opacity: 1;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-brand img { opacity: 0.9; }
.loader-text-fallback {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--silver);
}
.loader-text-fallback span { color: var(--brand); }

/* ── 7. HEADER ──────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  background: rgba(8,13,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.site-header.hidden-header {
  transform: translateY(-100%);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  flex-shrink: 0;
  display: flex; align-items: center;
}
.logo-text-fallback {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--silver);
}
.logo-text-fallback span { color: var(--brand); }
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--silver-muted);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--brand);
  transition: width var(--t-base);
}
.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--t-base);
}

/* ── 8. HERO ─────────────────────────────────── */
.hero-standalone {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 72px;
  background: radial-gradient(ellipse at 20% 55%, #182535 0%, var(--bg) 60%);
  overflow: hidden;
  z-index: 1;
}

.pixel-particle {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 2px;
  animation: float-pixel 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* 2-column grid */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Text side ── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--brand);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: glow-pulse 2s ease-in-out infinite;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.25s forwards;
}
.hero-heading em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--silver-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.55s forwards;
}

.hero-credenciais {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.7s forwards;
}
.hero-credenciais span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--silver-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-credenciais svg { color: var(--brand); }
.hero-credenciais .sep { color: var(--border); }

/* ── Photo side ── */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.3s forwards;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 60px rgba(245,166,35,0.08);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.04) brightness(0.96);
  transition: filter var(--t-slow);
}
.hero-photo-wrap:hover img {
  filter: contrast(1.08) brightness(1.0);
}

.hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: rgba(8,13,20,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-photo-badge strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--silver);
  font-weight: 700;
}
.hero-photo-badge span {
  font-size: var(--text-xs);
  color: var(--brand);
  letter-spacing: 0.06em;
}

.hero-photo-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 1.1s forwards;
}
.hero-scroll-indicator span {
  font-size: var(--text-xs);
  color: var(--silver-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow svg {
  color: var(--brand);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

/* ── Metrics strip ── */
.section-metrics {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 48px;
  text-align: center;
}
.metric-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-mono);
}
.metric-num {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.metric-suf {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--brand);
  line-height: 1;
}
.metric-label {
  font-size: var(--text-xs);
  color: var(--silver-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.metric-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── 9. SEÇÕES ESTÁTICAS (continuação) ──────── */

.section-label {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  color: var(--brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-heading em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-body {
  font-size: var(--text-large);
  color: var(--silver-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.scroll-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.scroll-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-base);
  color: var(--silver-muted);
  line-height: 1.5;
}
.scroll-list li svg { color: #ff6b6b; flex-shrink: 0; margin-top: 3px; }

/* ── 10. SEÇÕES ESTÁTICAS ───────────────────── */

/* Header de seção padrão */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: var(--text-large);
  color: var(--silver-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Credibilidade */
.section-credibilidade {
  position: relative;
  z-index: 10;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.cred-label {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--silver-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.cred-logos {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
}
.cred-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  color: var(--silver-muted);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-align: center;
  transition: color var(--t-fast);
}
.cred-item svg { color: var(--brand); opacity: 0.7; flex-shrink: 0; }
.cred-item:hover { color: var(--silver); }
.cred-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* Serviços */
.section-servicos {
  position: relative;
  z-index: 10;
  background: var(--bg);
  padding: 100px 0;
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.servicos-grid .card-service:nth-child(1),
.servicos-grid .card-service:nth-child(2),
.servicos-grid .card-service:nth-child(3) {
  grid-column: span 2;
}
.servicos-grid .card-service:nth-child(4),
.servicos-grid .card-service:nth-child(5) {
  grid-column: span 3;
}

/* Processo */
.section-processo {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  padding: 100px 0;
}
.processo-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 24px;
  background: rgba(245,166,35,0.03);
  border: 1px solid rgba(245,166,35,0.09);
  border-radius: 20px;
  transition: border-color 0.7s ease, box-shadow 0.7s ease;
}
.step.is-visible {
  border-color: rgba(245,166,35,0.24);
  box-shadow: 0 8px 48px rgba(245,166,35,0.08), inset 0 1px 0 rgba(245,166,35,0.1);
}
.step-num {
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #F5A623 20%, rgba(245,166,35,0.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-icon {
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,166,35,0.09);
  border: 1px solid rgba(245,166,35,0.28);
  border-radius: var(--r-xl);
  color: var(--brand);
  box-shadow: 0 0 24px rgba(245,166,35,0.1);
}
.step-title {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--text);
}
.step-desc {
  font-size: var(--text-base);
  color: var(--silver-muted);
  line-height: 1.7;
}
.step-arrow {
  padding-top: 80px;
  color: rgba(245,166,35,0.3);
  align-self: start;
}

/* ── PROCESSO — novos elementos ─────────────── */
.highlight-orange {
  color: var(--brand);
}

.process-time-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.38);
  color: #F5A623;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 4px;
  box-shadow: 0 0 14px rgba(245,166,35,0.1);
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  align-self: start;
  flex: 1;
  max-width: 120px;
}

.process-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #F5A623, rgba(245,166,35,0.3));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-connector.is-drawn .process-line {
  transform: scaleX(1);
}

.process-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: line-shimmer 2.5s ease-in-out infinite;
}

@keyframes line-shimmer {
  0%   { left: -100%; }
  100% { left: 100%; }
}

.process-pulse-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: #F5A623;
  border-radius: 50%;
  margin-left: -5px;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.process-connector.is-drawn .process-pulse-dot {
  opacity: 1;
  animation: pulse-dot 2s ease-in-out infinite;
  transition: opacity 0.3s ease 0.85s;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245,166,35,0.2); }
  50%       { box-shadow: 0 0 0 8px rgba(245,166,35,0.05); }
}

/* Animação de scroll — estado inicial */
[data-animate-process] .process-number {
  opacity: 0;
  transform: translateY(-32px) scale(0.75);
  transition: none;
}
[data-animate-process] .process-icon {
  opacity: 0;
  transform: scale(0.4) rotate(-20deg);
  transition: none;
}
[data-animate-process] .process-time-badge,
[data-animate-process] .step-title,
[data-animate-process] .step-desc {
  opacity: 0;
  transform: translateY(22px);
  transition: none;
}

/* Estado visível */
[data-animate-process].is-visible .process-number {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.5s ease, transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-animate-process].is-visible .process-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition: opacity 0.4s ease 0.18s, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s;
}
[data-animate-process].is-visible .process-time-badge {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease 0.32s, transform 0.45s ease 0.32s;
}
[data-animate-process].is-visible .step-title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease 0.42s, transform 0.45s ease 0.42s;
}
[data-animate-process].is-visible .step-desc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease 0.52s, transform 0.45s ease 0.52s;
}

/* Frase âncora */
.process-anchor {
  text-align: center;
  margin-top: 48px;
  padding: 24px 40px;
  border-top: 1px solid rgba(245,166,35,0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.process-anchor.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.process-anchor p {
  color: #8899AA;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.process-anchor strong {
  color: #F0F4F8;
  font-weight: 600;
}

/* Fundadores */
.section-fundadores {
  position: relative;
  z-index: 10;
  background: var(--bg);
  padding: 100px 0;
}
.fundadores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.card-founder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  display: grid;
  grid-template-columns: 300px 1fr;
}
.card-founder:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  will-change: transform;
}

/* Foto simples (Valério) */
.founder-photo {
  overflow: hidden;
  position: relative;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) contrast(1.05);
  transition: filter var(--t-base);
}
.card-founder:hover .founder-photo img {
  filter: grayscale(0%) contrast(1.1);
}

/* Mosaico de fotos (Vandré) */
.founder-photo--mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--border);
}
.mosaic-main {
  grid-row: 1 / 3;
  overflow: hidden;
}
.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(1.05);
  transition: filter var(--t-slow), transform var(--t-slow);
}
.mosaic-thumb {
  overflow: hidden;
}
.mosaic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(30%) contrast(1.02);
  transition: filter var(--t-slow), transform var(--t-slow);
}
.card-founder:hover .mosaic-main img,
.card-founder:hover .mosaic-thumb img {
  filter: grayscale(0%) contrast(1.08);
  transform: scale(1.03);
}
.founder-info {
  padding: 36px 32px;
  border-left: 1px solid rgba(245,166,35,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 5px 12px;
  border-radius: var(--r-full);
  width: fit-content;
}
.founder-name {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
}
.founder-role {
  font-size: var(--text-sm);
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.founder-bio {
  font-size: var(--text-base);
  color: var(--silver-muted);
  line-height: 1.75;
  flex: 1;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.founder-tags span {
  font-size: 0.72rem;
  color: var(--silver-muted);
  background: var(--elevated);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}



/* FAQ */
.section-faq {
  position: relative;
  z-index: 10;
  background: var(--bg);
  padding: 100px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: var(--text-large);
  color: var(--silver);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--brand);
  line-height: 1;
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 24px;
  overflow: hidden;
}
.faq-a p {
  font-size: var(--text-base);
  color: var(--silver-muted);
  line-height: 1.8;
}

/* CTA Final */
.section-cta-final {
  position: relative;
  z-index: 10;
  background: var(--bg);
  padding: 80px 0 100px;
  overflow: hidden;
}
.cta-final-inner {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-final-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.scan-effect {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.5), transparent);
  animation: scan-line 4s linear infinite;
}
.cta-final-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 20px 0 24px;
}
.cta-final-sub {
  font-size: var(--text-large);
  color: var(--silver-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-note {
  font-size: var(--text-xs);
  color: var(--silver-muted);
  letter-spacing: 0.06em;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tagline {
  font-size: var(--text-sm);
  color: var(--silver-muted);
  line-height: 1.7;
}
.footer-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--silver);
}
.footer-logo-fallback span { color: var(--brand); }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--silver-muted);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.footer-social a:hover {
  color: var(--brand);
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.06);
}
.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--silver-muted);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--brand); }
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-col li:not(:has(a)) {
  font-size: var(--text-sm);
  color: var(--silver-muted);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--silver-muted);
  letter-spacing: 0.04em;
}
.footer-bottom strong { color: var(--silver); }

.footer-brand-banner {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid rgba(245,166,35,0.15);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 20px rgba(245,166,35,0.08);
}

/* ── WHATSAPP FAB ───────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  will-change: transform;
  animation: fab-pulse 2.4s ease-out infinite;
  transition: transform 0.25s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  animation-play-state: paused;
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65);
}
.whatsapp-fab:active {
  transform: translateY(0) scale(0.96);
  transition: transform 0.1s ease;
}
.whatsapp-fab svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .whatsapp-fab { bottom: 20px; right: 16px; padding: 13px 16px 13px 14px; }
  .whatsapp-fab-label { display: none; }
}

/* Scroll reveal (estático) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* ── 11. RESPONSIVIDADE ─────────────────────── */
@media (max-width: 1100px) {
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .card-founder { grid-template-columns: 240px 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: center; }

  .fundadores-grid { grid-template-columns: 1fr; }
  .card-founder { grid-template-columns: 1fr; }
  .founder-photo--mosaic { grid-template-columns: 1fr 1fr; height: 280px; }
  .mosaic-main { grid-row: 1 / 2; grid-column: 1 / 2; }
  .founder-photo { height: 280px; }
  .founder-info { border-left: none; border-top: 1px solid rgba(245,166,35,0.12); }

  .processo-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .process-connector { display: none; }

  .metrics-row { gap: 0; }
  .metric-item { padding: 20px 28px; }
  .metric-sep { height: 40px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(8,13,20,0.97);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 499;
  }
  .header-nav.mobile-open a { font-size: 1.3rem; }
  .menu-toggle { display: flex; }
  .header-inner .btn-primary { display: none; }

  .hero-standalone { padding: 88px 0 60px; }
  .hero-heading { font-size: clamp(1.9rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cred-sep { display: none; }
  .cred-logos { grid-template-columns: 1fr; gap: 16px; }

  .metrics-row { flex-wrap: wrap; }
  .metric-item { width: 50%; padding: 20px 16px; }
  .metric-sep { display: none; }

  .servicos-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  #video-scroll { height: 200vh; }

  .cta-final-inner { padding: 48px 28px; }
  .cta-final-title { font-size: var(--text-h2); }
}

@media (max-width: 480px) {
  .hero-credenciais { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-credenciais .sep { display: none; }
  .cred-logos { grid-template-columns: 1fr; gap: 12px; }
  .cred-sep { display: none; }
  .cred-item { padding: 0 12px; font-size: var(--text-xs); justify-content: flex-start; }
  .metric-item { width: 100%; }
}

/* ============================================
   CURSOR INVISÍVEL — substituído pelos raios
   ============================================ */
*,
*::before,
*::after {
  cursor: none !important;
}
a,
button,
[role="button"],
input,
textarea,
select,
label,
.btn-primary,
.btn-secondary,
.btn-ghost,
.faq-item,
.card-service {
  cursor: none !important;
}
@media (hover: none) {
  *, *::before, *::after { cursor: auto !important; }
}

/* ============================================
   FLIP CARD — Drag 180°
   ============================================ */
.flip-card {
  perspective: 1200px;
  cursor: none;
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: visible;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: none;
  border-radius: 16px;
}
.flip-card-inner.snapping {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.flip-card-inner.spinning-360 {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
}
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}
.flip-drag-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 13, 20, 0.75);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  pointer-events: none;
  transition: opacity 0.4s ease;
  white-space: nowrap;
}
.flip-drag-hint span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #F5A623;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flip-card.has-flipped .flip-drag-hint { opacity: 0; }

.flip-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #0D1B2A, #112236);
  border: 1px solid rgba(245, 166, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 28px;
}
.flip-card-inner.flipped .flip-card-back {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.1);
}
.flip-back-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.flip-back-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #F5A623;
  text-transform: uppercase;
}
.flip-back-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #F0F4F8;
  margin: 0;
  line-height: 1.2;
}
.flip-back-role {
  font-size: 0.8rem;
  color: #F5A623;
  font-weight: 500;
  margin: 0;
}
.flip-back-bio {
  font-size: 0.875rem;
  color: #8899AA;
  line-height: 1.65;
  margin: 0;
}
.flip-back-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.flip-card-back--aesthetic {
  background: linear-gradient(160deg, #080D14 0%, #0D1B2A 50%, #112236 100%);
  border: 1px solid rgba(245, 166, 35, 0.4);
  box-shadow: inset 0 0 60px rgba(245, 166, 35, 0.06), 0 0 40px rgba(245, 166, 35, 0.08);
}
.flip-card-back--aesthetic::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(245, 166, 35, 0.12);
  border-radius: 8px;
}

.flip-back-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #C8D6E5;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .flip-card { cursor: pointer; }
  .flip-drag-hint span::before { content: 'toque para virar'; }
  .flip-drag-hint span { font-size: 0.6rem; }
}

/* ============================================
   CURSOR CUSTOMIZADO — ponto laranja pequeno
   ============================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #F5A623;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: difference;
}
.custom-cursor.hovering {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .custom-cursor { display: none; }
}
