/* ─────────────────────────────────────────────────────────────────
   Nativs Produtora — Static Landing Page Styles
   ───────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --purple:        #6b3096;
  --purple-light:  #7d38b0;
  --purple-accent: #9b59d0;
  --purple-glow:   rgba(107,48,150,0.5);
  --bg-dark:       #060010;
  --bg-dark2:      #080014;
  --bg-dark3:      #0a0018;
  --bg-mid:        #100020;
  --text-white:    rgba(255,255,255,1);
  --text-muted:    rgba(255,255,255,0.5);
  --text-faint:    rgba(255,255,255,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #8b4ac4; }

/* ── Containers ── */
.container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-sm { max-width: 896px; }
.container-lg { max-width: 1280px; }
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

/* ── Utilities ── */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(107,48,150,0.5), transparent);
}
.text-gradient-purple {
  background: linear-gradient(90deg, #ffffff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-faq {
  background: linear-gradient(to right, #6b3096, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glow-purple {
  box-shadow: 0 0 40px rgba(107,48,150,0.5), 0 0 80px rgba(107,48,150,0.25);
}
.glow-purple:hover {
  box-shadow: 0 0 60px rgba(107,48,150,0.7), 0 0 120px rgba(107,48,150,0.4);
}

/* ── Animations ── */
@keyframes blob {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px,-60px) scale(1.15); }
  66%  { transform: translate(-30px,30px) scale(0.85); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%      { transform: translateY(-8px); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.6; filter: blur(8px); }
  50%      { opacity: 1;   filter: blur(12px); }
}

.blob { border-radius: 50%; filter: blur(80px); animation: blob 8s infinite; position: absolute; pointer-events: none; }
.blob-d1 { animation-delay: 1s; }
.blob-d2 { animation-delay: 2s; }
.blob-d3 { animation-delay: 3.5s; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-d { animation: float 7s ease-in-out infinite 1.5s; }
.animate-bounce { animation: bounce 1s infinite; }
.fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.fade-in-up-d1 { animation: fadeInUp 0.8s ease 0.15s forwards; opacity: 0; }
.fade-in-up-d2 { animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0; }
.fade-in-up-d3 { animation: fadeInUp 0.8s ease 0.45s forwards; opacity: 0; }

/* Scroll Reveal */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.sr.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: linear-gradient(to right, #060010, #100020, #060010);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar.scrolled {
  background: rgba(6,0,16,0.9);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(107,48,150,0.3);
  box-shadow: 0 4px 30px rgba(107,48,150,0.25);
}
.navbar-inner {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 640px) { .navbar-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .navbar-inner { padding: 0 3rem; } }

.navbar-logo img { height: 32px; width: auto; object-fit: contain; }

.navbar-links { display: none; align-items: center; gap: 0; }
@media (min-width: 768px) { .navbar-links { display: flex; } }

.navbar-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #a855f7;
  border-radius: 9999px;
  transition: width 0.3s;
}
.navbar-links a:hover { color: #fff; }
.navbar-links a:hover::after { width: 80%; }

.navbar-cta { display: none; }
@media (min-width: 768px) { .navbar-cta { display: flex; align-items: center; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--purple);
  border: none;
  transition: all 0.3s;
  box-shadow: 0 0 40px rgba(107,48,150,0.5), 0 0 80px rgba(107,48,150,0.25);
}
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 0 60px rgba(107,48,150,0.7), 0 0 120px rgba(107,48,150,0.4);
}

.navbar-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 768px) { .navbar-hamburger { display: none; } }
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar-hamburger.open .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.navbar-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.navbar-hamburger.open .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

.navbar-mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s;
  background: rgba(10,0,24,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(107,48,150,0.2);
}
.navbar-mobile.open { max-height: 320px; opacity: 1; }
@media (min-width: 768px) { .navbar-mobile { display: none !important; } }
.navbar-mobile { display: block; }
.navbar-mobile-inner { padding: 1rem; display: flex; flex-direction: column; gap: 4px; }
.navbar-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.navbar-mobile a:hover { color: #fff; background: rgba(107,48,150,0.2); }
.navbar-mobile .btn-primary { margin-top: 0.5rem; padding: 0.75rem 1rem; border-radius: 0.5rem; width: 100%; text-align: center; }

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060010;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #060010, #100020, #0a0018);
}
.hero-radial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-radial-inner {
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(107,48,150,0.35) 0%, rgba(107,48,150,0.1) 40%, transparent 70%);
}
.hero-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(168,85,247,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 5rem 1rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) { .hero-content { padding: 5rem 1.5rem 0; } }
@media (min-width: 1024px) { .hero-content { padding: 5rem 2rem 0; } }

.hero-logo-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 0;
  height: clamp(180px, 42vw, 520px);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-logo-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.035) 0%, rgba(107,48,150,0.1) 45%, transparent 70%);
}
.hero-logo-img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 60px rgba(255,255,255,0.1));
}
.hero-logo-img img { width: 100%; height: 100%; object-fit: contain; }

.hero-subtitle {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  font-size: 0.875rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.8;
  letter-spacing: 0.025em;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1rem; } }
.hero-subtitle span { color: rgba(255,255,255,0.6); }

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--purple);
  border: none;
  overflow: hidden;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 0 40px rgba(107,48,150,0.5), 0 0 80px rgba(107,48,150,0.25);
}
@media (min-width: 640px) { .btn-hero-primary { width: auto; } }
.btn-hero-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 0 60px rgba(107,48,150,0.7), 0 0 120px rgba(107,48,150,0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  width: 100%;
}
@media (min-width: 640px) { .btn-hero-secondary { width: auto; } }
.btn-hero-secondary:hover {
  border-color: rgba(168,85,247,0.3);
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.05);
}

.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 1.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}
.proof-item { display: flex; align-items: center; gap: 0.5rem; }
.proof-icon { width: 16px; height: 16px; color: #a855f7; flex-shrink: 0; }
.proof-sep { display: none; width: 1px; height: 16px; background: rgba(255,255,255,0.1); }
@media (min-width: 640px) { .proof-sep { display: block; } }

.hero-scroll-indicator { margin-top: 4rem; display: flex; justify-content: center; }
.hero-scroll-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-badge-dark {
  border: 1px solid rgba(168,85,247,0.3);
  background: rgba(107,48,150,0.2);
  color: #c084fc;
}
.section-badge-light {
  border: 1px solid rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.08);
  color: #7c3aed;
}
.section-title {
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title-dark { color: #0c0e29; }
.section-title-light { color: #fff; }
.section-desc { font-size: 1.125rem; max-width: 40rem; margin: 0 auto; }
.section-desc-dark { color: rgba(12,14,41,0.5); }
.section-desc-light { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════════ */
#contato {
  padding: 5rem 0;
  position: relative;
  background: var(--bg-dark2);
}
.contact-bg-top {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 350px; pointer-events: none;
  background: radial-gradient(ellipse at top, #6b3096 0%, transparent 65%);
  opacity: 0.15;
}
.contact-grid-bg {
  position: absolute; inset: 0; opacity: 0.025; pointer-events: none;
  background-image:
    linear-gradient(rgba(168,85,247,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}
.contact-card-wrap {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
}
.contact-card-glow {
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, rgba(107,48,150,0.2), rgba(124,58,237,0.2));
  border-radius: 1.5rem;
  filter: blur(16px);
}
.contact-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(168,85,247,0.2);
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(107,48,150,0.08), rgba(6,0,16,0.95));
}
.contact-form { padding: 2rem; }
@media (min-width: 640px) { .contact-form { padding: 2.5rem; } }

.form-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-group label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-textarea:focus {
  border-color: rgba(168,85,247,0.6);
  background: rgba(255,255,255,0.07);
}
.form-textarea { resize: none; }

.form-services-label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.form-services { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-chip {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  cursor: pointer;
}
.service-chip:hover { border-color: rgba(168,85,247,0.4); color: rgba(255,255,255,0.8); }
.service-chip.active { background: var(--purple); border-color: #a855f7; color: #fff; }

.form-message-group { margin-bottom: 2rem; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--purple);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 0 40px rgba(107,48,150,0.5), 0 0 80px rgba(107,48,150,0.25);
}
.btn-submit:hover {
  background: var(--purple-light);
  box-shadow: 0 0 60px rgba(107,48,150,0.7), 0 0 120px rgba(107,48,150,0.4);
}
.btn-submit svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }
.form-note { text-align: center; color: rgba(255,255,255,0.3); font-size: 0.75rem; margin-top: 1rem; }

.contact-success { display: none; padding: 2.5rem; text-align: center; }
.contact-success.visible { display: block; }
.contact-form.hidden { display: none; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(107,48,150,0.2); border: 2px solid rgba(168,85,247,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-icon svg { width: 32px; height: 32px; color: #a855f7; }

/* ══════════════════════════════════════════════════════════════════
   WHAT IS NATIVS
══════════════════════════════════════════════════════════════════ */
#sobre {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}
.sobre-desc {
  margin-top: 3.5rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
@media (min-width: 640px) { .sobre-desc { font-size: 1.125rem; } }
.sobre-desc span { color: rgba(255,255,255,0.8); }

/* ══════════════════════════════════════════════════════════════════
   YOUTUBE EMBED
══════════════════════════════════════════════════════════════════ */
.yt-embed-wrap {
  position: relative;
}
.yt-embed-wrap.landscape { width: 100%; aspect-ratio: 16/9; }
.yt-embed-wrap.portrait { width: 100%; max-width: 320px; aspect-ratio: 9/16; margin: 0 auto; }

.yt-glow-1 {
  position: absolute; inset: -3px; border-radius: 1rem; z-index: 0; pointer-events: none;
  background: linear-gradient(135deg, #6b3096, #a855f7, #6b3096);
}
.yt-glow-2 {
  position: absolute; inset: -6px; border-radius: 1rem; z-index: 0; pointer-events: none; opacity: 0.6;
  background: linear-gradient(135deg, #6b3096, #a855f7, #4a1f6b);
  filter: blur(8px);
}
.yt-glow-3 {
  position: absolute; inset: -14px; border-radius: 1rem; z-index: 0; pointer-events: none; opacity: 0.3;
  background: linear-gradient(135deg, #6b3096, #9333ea);
  filter: blur(18px);
  animation: glow-pulse 3s ease-in-out infinite;
}
.yt-canvas {
  position: absolute; z-index: 10; pointer-events: none; border-radius: 1rem;
  top: -28px; left: -28px;
  width: calc(100% + 56px); height: calc(100% + 56px);
}
.yt-video {
  position: relative; z-index: 20; width: 100%; height: 100%;
  border-radius: 1rem; overflow: hidden; background: #0d001a;
}
.yt-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.yt-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem;
  background: linear-gradient(135deg, rgba(107,48,150,0.2), #0d001a);
}
.yt-placeholder-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(107,48,150,0.4); border: 1px solid rgba(168,85,247,0.3);
  display: flex; align-items: center; justify-content: center;
}
.yt-placeholder-icon svg { width: 28px; height: 28px; color: #c084fc; transform: translateX(2px); }
.yt-placeholder p { color: rgba(255,255,255,0.3); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; }

/* ══════════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════════ */
#servicos {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-dark);
}
.services-bg {
  position: absolute; top: -10rem; right: 0; width: 600px; height: 600px;
  border-radius: 50%; opacity: 0.1; pointer-events: none;
  background: radial-gradient(circle, #6b3096 0%, transparent 70%);
}

.tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0;
}
.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
  cursor: pointer;
}
.tab-btn:hover { border-color: rgba(168,85,247,0.2); background: rgba(107,48,150,0.1); color: rgba(255,255,255,0.7); }
.tab-btn.active {
  background: rgba(107,48,150,0.3);
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 20px rgba(107,48,150,0.3);
  color: #c084fc;
}
.tab-btn.active .tab-label { color: #fff; }
.tab-icon { width: 20px; height: 20px; }
.tab-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.tab-btn.active .tab-label, .tab-btn:hover .tab-label { color: rgba(255,255,255,0.7); }
.tab-btn.active .tab-label { color: #fff; }

.tab-panel {
  display: none;
  border-radius: 0 0 1.5rem 1.5rem;
  border: 1px solid rgba(168,85,247,0.15);
  border-top: none;
  background: linear-gradient(135deg, rgba(107,48,150,0.15), rgba(6,0,16,0.8));
  overflow: hidden;
  animation: fadeInUp 0.4s ease forwards;
}
.tab-panel.active { display: block; }

.tab-content-grid {
  display: grid;
  min-height: 340px;
}
@media (min-width: 768px) { .tab-content-grid { grid-template-columns: 1fr 1fr; } }

.tab-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tab-category {
  color: #a855f7;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.tab-title {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.tab-desc {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.tab-highlights { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.625rem; }
.tab-highlights li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7);
}
.tab-highlights li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #a855f7; flex-shrink: 0;
}
.tab-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: #c084fc;
  transition: color 0.2s;
}
.tab-cta:hover { color: #fff; }
.tab-cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.tab-cta:hover svg { transform: translateX(4px); }

.tab-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(168,85,247,0.1);
}
@media (min-width: 768px) { .tab-visual { border-top: none; border-left: 1px solid rgba(168,85,247,0.1); } }
.tab-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,48,150,0.1), transparent);
}

/* Services visuals */
.visual-orbit { position: relative; width: 288px; height: 288px; }
.visual-orbit-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(107,48,150,0.3) 0%, transparent 65%);
}
.orbit-icon {
  position: absolute;
  width: 64px; height: 64px; border-radius: 50%;
  background: #0a0018; border: 1px solid rgba(168,85,247,0.2);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.orbit-icon.top    { top: 16px; left: 50%; transform: translateX(-50%); }
.orbit-icon.right  { right: 8px; top: 50%; transform: translateY(-50%); }
.orbit-icon.bottom { bottom: 16px; left: 50%; transform: translateX(-50%); }
.orbit-icon.left   { left: 8px; top: 50%; transform: translateY(-50%); }
.orbit-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.orbit-center-box {
  width: 80px; height: 80px; border-radius: 1rem;
  background: rgba(107,48,150,0.4); border: 1px solid rgba(168,85,247,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.orbit-center-box svg { width: 28px; height: 28px; color: #c084fc; }
.orbit-center-box span { color: #c084fc; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; }

/* VSL visual */
.vsl-screen {
  position: relative; width: 320px; height: 208px;
  border-radius: 1rem; border: 1px solid rgba(168,85,247,0.3);
  background: #0a0018; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.vsl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(107,48,150,0.4), #0a0018);
  display: flex; align-items: center; justify-content: center;
}
.vsl-play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(107,48,150,0.8);
  display: flex; align-items: center; justify-content: center;
}
.vsl-play svg { width: 28px; height: 28px; color: #fff; transform: translateX(2px); }
.vsl-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: rgba(255,255,255,0.1); }
.vsl-progress-bar { height: 100%; width: 40%; background: #a855f7; border-radius: 9999px; }
.vsl-funnel { position: absolute; right: 12px; top: 12px; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.vsl-funnel-bar { height: 8px; border-radius: 9999px; background: rgba(168,85,247,0.6); }
.vsl-label { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; text-transform: uppercase; }
.vsl-stats { position: absolute; bottom: 16px; display: flex; gap: 16px; width: 320px; justify-content: center; }
.vsl-stat { padding: 6px 12px; border-radius: 8px; background: rgba(107,48,150,0.3); border: 1px solid rgba(168,85,247,0.2); text-align: center; }
.vsl-stat strong { display: block; color: #c084fc; font-weight: 700; font-size: 0.875rem; }
.vsl-stat span { color: rgba(255,255,255,0.3); font-size: 10px; }

/* YouTube visual */
.yt-visual-wrap { position: relative; width: 320px; }
.yt-visual-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.yt-visual-header svg { width: 40px; height: 28px; }
.yt-visual-channel-name { color: #fff; font-weight: 600; font-size: 0.875rem; }
.yt-visual-channel-sub { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.yt-bars { display: flex; align-items: flex-end; gap: 4px; height: 64px; }
.yt-bar { flex: 1; border-radius: 2px 2px 0 0; }
.yt-bar-footer { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 4px; }

/* Podcast visual */
.podcast-visual { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; width: 288px; }
.podcast-mic {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(107,48,150,0.4); border: 2px solid rgba(168,85,247,0.4);
  display: flex; align-items: center; justify-content: center;
}
.podcast-mic svg { width: 40px; height: 40px; color: #c084fc; }
.podcast-wave { display: flex; align-items: center; gap: 2px; height: 48px; width: 100%; padding: 0 1rem; }
.podcast-wave-bar { flex: 1; border-radius: 9999px; }
.podcast-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.podcast-tag {
  padding: 4px 10px; border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
  border: 1px solid rgba(168,85,247,0.25); color: #c084fc; background: rgba(107,48,150,0.2);
}

/* Reels visual */
.reels-visual { display: flex; gap: 12px; align-items: flex-end; }
.reel-card {
  width: 96px; border-radius: 1rem;
  border: 1px solid rgba(168,85,247,0.25);
  background: linear-gradient(to bottom, rgba(107,48,150,0.3), #0a0018);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  overflow: hidden; padding: 12px 8px;
}
.reel-play {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(107,48,150,0.5);
  display: flex; align-items: center; justify-content: center;
}
.reel-play svg { width: 16px; height: 16px; color: #fff; transform: translateX(2px); }
.reel-lines { width: 100%; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.reel-line { height: 4px; border-radius: 9999px; background: rgba(255,255,255,0.2); }
.reel-heart { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.reel-heart svg { width: 16px; height: 16px; color: #a855f7; }
.reel-heart span { font-size: 9px; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════════════════════
   DIFFERENTIALS
══════════════════════════════════════════════════════════════════ */
#diferenciais {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-dark2);
}
.diff-bg {
  position: absolute; bottom: 0; left: 0; width: 500px; height: 500px;
  border-radius: 50%; opacity: 0.07; pointer-events: none;
  background: radial-gradient(circle, #6b3096 0%, transparent 70%);
}

.pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 4rem; }
.pillar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.5rem; border-radius: 1rem;
  border: 1px solid rgba(168,85,247,0.2);
  background: rgba(107,48,150,0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.pillar:hover { border-color: rgba(168,85,247,0.4); background: rgba(107,48,150,0.2); }
.pillar-emoji { font-size: 1.5rem; }
.pillar-name { font-weight: 700; color: #fff; font-size: 0.875rem; }
.pillar-desc { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

.diff-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: 1fr 1fr; } }

.diff-list { display: flex; flex-direction: column; gap: 2rem; }
.diff-item { display: flex; gap: 1.25rem; }
.diff-number {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 0.75rem;
  border: 1px solid rgba(168,85,247,0.2); background: rgba(107,48,150,0.2);
  display: flex; align-items: center; justify-content: center;
}
.diff-number span { color: #a855f7; font-weight: 700; font-size: 0.875rem; font-family: monospace; }
.diff-item-title { font-weight: 700; color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }
.diff-item-title:hover { color: #c084fc; }
.diff-item-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; }

.diff-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(168,85,247,0.2);
  background: linear-gradient(135deg, rgba(107,48,150,0.2), rgba(6,0,16,0.8));
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.diff-card-glow { position: absolute; inset: -1rem; background: rgba(107,48,150,0.1); border-radius: 1.5rem; filter: blur(20px); }
.diff-quote-mark { font-size: 4rem; color: rgba(107,48,150,0.3); font-family: Georgia, serif; line-height: 1; margin-bottom: 1rem; }
.diff-quote { color: rgba(255,255,255,0.8); font-size: 1.125rem; line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.diff-quote span { color: #c084fc; font-style: normal; font-weight: 600; }
.diff-author { display: flex; align-items: center; gap: 0.75rem; }
.diff-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  background: rgba(107,48,150,0.4); border: 1px solid rgba(168,85,247,0.3);
  display: flex; align-items: center; justify-content: center; padding: 6px;
}
.diff-avatar img { width: 100%; height: 100%; object-fit: contain; }
.diff-author-name { color: #fff; font-weight: 600; font-size: 0.875rem; }
.diff-author-role { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.diff-stats { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(168,85,247,0.1); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.diff-stat { text-align: center; }
.diff-stat-value { color: #c084fc; font-weight: 700; font-size: 1.25rem; }
.diff-stat-label { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════════════
   WORKS
══════════════════════════════════════════════════════════════════ */
#trabalhos {
  padding: 6rem 0;
  position: relative;
  background: var(--bg-dark);
}
.works-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%; opacity: 0.06; pointer-events: none;
  background: radial-gradient(circle, #6b3096 0%, transparent 70%);
}

.works-row { margin-bottom: 4rem; }
.works-row:last-child { margin-bottom: 0; }
.works-row-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.works-row-accent { width: 4px; height: 24px; border-radius: 9999px; background: #a855f7; }
.works-row-title { font-weight: 700; font-size: 1.25rem; color: #fff; }

.works-grid-landscape {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .works-grid-landscape { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .works-grid-landscape { grid-template-columns: 1fr 1fr 1fr; } }

.works-grid-portrait {
  display: grid; gap: 2rem; justify-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .works-grid-portrait { grid-template-columns: repeat(3, 1fr); } }
.works-grid-portrait .yt-embed-wrap { max-width: 320px; }

/* ══════════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════════ */
#faq {
  padding: 6rem 0;
  position: relative;
  background: #f9fafb;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: #ddd6fe; }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}
.faq-question {
  font-weight: 600;
  color: #0c0e29;
  font-size: 1rem;
  transition: color 0.2s;
  flex: 1;
}
.faq-btn:hover .faq-question { color: #6d28d9; }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: #7c3aed; border-color: #7c3aed; color: #fff; transform: rotate(45deg); }
.faq-icon svg { width: 16px; height: 16px; }
.faq-answer {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; opacity: 1; }
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(12,14,41,0.6);
  line-height: 1.75;
  border-top: 1px solid #f3f4f6;
  padding-top: 1rem;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
footer {
  background: linear-gradient(to bottom, #060010, #030009);
  border-top: 1px solid rgba(107,48,150,0.2);
}
.footer-inner {
  max-width: 1152px; margin: 0 auto;
  padding: 4rem 1rem;
  display: flex; flex-direction: column; gap: 2.5rem;
}
@media (min-width: 640px) { .footer-inner { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { flex-direction: row; padding: 4rem 2rem; } }

.footer-brand { }
@media (min-width: 1024px) { .footer-brand { width: 33%; } }

.footer-logo { display: flex; align-items: center; margin-bottom: 1.25rem; }
.footer-logo img { height: 64px; width: auto; object-fit: contain; }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 20rem; }

.footer-socials { display: flex; align-items: center; gap: 0.75rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.footer-social-link:hover { color: #a855f7; border-color: rgba(168,85,247,0.4); background: rgba(107,48,150,0.2); }
.footer-social-link svg { width: 16px; height: 16px; }

.footer-links-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (min-width: 640px) { .footer-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-links-grid { width: 67%; } }

.footer-col-title {
  color: #fff; font-weight: 600; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { color: rgba(255,255,255,0.4); font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(107,48,150,0.2);
  padding-top: 2rem; margin-top: 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.footer-icon img { height: 28px; width: auto; object-fit: contain; opacity: 0.3; transition: opacity 0.3s; }
.footer-icon img:hover { opacity: 0.6; }
