/* ==========================================
   G3J AGENCY - DARK LUXURY DESIGN SYSTEM
   Paleta: Preto Obsidiana + Violeta Neon (#8A00C4)
   Fonte: Outfit + Playfair Display
   ========================================== */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #8A00C4;
  --gold-light: #B633F2;
  --gold-dark: #510073;
  --gold-ultra: #E4A0FF;
  --bg-deep: transparent;
  --bg-dark: transparent;
  --bg-card: rgba(10, 10, 15, 0.65);
  --bg-card-hover: rgba(82, 0, 117, 0.25);
  --bg-glass: rgba(0, 0, 0, 0.3);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.25);
  --text-primary: #FFFFFF;
  --text-secondary: #D4B6FF;
  --text-muted: #9A76CC;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-gold: 0 0 40px rgba(138, 0, 196, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #520075 0%, #000401 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 99px; }

/* --- SELECTION --- */
::selection { background: var(--gold); color: #000; }

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-label::before { display: none; }
.section-header .section-label {
  justify-content: center;
}

.text-gold { color: var(--gold); }

/* ==========================================
   LAYOUT
   ========================================== */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ==========================================
   ANIMATION STATES
   ========================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="slide-right"] {
  opacity: 0;
  transform: translateX(-40px);
}
[data-animate="slide-left"] {
  opacity: 0;
  transform: translateX(40px);
}
[data-animate="float-in"] {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
}
[data-animate="card-in"] {
  opacity: 0;
  transform: translateY(24px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================
   HEADER / NAV
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.logo-g { color: var(--text-primary); }
.logo-3 { color: var(--gold); }
.logo-j { color: var(--text-primary); }
.logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 6px;
  margin-bottom: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.cta-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.cta-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(138, 0, 196, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero > * { position: relative; z-index: 1; }

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(138, 0, 196, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 0, 196, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(138, 0, 196, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(138, 0, 196, 0.06) 0%, transparent 70%);
  bottom: 0;
  left: 100px;
  animation: orb-drift 16s ease-in-out infinite reverse;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(138, 0, 196, 0.08);
  border: 1px solid rgba(138, 0, 196, 0.2);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(138, 0, 196, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(138, 0, 196, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title-gold {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-ultra) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s linear infinite;
}
@keyframes shimmer-text {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-title-outline {
  -webkit-text-stroke: 1.5px var(--gold);
  color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}
.br-desktop { display: inline; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(138, 0, 196, 0.4);
}
.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shine-sweep 3s ease-in-out infinite 1s;
}
@keyframes shine-sweep {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(138, 0, 196, 0.05);
}

/* --- HERO STATS --- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px 0 0;
}
.stat-item:first-child { padding-left: 0; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 2px;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 28px 0 0;
}

/* --- HERO VISUAL --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup-final {
  position: relative;
  width: 100%;
  animation: float-hover 8s ease-in-out infinite;
}

.hero-img-final {
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-img-final:hover {
  transform: scale(1.03) rotate(0.5deg);
}

.visual-glow-final {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(circle, rgba(138, 0, 196, 0.35) 0%, transparent 75%);
  z-index: -1;
  filter: blur(100px);
  pointer-events: none;
}

@keyframes float-hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

.portfolio-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(138, 0, 196, 0.1);
}

.pc-image-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0c;
}

.pc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .pc-image {
  transform: scale(1.05);
}

.pc-content {
  display: none;
}

.bc-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}
.bc-card {
  height: 70px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.bc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.bc-card-1::after { background: var(--gold); opacity: 0.6; }
.bc-card-2::after { background: #5B9EC9; opacity: 0.6; }
.bc-card-3::after { background: #7EC97B; opacity: 0.6; }

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  z-index: 10;
}
.fb-1 {
  top: 15%;
  right: -30px;
  animation: float-badge-1 5s ease-in-out infinite;
}
.fb-2 {
  bottom: 25%;
  left: -40px;
  animation: float-badge-2 6s ease-in-out infinite 1s;
}
@keyframes float-badge-1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes float-badge-2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(8px) rotate(-1deg); }
}

/* ==========================================
   SOBRE
   ========================================== */
.sobre {
  padding: 120px 0;
  background: transparent;
  position: relative;
}
.sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.sobre .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.8;
}
.sobre-text strong { color: var(--text-primary); }

.sobre-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(138, 0, 196, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--border-hover);
  background: rgba(138, 0, 196, 0.07);
  transform: translateY(-2px);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(138, 0, 196, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-item strong {
  font-size: 0.85rem;
  color: var(--text-primary);
}
.feature-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sobre Right - Card Stack */
.sobre-card-stack {
  position: relative;
  height: 400px;
}

.sobre-main-card {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.sobre-main-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.smc-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(138, 0, 196, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.smc-number {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.smc-number span { font-size: 3rem; }

.smc-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

.smc-decoration {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.sobre-accent-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.sobre-accent-card:hover { transform: scale(1.03); }

.sac-emoji { font-size: 1.4rem; margin-bottom: 4px; }
.sobre-accent-card strong { font-size: 0.85rem; color: var(--text-primary); }
.sobre-accent-card span { font-size: 0.72rem; color: var(--text-muted); }

.sac-1 {
  top: 0;
  right: -20px;
  animation: float-ac-1 7s ease-in-out infinite;
}
.sac-2 {
  bottom: 0;
  left: -20px;
  animation: float-ac-2 8s ease-in-out infinite 2s;
}
@keyframes float-ac-1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-ac-2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* ==========================================
   PORTFOLIO
   ========================================== */
.portfolio {
  background: transparent;
  padding: 120px 0;
}

.portfolio-filter {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 36px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-left: 12px;
  padding-right: 12px;
}
.portfolio-filter::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.filter-btn {
  flex-shrink: 0;
  padding: 8px 20px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(138, 0, 196, 0.08);
}

.portfolio-card.pc-feature {
  grid-row: span 1;
}

.pc-image-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #050505;
}

.pc-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0A0C 0%, #060607 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pc-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138, 0, 196, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 0, 196, 0.035) 1px, transparent 1px);
  background-size: 20px 20px;
}
.pc-placeholder-inner {
  text-align: center;
  z-index: 1;
}
.pc-p-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}
.pc-p-marca {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.pc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .pc-image { transform: scale(1.05); }

.pc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 7, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .pc-overlay { opacity: 1; }

.pc-overlay-content {
  text-align: center;
  padding: 24px;
  transform: translateY(10px);
  transition: transform var(--transition);
}
.portfolio-card:hover .pc-overlay-content { transform: translateY(0); }

.poc-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pc-overlay-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.poc-btn {
  display: inline-block;
  padding: 9px 22px;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.poc-btn:hover { background: var(--gold-light); transform: scale(1.03); }

.pc-info {
  padding: 24px;
}
.pc-category {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.pc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.pc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pc-tag {
  padding: 3px 10px;
  background: rgba(138, 0, 196, 0.08);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Portfolio image fallback */
.pc-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ==========================================
   PLANOS
   ========================================== */
.planos {
  background: transparent;
  padding: 120px 0;
  position: relative;
}
.planos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.planos::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
}

.plano-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.plano-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.plano-featured {
  background: linear-gradient(145deg, #141418 0%, #0e0e12 100%);
  border-color: rgba(138, 0, 196, 0.4);
}
.plano-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
}

.plano-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(138, 0, 196, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.plano-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 5px 14px;
  background: var(--gold);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plano-header {
  margin-bottom: 28px;
}

.plano-icon {
  width: 52px;
  height: 52px;
  background: rgba(138, 0, 196, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.plano-icon-gold { background: var(--gold); }

.plano-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.plano-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.plano-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-from {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.price-value {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.plano-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.pf-included { color: var(--text-primary); }
.pf-excluded { color: var(--text-muted); }

.pf-check, .pf-x { flex-shrink: 0; }

.plano-btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.plano-btn-ghost {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  background: transparent;
}
.plano-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(138, 0, 196, 0.05);
}

.plano-btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.plano-btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(138, 0, 196, 0.4);
}

.planos-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.planos-note a {
  color: var(--gold);
  text-decoration: none;
}
.planos-note a:hover { text-decoration: underline; }

/* ==========================================
   FAQ
   ========================================== */
.faq {
  padding: 120px 0;
  background: transparent;
}

.faq .section-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active,
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-item.active { background: var(--bg-card-hover); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-item.active .faq-question { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(138, 0, 196, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon svg { color: var(--gold); }
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold);
}
.faq-item.active .faq-icon svg { color: #000; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-answer strong { color: var(--text-primary); }

/* ==========================================
   CONTATO CTA SECTION
   ========================================== */
.contato-cta {
  background: transparent;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138, 0, 196, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 0, 196, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 0, 196, 0.08) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}
.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(138, 0, 196, 0.06) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

.contato-cta .section-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-subtitle strong { color: var(--gold); }

.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.cta-whatsapp:hover {
  background: #1eb357;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.cta-or {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.cta-email:hover { color: var(--gold); }

/* Contact Form */
.cta-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.label-optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--gold);
  background: rgba(138, 0, 196, 0.04);
  box-shadow: 0 0 0 3px rgba(138, 0, 196, 0.08);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: #1a1a1e; }

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Radio Group */
.plano-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.radio-option:hover { border-color: var(--border-hover); color: var(--text-primary); }
.radio-option input[type="radio"] { display: none; }
.radio-custom {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-hover);
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.radio-option input:checked ~ .radio-custom {
  border-color: var(--gold);
  background: var(--gold);
}
.radio-option input:checked ~ .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}
.radio-option:has(input:checked) {
  border-color: rgba(138, 0, 196, 0.4);
  color: var(--text-primary);
  background: rgba(138, 0, 196, 0.05);
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(138, 0, 196, 0.35);
}
.form-submit:active { transform: translateY(0); }

.form-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form-success strong { font-size: 1.1rem; color: var(--gold); }
.form-success p { font-size: 0.88rem; color: var(--text-secondary); }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: #040405;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(138, 0, 196, 0.08);
  transform: translateY(-2px);
}

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav-link:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-contact li svg { flex-shrink: 0; margin-top: 1px; }
.footer-contact a { color: var(--text-muted); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

.footer-logo { margin-bottom: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-made {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.heart { color: var(--gold); }

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  z-index: 900;
  transition: var(--transition);
}
.scroll-top:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(138, 0, 196, 0.35);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-visual { display: none; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .sobre .section-container { grid-template-columns: 1fr; gap: 60px; }
  .sobre-card-stack { height: 300px; }
  .contato-cta .section-container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .planos-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .cta-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 7, 0.97);
    backdrop-filter: blur(24px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open .nav-link { font-size: 1rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .sobre-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .br-desktop { display: none; }
  .cta-form { padding: 28px; }
  .plano-card { padding: 28px; }
  .planos-grid { grid-template-columns: 1fr; max-width: 450px; }
  .sobre-card-stack { height: auto; position: static; }
  .sobre-main-card { position: static; margin-bottom: 16px; }
  .sac-1, .sac-2 { position: static; animation: none; display: inline-flex; }
  .scroll-top { bottom: 20px; right: 20px; }
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 32px;
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background: #1eb357;
}

.floating-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease;
}

.floating-whatsapp:hover .floating-text {
  max-width: 150px;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 80px;
    right: 20px;
    padding: 10px;
  }
  .floating-text { display: none; }
}
