/* ==============================================
   LUCASZÉ DESIGN — v3.0
   Style: Apple Minimalist + Glassmorphism + Nodes
   ============================================== */

/* ---- CUSTOM FONTS ---- */
@font-face {
  font-family: 'TT Hoves Pro';
  src: url('assets/fonts/tthovespro_black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('assets/fonts/tthovespro_bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('assets/fonts/tthovespro_medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('assets/fonts/tthovespro_regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'TT Hoves Pro';
  src: url('assets/fonts/tthovespro_light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

/* ---- TOKENS ---- */
:root {
  --bg: #050505;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  --primary-orange: #FC4F00;
  --primary-glow: rgba(252, 79, 0, 0.12);
  --white: #FFFFFF;
  --gray-1: #e0e0e0;
  --gray-2: #777777;
  --gray-3: #2a2a2a;
  --radius: 20px;
  --radius-sm: 12px;
  --t: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'TT Hoves Pro', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bebas Neue', 'TT Hoves Pro', sans-serif;
  --max-w: 1200px;
  /* Expandido para 1200px para melhor balanceamento */
}

/* ==================== MAGNETIC BUTTONS (V7 GLOBAL) ==================== */
[data-magnetic] {
  display: inline-block;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    filter 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

[data-magnetic]:hover {
  filter: brightness(1.2);
}

/* ====================================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-orange);
  border-radius: 2px;
}

/* ---- AMBIENT BODY ORBS ---- */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 600px;
  height: 600px;
  background: rgba(252, 79, 0, 0.06);
  /* Restaurado v3 Desktop */
  top: -250px;
  right: -250px;
  /* Mais para o canto */
}

body::after {
  width: 450px;
  height: 450px;
  background: rgba(252, 79, 0, 0.04);
  /* Restaurado v3 Desktop */
  bottom: 0%;
  left: -200px;
  /* Mais para o canto */
}

.highlight {
  color: var(--primary-orange);
  animation: neonFlicker 6s infinite;
  display: inline-block;
}

/* ---- SECTION COMMON ---- */
section {
  padding: 70px 24px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 64px;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  /* 10% maior */
  font-weight: 400;
  line-height: 0.95;
  /* Textos mais juntos */
  letter-spacing: -0.01em;
  /* Textos mais juntos */
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-2);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="left"] {
  transform: translateX(-36px);
  opacity: 0;
}

[data-reveal="right"] {
  transform: translateX(36px);
  opacity: 0;
}

[data-reveal="scale"] {
  transform: scale(0.93);
  opacity: 0;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

#bgParticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#universe-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ==============================================
   BUTTONS
   ============================================== */

/* Glass CTA — orange light, fills on hover */
.btn-cta-glass {
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(252, 79, 0, 0.6), rgba(252, 79, 0, 0.15));
  transition: var(--t);
  cursor: pointer;
  border: none;
  text-decoration: none;
  overflow: hidden;
}

.btn-cta-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-orange), #E85500);
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: inherit;
}

.btn-cta-glass:hover::before {
  opacity: 1;
}

.btn-cta-glass:hover {
  transform: scale(1.05);
  box-shadow: 0 0 48px rgba(252, 79, 0, 0.55), 0 0 8px rgba(252, 79, 0, 0.3);
}

.btn-cta-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: rgba(10, 5, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 28px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: background 0.35s;
  white-space: nowrap;
}

.btn-cta-glass:hover .btn-cta-inner {
  background: transparent;
}

/* Ghost glass button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
}

.btn-ghost-sm {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}

.btn-ghost-sm:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ==============================================
   NAV — sticky, background blur on scroll
   ============================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--t);
  display: flex;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  /* Ajustado para bater com o padding das sections */
}

#navbar.scrolled .nav-inner {
  padding: 14px 48px;
}

#navbar.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-logo img {
  height: 21px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  padding: 7px 14px;
  border-radius: 20px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

/* Lang Switcher */
.desktop-only {
  display: flex !important;
}

.mobile-only {
  display: none !important;
}

.nav-lang-item.desktop-only {
  margin-right: 15px;
}

.header-lang.mobile-only {
  margin-left: auto;
  margin-right: 15px;
}

.nav-lang-switcher {
  display: flex;
  gap: 6px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-2);
  font-size: 9px;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font);
  padding: 0;
}

.lang-btn.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
  box-shadow: 0 0 10px rgba(252, 79, 0, 0.3);
}

.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-cta {
  background: rgba(252, 79, 0, 0.15) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: rgba(252, 79, 0, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 0 20px rgba(252, 79, 0, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: var(--t);
}

#hero {
  min-height: 100vh;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Trocado de flex-start para center */
  text-align: center;
  padding: 80px 20px 60px;
  /* Padding ajustado para centralização */
  position: relative;
  gap: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(252, 79, 0, 0.12);
  top: -20%;
  right: -15%;
  animation: orbFloat 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(252, 79, 0, 0.08);
  bottom: -10%;
  left: -15%;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(252, 79, 0, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 7s ease-in-out infinite 3s;
  opacity: 0;
}

/* Oculto no centro Desktop */

@keyframes orbFloat {

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

  50% {
    transform: translateY(-24px) scale(1.05);
  }
}

/* Hero particle canvas */
#bgParticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

/* ── Texto gigante de fundo (agora flex-item em vez de absoluto) ── */
.hero-top-text {
  width: 100%;
  text-align: center;
  z-index: 2;
  position: relative;
  margin-top: 0;
  /* Zerado pra não engordar a faixa negra superior */
}

.hero-top-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 12rem);
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.neon-name {
  color: var(--primary-orange);
  animation: neonFlicker 6s infinite;
  display: inline-block;
}

@keyframes neonFlicker {

  0%,
  88%,
  92%,
  96%,
  100% {
    opacity: 1;
    color: var(--primary-orange);
    text-shadow: 0 0 10px rgba(252, 79, 0, 0.6), 0 0 40px rgba(252, 79, 0, 0.3);
  }

  89%,
  91%,
  94%,
  95% {
    opacity: 0.6;
    color: #8c3b00;
    /* Apaga para um tom de luz enferrujada/desligada */
    text-shadow: none;
  }
}

/* ── Mascote 3D (sobrepõe o texto via margin negativa) ── */
.hero-mascot {
  position: relative;
  /* Margem negativa puxa ele para cima do texto "OI, SOU LUCASZÉ" */
  margin-top: clamp(-80px, -11vw, -160px);
  margin-bottom: clamp(-20px, -4vw, -60px);
  width: clamp(140px, 20vw, 260px);
  /* Reduzido ~30% a pedido */
  height: auto;
  z-index: 5;
  /* animation: mascotFloat 5s ease-in-out infinite; -- REPRODUZIDO VIA JS PARA SINCRONIA */
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.03));
}

@keyframes mascotFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  30% {
    transform: translateY(-10px) rotate(-1.5deg);
  }

  70% {
    transform: translateY(-5px) rotate(1.5deg);
  }
}

.mascot-svg {
  width: 100%;
  height: 100%;
}

.mascot-png {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Desktop 3D Eye Parallax */
.mascot-mobile {
  display: none;
}

.mascot-desktop {
  position: relative;
  width: 100%;
  height: auto;
}

.mascot-desktop .eye-layer {
  position: absolute;
  z-index: 1;
}

/* Coordenadas relativas aos olhos (ajustadas via Joystick Localhost) */
.mascot-desktop .eye-globe-l {
  width: 32%;
  height: auto;
  top: 42%;
  left: 17%;
}

.mascot-desktop .pupil-l {
  width: 15%;
  height: auto;
  top: 47.5%;
  left: 24.5%;
  z-index: 2;
  transition: transform 0.1s ease-out;
}

.mascot-desktop .eye-globe-r {
  width: 32%;
  height: auto;
  top: 40%;
  left: 48%;
}

.mascot-desktop .pupil-r {
  width: 15%;
  height: auto;
  top: 47.5%;
  left: 62.5%;
  z-index: 2;
  transition: transform 0.1s ease-out;
}

/* ── Elementos Flutuantes Vetoriais ── */
.hero-float-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(140px, 20vw, 260px);
  /* Mesma largura base do mascote */
  height: 1px;
  /* Apenas âncora central */
  z-index: 4;
  /* Entre o texto e o mascote */
  pointer-events: none;
}

.float-icon {
  position: absolute;
  z-index: 5;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Efeito de mola ao voltar */
  pointer-events: none;
  opacity: 0.5;
  /* Variáveis para o parallax e repulsão via JS */
  --px: 0px;
  --py: 0px;
}

@keyframes floatIcon1 {

  0%,
  100% {
    transform: translate(var(--px), var(--py));
  }

  50% {
    transform: translate(calc(var(--px) + 5px), calc(var(--py) - 15px));
  }
}

@keyframes floatIcon2 {

  0%,
  100% {
    transform: translate(var(--px), var(--py)) rotate(0deg);
  }

  50% {
    transform: translate(var(--px), calc(var(--py) + 12px)) rotate(5deg);
  }
}

@keyframes floatIcon3 {

  0%,
  100% {
    transform: translate(var(--px), var(--py)) scale(1);
  }

  50% {
    transform: translate(var(--px), calc(var(--py) - 8px)) scale(1.1);
  }
}

/* Velocidades e Atrasos Individuais */
.float-icon.target {
  top: 20%;
  left: -260%;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  animation: floatIcon1 7s ease-in-out infinite;
}

.float-icon.pen {
  top: 60%;
  left: -180%;
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  animation: floatIcon2 9s ease-in-out infinite 1s;
}

.float-icon.sparkle {
  top: 95%;
  left: -100%;
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(252, 79, 0, 0.7));
  animation: floatIcon3 6s ease-in-out infinite 0.5s;
}

.float-icon.rocket {
  top: 35%;
  right: -260%;
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(252, 79, 0, 0.7));
  animation: floatIcon2 11s ease-in-out infinite reverse;
}

.float-icon.diamond {
  top: 70%;
  right: -160%;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
  animation: floatIcon1 8s ease-in-out infinite 2s;
}

.float-icon.lightning {
  top: 100%;
  right: -90%;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(252, 79, 0, 0.7));
  animation: floatIcon3 5s ease-in-out infinite alternate;
}

.mascot-desktop .mascot-head {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
}

.mascot-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(252, 79, 0, 0.06), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

/* ── Copy abaixo ── */
.hero-content {
  position: relative;
  z-index: 6;
  max-width: 600px;
  margin-top: 5px;
  margin-bottom: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
  .hero-content {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
  }

  .hero-content.revealed-scroll {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--primary-orange);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero-dash {
  color: rgba(255, 255, 255, 0.4);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-2);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==============================================
   PROCESS — NODES INTERATIVOS
   ============================================== */
#processo {
  max-width: 100%;
  padding: 70px 40px;
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto 100px;
}

.process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  /* 10% maior */
  font-weight: 400;
  line-height: 0.95;
  /* Textos mais juntos */
  letter-spacing: -0.01em;
  /* Textos mais juntos */
  margin-bottom: 16px;
}

.process-header p {
  color: var(--gray-2);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Node grid */
.process-nodes {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  position: relative;
}

.node-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.5s, box-shadow 0.5s, opacity 0.5s, transform 0.5s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.node-card.active {
  border-color: rgba(252, 79, 0, 0.4);
  box-shadow: 0 0 40px rgba(252, 79, 0, 0.1);
}

.node-card.unlocking {
  pointer-events: all;
  opacity: 0.12;
  transform: scale(0.97);
  transition: opacity 0.7s, transform 0.7s;
}

.node-card.active {
  pointer-events: all;
}

.node-card.locked {
  opacity: 0.12;
  transform: scale(0.97);
  pointer-events: none;
}

.node-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-orange);
  margin-bottom: 14px;
}

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

.node-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-orange);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.node-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.node-card p {
  font-size: 0.825rem;
  color: var(--gray-2);
  font-weight: 300;
  line-height: 1.7;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-manifesto {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--primary-orange);
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 15px rgba(252, 79, 0, 0.05);
}

.about-manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(252, 79, 0, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.about-manifesto p {
  font-size: 1.25rem !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  font-style: italic !important;
  margin: 0;
  letter-spacing: -0.01em;
  text-align: left;
}

.about-extra {
  font-size: 1rem;
  color: var(--gray-1);
  margin-bottom: 24px;
}

.node-unlock-hint {
  font-size: 10px;
  color: var(--primary-orange);
  opacity: 0.7;
  margin-top: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.mobile-hint {
  display: none;
}

.node-lock-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(5, 5, 5, 0.4);
  border-radius: inherit;
  transition: opacity 0.5s;
  pointer-events: none;
}

.node-card.unlocked .node-lock-overlay,
.node-card.active .node-lock-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Connectors between nodes */
.node-connector {
  width: 100px;
  height: 60px;
  position: relative;
  overflow: visible;
}

.node-connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-path {
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.energy-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-orange);
  opacity: 0;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}

/* Growth chart */
.growth-chart {
  grid-column: 1 / -1;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
}

.chart-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-orange);
  margin-bottom: 12px;
}

.chart-svg {
  width: 100%;
  height: 80px;
}

.chart-line {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.chart-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.cs {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-2);
  transition: color 0.4s;
}

.cs.active {
  color: var(--primary-orange);
}

/* ==============================================
   PROJETOS
   ============================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 24px;
  justify-content: center;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
}

.project-card:hover {
  border-color: rgba(252, 79, 0, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.project-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.05));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--t);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.875rem;
  color: var(--gray-2);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.project-tags span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: rgba(252, 79, 0, 0.07);
  border: 1px solid rgba(252, 79, 0, 0.18);
  border-radius: 50px;
  color: rgba(252, 79, 0, 0.9);
}

/* ==============================================
   CARROSSÉIS ESTILO INSTAGRAM
   ============================================== */
#carrosseis {
  max-width: 100%;
  padding: 70px 40px;
}

.carousel-showcase {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: start;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-showcase::-webkit-scrollbar {
  display: none;
}

.ig-post-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--t);
  flex: 0 0 380px;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
  touch-action: pan-y;
}

.ig-post-wrapper:hover {
  border-color: rgba(252, 79, 0, 0.18);
}

.ig-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-glass);
}

.ig-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-orange);
  object-fit: contain;
  background: #111;
  padding: 3px;
  flex-shrink: 0;
}

.ig-meta {
  display: flex;
  flex-direction: column;
}

.ig-meta strong {
  font-size: 12px;
  font-weight: 600;
}

.ig-meta small {
  font-size: 10px;
  color: var(--gray-2);
}

/* Carrossel portrait: 1080x1350 = 4:5 */
.ig-slider {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.ig-slider.ig-portrait {
  aspect-ratio: 4 / 5;
}

.ig-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ig-slides img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--t);
}

.ig-arrow:hover {
  background: rgba(252, 79, 0, 0.7);
  border-color: transparent;
}

.ig-prev {
  left: 8px;
}

.ig-next {
  right: 8px;
}

.ig-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 10;
}

.ig-dots span {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: var(--t);
  cursor: pointer;
  display: block;
}

.ig-dots span.active {
  background: white;
  width: 14px;
  border-radius: 3px;
}

.ig-post-footer {
  padding: 10px 14px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: row;
  /* Coração na esquerda */
  justify-content: space-between;
  align-items: center;
}

.ig-actions {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.ig-like-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ig-like-btn svg {
  width: 32px;
  height: 32px;
  transition: color 0.2s, fill 0.2s;
}

.ig-like-btn:hover {
  transform: scale(1.1);
}

.ig-like-btn:active {
  transform: scale(0.9);
}

.ig-like-btn.liked {
  color: var(--primary-orange);
}

.ig-like-btn.liked svg {
  fill: var(--primary-orange);
  stroke: var(--primary-orange);
  animation: heartbeat 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.ig-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-2);
}

/* Corações flutuantes da animação de LIKE */
.flying-heart {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 40px;
  /* Bem maiores agora */
  height: 40px;
  animation: floatUp 1.2s ease-out forwards;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(0.5) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(-300px) scale(1.5) rotate(var(--rot));
    opacity: 0;
  }
}

/* ==============================================
   VÍDEOS VERTICAIS + CONTROLES DE ÁUDIO
   ============================================== */
#videos {
  max-width: 100%;
  padding: 70px 40px;
}

.video-reel-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: auto;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 24px 10px;
  /* Padding lateral */
  z-index: 5;
}

.video-reel-wrapper::-webkit-scrollbar {
  display: none;
}

.video-reel-wrapper:active {
  cursor: grabbing;
}

.video-reel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  padding: 10px 2px 40px;
}

.video-reel-card {
  flex: 0 0 260px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-glass);
  transition: var(--t);
  background: var(--gray-3);
}

.video-reel-card:hover {
  transform: scale(1.03);
  border-color: rgba(252, 79, 0, 0.4);
  box-shadow: 0 0 36px rgba(252, 79, 0, 0.18);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-controls {
  position: absolute;
  bottom: 16px;
  right: 12px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
  z-index: 20;
  opacity: 1;
  /* Sempre Visível */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reel-controls.is-active {
  transform: scale(1.05);
}

.float-icon {
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.ba-card {
  user-select: none;
}

.ba-card img {
  pointer-events: none;
}

.reel-audio-btn {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
  color: #fff;
}

.reel-audio-btn:hover {
  background: rgba(252, 79, 0, 0.7);
  border-color: transparent;
}

.reel-audio-btn svg {
  width: 14px;
  height: 14px;
}

.reel-volume {
  -webkit-appearance: slider-vertical;
  /* Drag Vertical Nativo */
  appearance: slider-vertical;
  accent-color: #121212;
  /* Cor PRETA do volume ativo pra Chrome/Edge/Firefox */
  width: 8px;
  height: 90px;
  border-radius: 4px;
  outline: none;
  cursor: grab;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.reel-controls:hover .reel-volume,
.reel-volume:focus {
  opacity: 1;
  pointer-events: auto;
}

.reel-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-orange);
  cursor: ns-resize;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


.reel-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 12px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.reel-label span {
  color: var(--gray-2);
  font-weight: 300;
  font-size: 10px;
}

.video-scroll-hint {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 14px;
  letter-spacing: 0.08em;
  font-weight: 300;
}

.video-scroll-hint span {
  color: var(--primary-orange);
  opacity: 0.5;
}

/* ==============================================
   SOBRE
   ============================================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-col {
  position: sticky;
  top: 100px;
}

.instagram-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  user-select: none;
  touch-action: pan-y;
}

.about-photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  aspect-ratio: 3/4;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(252, 79, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: auto;
  max-width: max-content;
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  filter: drop-shadow(0 0 5px rgba(252, 79, 0, 0.4));
}

.badge-icon svg {
  width: 22px;
  height: 22px;
}

.about-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.about-badge small {
  font-size: 11px;
  color: var(--gray-2);
  font-weight: 400;
  opacity: 0.8;
}

.about-text-col {
  padding-top: 4px;
}

.about-text-col h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 16px 0 24px;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-1);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text-col p {
  color: var(--gray-2);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 18px;
  line-height: 1.9;
}

blockquote {
  border-left: 2px solid var(--primary-orange);
  padding: 16px 22px;
  margin: 28px 0;
  background: rgba(252, 79, 0, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gray-1);
  font-weight: 300;
}

.about-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.service-tag {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-2);
  transition: var(--t);
}

.service-tag:hover {
  border-color: rgba(252, 79, 0, 0.35);
  color: var(--primary-orange);
}

/* ==============================================
   CONTATO
   ============================================== */
#contato {
  max-width: 100%;
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(252, 79, 0, 0.06), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 14px 0 24px;
  line-height: 1.15;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 14px 0 16px;
  line-height: 1.15;
}

.contact-sub {
  color: var(--gray-2);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.8;
  text-align: center;
}

.contact-sub span {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(160, 160, 160, 0.25);
  /* Cinza sutil */
  border-radius: 12px;
  transition: all 0.4s ease;
  cursor: default;
}

.contact-sub span:hover {
  border-color: var(--primary-orange);
  color: #fff;
  filter: brightness(1.1);
}

.contact-message {
  font-size: 0.85rem;
  /* Menor e mais sutil */
  color: var(--gray-2);
  /* Mais claro */
  font-weight: 300;
  margin: 0 auto 32px;
  line-height: 1.8;
  max-width: 540px;
  padding: 0 20px;
  opacity: 0.6;
  /* Baixa opacidade para zero ruído */
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

/* Botão Primário V5 - Refinado para Efeito Magnético */
.contact-actions .btn-cta-glass.primary {
  background: rgba(252, 79, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(252, 79, 0, 0.3);
  padding: 14px 34px;
  border-radius: 40px;
  min-width: 230px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.3s ease, border-color 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
  will-change: transform;
}

.contact-actions .btn-cta-glass.primary .btn-cta-inner {
  background: transparent;
  padding: 0;
  backdrop-filter: none;
  font-weight: 600;
  pointer-events: none;
  /* Deixa o evento passar para o botão principal */
}

.contact-actions .btn-cta-glass.primary:hover {
  background: rgba(252, 79, 0, 0.3);
  border-color: rgba(252, 79, 0, 0.5);
  filter: brightness(1.2);
  /* +20% Brilho solicitado */
  box-shadow: 0 10px 30px rgba(252, 79, 0, 0.2);
  /* Glow sutil e suave */
}

.contact-actions .btn-ghost.secondary {
  opacity: 0.5;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.contact-actions .btn-ghost.secondary:hover {
  opacity: 0.8;
}

.contact-highlight-box {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 36px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 0 40px rgba(252, 79, 0, 0.04);
}

.contact-highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  opacity: 0.4;
}

.contact-highlight-box p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .contact-highlight-box p {
    font-size: 1.2rem;
  }

  .contact-message {
    font-size: 0.8rem;
  }

  .contact-highlight-box {
    padding: 30px 20px;
    width: calc(100% - 40px);
    margin-top: 30px;
  }
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: rgba(5, 5, 5, 0.9);
  border-top: 1px solid var(--border-glass);
  padding: 36px 48px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 26px;
  object-fit: contain;
  opacity: 0.7;
}

footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

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

/* ==============================================
   MODAL
   ============================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: rgba(12, 12, 12, 0.97);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 28px;
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.modal-close:hover {
  background: rgba(252, 79, 0, 0.8);
  border-color: transparent;
}

.modal-slides-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-slides-wrapper img {
  width: 100%;
  border-radius: 10px;
}

/* ==============================================
   RESPONSIVE & DESKTOP ULTRA-WIDE
   ============================================== */
@media (min-width: 1400px) {
  :root {
    --max-w: 1360px;
  }

  /* Expandido para monitores maiores */
  section {
    padding: 120px 40px;
  }

  #hero {
    padding: 100px 40px;
  }

  .section-header {
    margin-bottom: 90px;
  }
}

@media (max-width: 1024px) {
  .process-nodes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .node-connector {
    display: none;
  }

  .growth-chart {
    grid-column: 1;
  }

  .carousel-showcase {
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo-col {
    position: static;
  }

  .about-photo-frame {
    max-height: 480px;
    aspect-ratio: 4/5;
  }

  /* Recupera retrato, não corta */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Centraliza a sessão Sobre Mim no Mobile/Tablet */
  .about-text-col {
    text-align: center;
  }

  .about-text-col p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-services {
    justify-content: center;
  }

  .about-lead {
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* Suaviza o Orb de luz superior que atrapalha leitura no mobile */
  body::before {
    width: 140px;
    height: 70px;
    /* Reduzido de 200/100 */
    background: rgba(252, 79, 0, 0.02);
    /* Reduzido de 0.04 */
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
    /* Reduzido de 80px */
  }

  .desktop-hint {
    display: none;
  }

  .mobile-hint {
    display: inline-block;
  }

  .hero-orb {
    opacity: 0.01;
  }

  /* Quase some no mobile p/ destacar o preto */

  section {
    padding: 30px 20px;
  }

  /* Reduzido de 50px para 30px */
  #hero {
    padding: 60px 24px 10px;
  }

  /* Reduzido de 80/40 para 60/10 */
  .hero-content {
    margin-top: 10px;
    margin-bottom: 0;
  }

  /* Remove vácuo inferior */
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-mascot {
    width: clamp(120px, 45vw, 150px);
    height: auto;
    margin-top: -30px;
    /* Sobe bem menos, não cobre o título 'Oi sou...' */
    margin-bottom: 0;
  }

  .mascot-mobile {
    display: block;
  }

  .mascot-desktop {
    display: none;
  }

  #navbar {
    padding: 0;
  }

  .nav-inner {
    padding: 16px 20px;
  }

  #navbar.scrolled .nav-inner {
    padding: 12px 20px;
  }

  /* Ajuste de Proporções Mobile */
  .section-header h2 {
    font-size: 2.2rem;
  }

  .hero-top-title {
    font-size: 3.5rem;
  }

  .hero-sub {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 53px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-glass);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .header-lang {
    margin-right: 10px;
    margin-left: auto;
  }

  #processo {
    padding: 15px 20px 30px;
  }

  /* Aproximação agressiva da Hero */

  #carrosseis {
    padding: 30px 20px;
  }

  #videos {
    padding: 30px 20px;
  }

  .video-reel-track {
    justify-content: flex-start;
    padding: 10px 20px 30px;
  }

  .video-reel-card {
    flex: 0 0 220px;
  }

  #contato {
    padding: 40px 20px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .section-header,
  .process-header {
    text-align: center;
    margin-bottom: 32px;
  }

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

  .contact-inner h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .about-wrapper {
    gap: 30px;
  }
}

/* ==============================================
   UNIVERSE ATMOSPHERE — Estrelas e Foguetes
   ============================================== */
#universe-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shooting-star {
  position: absolute;
  top: var(--top);
  left: var(--left);
  width: 180px;
  /* Um pouco maior pra mais rastro */
  height: 2px;
  background: linear-gradient(to right, rgba(252, 79, 0, 0), #fff);
  border-radius: 999px;
  filter: drop-shadow(0 0 12px var(--primary-orange));
  transform: rotate(var(--rot));
  opacity: 0;
  animation: shoot var(--dur) ease-out forwards;
}

.flying-rocket {
  position: absolute;
  top: var(--top);
  left: var(--left);
  font-size: 35px;
  /* Reduzido em 20% p/ melhor escala de fundo */
  filter: drop-shadow(0 0 15px rgba(252, 79, 0, 0.6));
  opacity: 0;
  transform: rotate(var(--rot));
  animation: rocketFly var(--dur) linear forwards;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: margin 0.4s ease-out;
  /* Suaviza a fuga do mouse */
}

.flying-rocket::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 22px;
  background: radial-gradient(ellipse at bottom, var(--primary-orange) 0%, #ffbb00 40%, transparent 90%);
  left: 9px;
  top: 73%;
  transform: translateY(-50%) rotate(90deg);
  filter: blur(3px);
  border-radius: 60% 60% 15% 15%;
  box-shadow: 0 0 8px var(--primary-orange);
  animation: flamePulsate 0.08s infinite alternate;
  opacity: 0.9;
}

@keyframes flamePulsate {
  from {
    opacity: 0.7;
    transform: translateY(-50%) rotate(90deg) scale(0.85);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg) scale(1.1);
  }
}

@keyframes shoot {
  0% {
    transform: translate(0, 0) rotate(var(--rot)) scaleX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translate(0, 0) rotate(var(--rot)) scaleX(1);
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scaleX(1);
    opacity: 0;
  }
}

@keyframes rocketFly {
  0% {
    transform: translate(0, 0) rotate(var(--rot));
    opacity: 0;
  }

  5% {
    opacity: 0.8;
  }

  95% {
    opacity: 0.8;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
    opacity: 0;
  }
}

/* ---- NEW SECTIONS STYLES (Refined) ---- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

/* Hero Support */
.hero-sub-support {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-top: -15px;
  margin-bottom: 40px;
  opacity: 0.8;
  letter-spacing: 0.01em;
}

/* Method Extra */
.method-extra,
.projects-extra {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-orange);
  margin: 15px auto 0;
  opacity: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 450px;
}

/* Services Grid */
/* Services Grid */
#servicos .section-header p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
  width: 100%;
}

.service-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 300px;
}

.service-card {
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--t);
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(252, 79, 0, 0.4);
  background: rgba(252, 79, 0, 0.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-icon-box {
  color: var(--primary-orange);
  filter: drop-shadow(0 0 10px rgba(252, 79, 0, 0.4));
  flex-shrink: 0;
}

.service-icon-box svg {
  display: block;
}

.service-content {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
  color: var(--primary-orange);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* Linha extra de suporte discreta */
.subtle-extra {
  font-size: 0.85rem !important;
  color: var(--gray-2) !important;
  opacity: 0.55;
  font-weight: 400 !important;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* Before vs After (Instagram Poster Style) */
.ba-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px auto 0;
  width: 100%;
  max-width: var(--max-w);
}

.ba-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  overflow: visible;
  /* Mudado de hidden para permitir os "nós" de conexão externa */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.ig-header {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ig-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ba-card.before .ig-avatar {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.ba-card.before .ig-avatar-inner {
  display: none;
}

.ba-card.after .ig-avatar {
  background: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-glow);
  border: none;
}

.ba-card.after .ig-avatar-inner {
  display: none;
}

.ig-avatar-inner {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.ig-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.ba-img-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  /* Garante tamanho de poster quadrado igual para ambos, cortando o excesso */
  background: #000;
  overflow: hidden;
}

.ba-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Coração flutuante no canto inferior direito do card */
.ba-heart-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(252, 79, 0, 0.1);
  border: 1px solid rgba(252, 79, 0, 0.2);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: transform 0.2s;
}

.ba-heart-btn:hover {
  transform: scale(1.1);
  background: rgba(252, 79, 0, 0.2);
}

.ba-heart-btn:active {
  transform: scale(0.9);
}

.ba-heart-btn .ig-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

/* Corações flutuantes */
.floating-heart {
  position: absolute;
  pointer-events: none;
  animation: floatHeart 1.2s ease-out forwards;
  font-size: 1.7rem;
  z-index: 9999;
}

@keyframes floatHeart {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--hx, 0), -100px) scale(0.5);
  }
}

.ig-actions {
  display: none;
  /* oculto: coração agora é position absolute no card */
}

.ig-icon {
  width: 24px;
  height: 24px;
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s;
}

.ig-icon:hover {
  transform: scale(1.1);
}

.ig-icon.liked {
  color: var(--primary-orange);
  fill: var(--primary-orange);
}

.ig-caption {
  padding: 12px 15px 15px;
  text-align: left;
  padding-right: 40px;
  /* Evita que o texto encoste no coração que fica na direita */
}

.ig-caption p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-2);
  line-height: 1.5;
  margin: 0;
}

/* Interactive Before/After with SVG Connections */
.ba-container {
  position: relative;
  overflow: visible;
}

.ba-svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 25;
}

.ba-connection-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.ba-node-dot {
  fill: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.ba-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  cursor: grab;
  will-change: transform;
}

.ba-card:hover {
  border-color: rgba(252, 79, 0, 0.25);
  filter: brightness(1.05);
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.ba-card img {
  pointer-events: none;
  /* Prevents images from stealing the drag */
}

.ba-card.dragging {
  cursor: grabbing;
  z-index: 100;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transition: none !important;
}

@media (max-width: 1024px) {
  .ba-svg-overlay {
    display: none;
  }
}

@media (max-width: 768px) {
  .ba-card {
    transition: none !important;
    transform: none !important;
    touch-action: pan-y !important;
    /* Permite scroll normal no mobile */
  }

  .ba-card:hover,
  .ba-card:active {
    border-color: var(--border-glass) !important;
    filter: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Clones Virtuais */
/* Clones Virtuais (Hashtags and Carousel) */
.clones-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
  width: 100%;
}

.clone-benefit {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.clone-benefit.active {
  background: rgba(252, 79, 0, 0.15);
  border-color: rgba(252, 79, 0, 0.5);
  box-shadow: 0 0 20px rgba(252, 79, 0, 0.2), inset 0 0 10px rgba(252, 79, 0, 0.1);
}

.circle-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-2);
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.clone-benefit.active .circle-icon {
  border-color: var(--primary-orange);
  background: var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange);
}

.clone-benefit.active .circle-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--white);
  border-radius: 50%;
  transform: scale(0);
  animation: circlePop 0.3s forwards;
}

@keyframes circlePop {
  to {
    transform: scale(1);
  }
}

.clones-carousel-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
  overflow: visible;
  overflow-x: visible;
  padding: 40px 0;
  cursor: grab;
  z-index: 5;
}

.clones-carousel-wrapper:active {
  cursor: grabbing;
}

.clones-carousel {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.clone-carousel-item {
  width: 300px;
  height: 400px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.clone-carousel-item:hover {
  border-color: rgba(252, 79, 0, 0.4);
  transform: translateY(-5px);
}

.clone-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.clones-action {
  text-align: center;
  margin-top: 40px;
}

/* Partnership (Pra quem é) */
.work-title.is-orange {
  color: var(--primary-orange);
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.work-lists {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 15px;
  /* Aproxima do título */
  width: 100%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Clones Section */
#clones {
  position: relative;
  overflow: visible;
  /* Parent overflow changed to visible */
}

.clones-orb {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(252, 79, 0, 0.05), transparent 70%);
  top: 30%;
  right: -10%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite;
}

.work-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.glass-point {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-1);
  transition: var(--t);
  cursor: default;
}

.glass-point:hover {
  border-color: rgba(252, 79, 0, 0.5);
  box-shadow: 0 10px 30px rgba(252, 79, 0, 0.05);
  color: var(--white);
}

.glass-point.not:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.work-icon {
  color: var(--primary-orange);
  font-weight: 800;
  font-size: 1.2rem;
  transition: var(--t);
  flex-shrink: 0;
}

.glass-point.not .work-icon {
  color: var(--gray-2);
}

.glass-point:hover .work-icon {
  text-shadow: 0 0 10px rgba(252, 79, 0, 0.8);
}

/* Proof Social */
#prova-social {
  position: relative;
  overflow: visible;
  /* Parent overflow changed to visible */
}

.feedback-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(252, 79, 0, 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.proof-placeholder {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  color: var(--gray-2);
  width: 100%;
}

.proof-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 40px;
  padding: 20px 0;
  overflow: hidden;
}

/* Efeito de Máscara Removido para garantir alinhamento visual perfeito na borda */

.clones-carousel-wrapper:active,
.proof-carousel-wrapper:active {
  cursor: grabbing;
}

.proof-carousel {
  display: flex;
  gap: 25px;
  width: max-content;
  user-select: none;
  -webkit-user-drag: none;
  padding-left: 24px;
  /* Padding de segurança inicial */
}

.clones-carousel {
  user-select: none;
  -webkit-user-drag: none;
}

.proof-carousel-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
  overflow-x: visible;
  padding: 20px 0;
  cursor: grab;
  z-index: 5;
}

.proof-carousel-wrapper:active {
  cursor: grabbing;
}

.proof-carousel {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
}

.tweet-card {
  width: 380px;
  background: rgba(10, 10, 10, 0.65);
  /* Escurecido para dar contraste/diferença */
  backdrop-filter: blur(25px) saturate(1.8);
  /* Blur intenso + saturação para cores passarem mais vivas */
  -webkit-backdrop-filter: blur(25px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  flex-shrink: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.tweet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.tweet-card:hover {
  border-color: rgba(252, 79, 0, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 20px rgba(252, 79, 0, 0.1);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #333;
}

.tweet-user {
  display: flex;
  flex-direction: column;
}

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

.tweet-handle {
  color: #71767b;
  font-size: 0.9rem;
}

.tweet-x-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.8;
}

.tweet-text {
  color: #e7e9ea;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.tweet-footer {
  color: #71767b;
  font-size: 0.85rem;
  margin-top: 8px;
  border-top: 1px solid #333;
  padding-top: 12px;
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
  width: 100%;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  /* Leve transparência */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  transition: var(--t);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary-orange);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 35px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  /* Valor seguro maior */
  padding-bottom: 30px;
  transition: max-height 0.6s ease-in, padding 0.4s ease-in;
}

.faq-item.active {
  border-color: rgba(252, 79, 0, 0.6);
  background: rgba(252, 79, 0, 0.08);
  /* Dark glass with orange tint */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(252, 79, 0, 0.1);
}

.faq-item.active .faq-question {
  color: var(--primary-orange);
}

.faq-arrow {
  width: 22px;
  height: 22px;
  color: var(--primary-orange);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

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

/* Mantém compatibilidade com .faq-icon antigo */
.faq-icon {
  font-size: 1.4rem;
  color: var(--primary-orange);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* blink-glow: pisca como os outros highlights */
.blink-glow {
  animation: neonBlink 2.4s ease-in-out infinite;
}

/* Adjustments */
.about-extra,
.contact-extra {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-orange);
  margin: 25px 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 768px) {

  .ba-container,
  .clones-grid,
  .work-lists,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .ba-card,
  .clone-card,
  .work-col,
  .service-card {
    padding: 35px 25px;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Ajustes do Carrossel Mobile */
  #carrosseis {
    padding: 50px 20px;
    overflow-x: hidden;
    /* Cortando qualquer scroll vazado */
  }

  .carousel-showcase {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow-x: hidden !important;
    touch-action: pan-y !important;
    /* Exclusividade vertical no container */
  }

  .ig-post-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    touch-action: pan-y !important;
  }

  .ig-slider {
    touch-action: pan-y !important;
    /* Cancela gestos complexos ou laterais na imagem principal */
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
  }
}