/* ═══════════════════════════════════════════════════════════════
   PixelStudio AI — Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg-base:        #090910;
  --bg-card:        #0f0f1a;
  --bg-card-hover:  #141425;
  --bg-glass:       rgba(255,255,255,0.03);
  --bg-glass-hover: rgba(255,255,255,0.07);

  --purple-deep:    #3b1f8c;
  --purple-mid:     #6c3de0;
  --purple-bright:  #9d6eff;
  --purple-glow:    rgba(108,61,224,0.35);

  --gold-mid:       #f0a500;
  --gold-bright:    #ffd060;
  --gold-glow:      rgba(240,165,0,0.25);

  --text-primary:   #f0f0fc;
  --text-secondary: #9999b8;
  --text-muted:     #55556a;

  --border:         rgba(255,255,255,0.07);
  --border-glow:    rgba(108,61,224,0.4);

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      22px;
  --radius-xl:      32px;

  --shadow-card:    0 8px 40px rgba(0,0,0,0.55);
  --shadow-glow:    0 0 60px rgba(108,61,224,0.3);

  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--purple-mid) var(--bg-base);
  scrollbar-width: thin;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--purple-mid); color: #fff; }

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

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-bright), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hidden { display: none !important; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-bright));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 24px var(--purple-glow);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px var(--purple-glow); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.btn-ghost:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.2); background: var(--bg-glass-hover); }

.btn-large { padding: 18px 36px; font-size: 1.1rem; }

/* ── Section Headers ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--purple-bright);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════ NAV ═════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(9,9,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--purple-bright);
  font-size: 1.5rem;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.logo-ai { color: var(--purple-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--purple-bright);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-bright));
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.25s;
  box-shadow: 0 4px 18px var(--purple-glow);
  white-space: nowrap;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 26px var(--purple-glow); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ══════════════════════════════════════════ HERO ════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: glow-drift 8s ease-in-out infinite alternate;
}
.glow-1 { width: 600px; height: 600px; background: rgba(60,20,140,0.4); top: -100px; left: -200px; }
.glow-2 { width: 400px; height: 400px; background: rgba(108,61,224,0.25); top: 200px; right: -100px; animation-delay: -3s; }
.glow-3 { width: 300px; height: 300px; background: rgba(240,165,0,0.12); bottom: 100px; left: 40%; animation-delay: -6s; }
@keyframes glow-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.1); }
}

#particles { position: absolute; inset: 0; }

.hero-content { display: flex; flex-direction: column; gap: 28px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(108,61,224,0.12);
  border: 1px solid rgba(108,61,224,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-bright);
  width: fit-content;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text-primary); }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}
.stat-unit { font-size: 1rem; font-weight: 600; color: var(--purple-bright); margin-left: 2px; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Before/After Card ──────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.before-after-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  background: var(--bg-card);
  width: 100%;
  max-width: 480px;
}

.ba-label {
  position: absolute;
  top: 16px;
  z-index: 10;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 50px;
}
.ba-before { left: 16px; background: rgba(0,0,0,0.6); color: var(--text-secondary); border: 1px solid var(--border); }
.ba-after  { right: 16px; background: rgba(108,61,224,0.3); color: var(--purple-bright); border: 1px solid rgba(108,61,224,0.4); }

.ba-slider-container {
  position: relative;
  height: 380px;
  cursor: ew-resize;
  user-select: none;
}
.ba-img { position: absolute; inset: 0; overflow: hidden; }
.ba-img-after { clip-path: inset(0 50% 0 0); }

.ba-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  text-align: center;
}
.before-placeholder { background: linear-gradient(135deg, #1a1a2e, #16213e); color: var(--text-muted); }
.after-placeholder  { background: linear-gradient(135deg, #1e0a4e, #2d1b69); color: var(--purple-bright); }
.ba-person-icon { font-size: 3rem; }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--purple-bright);
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 20px var(--purple-glow);
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40px; height: 40px;
  background: var(--purple-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--purple-glow);
}
.ba-handle svg { width: 18px; height: 18px; color: #fff; }

.ba-style-badge {
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--purple-bright);
  background: rgba(108,61,224,0.1);
  text-align: center;
  border-top: 1px solid var(--border-glow);
}

/* ══════════════════════════════════════ COMO FUNCIONA ════════════ */
.como-funciona {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(108,61,224,0.04), transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.step-card {
  background: var(--bg-card);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
}
.step-card:hover { background: var(--bg-card-hover); }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(108,61,224,0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.step-card:hover .step-num { color: rgba(108,61,224,0.25); }
.step-icon { font-size: 2.2rem; margin-bottom: 16px; }
.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }

/* ══════════════════════════════════════════ ESTILOS ═════════════ */
.estilos { padding: 100px 0; }

.styles-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple-mid);
  color: #fff;
  border-color: var(--purple-mid);
  box-shadow: 0 4px 18px var(--purple-glow);
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.style-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.style-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(108,61,224,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.style-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: 0 12px 36px var(--purple-glow); }
.style-card:hover::before { opacity: 1; }
.style-card.selected { border-color: var(--purple-bright); box-shadow: 0 0 0 2px var(--purple-bright), 0 12px 36px var(--purple-glow); }
.style-card.hidden-card { display: none; }

.style-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.style-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.style-tag {
  font-size: 0.72rem;
  color: var(--purple-bright);
  background: rgba(108,61,224,0.12);
  padding: 2px 10px;
  border-radius: 50px;
  display: inline-block;
}

/* ══════════════════════════════════════════ UPLOAD ══════════════ */
.upload-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(108,61,224,0.04), transparent);
}

.upload-flow { display: flex; flex-direction: column; gap: 40px; max-width: 720px; margin: 0 auto; }

.upload-zone {
  border: 2px dashed var(--border-glow);
  border-radius: var(--radius-xl);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.upload-zone:hover, .upload-zone.drag-over {
  border-color: var(--purple-bright);
  background: rgba(108,61,224,0.06);
  box-shadow: inset 0 0 40px rgba(108,61,224,0.08);
}
.upload-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 48px;
}
.upload-icon svg { width: 48px; height: 48px; color: var(--purple-bright); margin-bottom: 8px; }
.upload-main-text { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.1rem; }
.upload-sub-text { color: var(--text-secondary); font-size: 0.9rem; }
.upload-link { color: var(--purple-bright); background: none; border: none; cursor: pointer; font-family: inherit; font-size: inherit; text-decoration: underline; text-underline-offset: 2px; }
.upload-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.upload-zone-preview { width: 100%; height: 100%; position: relative; }
.upload-zone-preview img { width: 100%; height: 280px; object-fit: cover; border-radius: calc(var(--radius-xl) - 2px); }
.remove-photo {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.remove-photo:hover { background: rgba(220,20,60,0.8); }

.style-selector-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.style-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.style-selector-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--bg-card);
}
.style-selector-card:hover { border-color: var(--purple-mid); background: rgba(108,61,224,0.08); }
.style-selector-card.selected { border-color: var(--purple-bright); background: rgba(108,61,224,0.15); color: var(--purple-bright); box-shadow: 0 0 0 2px var(--purple-bright); }
.style-selector-card .card-emoji { font-size: 1.5rem; margin-bottom: 4px; }

.generate-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-generate {
  width: 100%;
  max-width: 400px;
  padding: 18px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-bright));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 24px var(--purple-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-generate:disabled {
  background: linear-gradient(135deg, #2a2a3e, #333350);
  box-shadow: none;
  cursor: not-allowed;
  color: var(--text-muted);
}
.btn-generate:not(:disabled):hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px var(--purple-glow); }
.generate-disclaimer { font-size: 0.78rem; color: var(--text-muted); }

.loader-ring {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Result ──────────────────────────────────────────────────── */
.result-section { margin-top: 10px; }
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-glow);
}
.result-imgs {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.result-img-wrap { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.result-img-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.result-img-label-after { color: var(--purple-bright); }
.result-img-wrap img { width: 100%; border-radius: var(--radius-md); aspect-ratio: 3/4; object-fit: cover; }
.result-arrow { font-size: 2rem; color: var(--purple-bright); flex-shrink: 0; }

.result-after-shimmer {
  aspect-ratio: 3/4;
  background: var(--bg-card-hover);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.shimmer-bars { display: flex; flex-direction: column; gap: 10px; width: 80%; }
.shimmer-bar {
  height: 10px;
  background: linear-gradient(90deg, rgba(108,61,224,0.1), rgba(157,110,255,0.3), rgba(108,61,224,0.1));
  background-size: 200% 100%;
  border-radius: 50px;
  animation: shimmer 1.4s ease-in-out infinite;
}
.shimmer-bar:nth-child(2) { width: 70%; animation-delay: 0.2s; }
.shimmer-bar:nth-child(3) { width: 85%; animation-delay: 0.4s; }
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════ PREÇOS ══════════════ */
.precos { padding: 100px 0; }

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  font-size: 0.95rem;
  font-weight: 500;
}
.pricing-toggle { position: relative; display: inline-block; width: 50px; height: 26px; }
.pricing-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 2px; top: 2px;
  background: var(--purple-bright);
  border-radius: 50%;
  transition: 0.3s;
}
.pricing-toggle input:checked + .toggle-slider { background: rgba(108,61,224,0.2); border-color: var(--purple-mid); }
.pricing-toggle input:checked + .toggle-slider::before { transform: translateX(24px); }
.toggle-discount {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.price-card-featured {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 1px var(--purple-mid), 0 20px 60px var(--purple-glow);
  background: linear-gradient(135deg, var(--bg-card), rgba(108,61,224,0.07));
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-bright));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 32px; }
.plan-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-currency { font-size: 1rem; color: var(--text-secondary); }
.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  transition: all 0.4s var(--ease-out);
}
.price-period { font-size: 0.85rem; color: var(--text-secondary); }
.plan-desc { font-size: 0.85rem; color: var(--text-muted); }

.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feat { font-size: 0.9rem; }
.feat-yes { color: var(--text-primary); }
.feat-no { color: var(--text-muted); }

.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: 1px solid var(--border);
}
.btn-plan-primary { background: linear-gradient(135deg, var(--purple-mid), var(--purple-bright)); color: #fff; border-color: transparent; box-shadow: 0 4px 24px var(--purple-glow); }
.btn-plan-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px var(--purple-glow); }
.btn-plan-ghost { color: var(--text-secondary); background: transparent; }
.btn-plan-ghost:hover { color: var(--text-primary); background: var(--bg-glass-hover); border-color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════ DEPOIMENTOS ═════════ */
.depoimentos { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold-mid); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-text::before { content: '"'; color: var(--purple-bright); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════ CTA FINAL ═══════════ */
.cta-final {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,61,224,0.2), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-final p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 36px; }
.cta-guarantee { font-size: 0.8rem; color: var(--text-muted); margin-top: 18px; }

/* ══════════════════════════════════════════ FOOTER ══════════════ */
.footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 220px; }
.footer-brand .logo-icon { font-size: 1.8rem; }
.footer-brand .logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════ RESPONSIVE ══════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-sub { margin: 0 auto; }
  .hero-visual { order: -1; }
  .before-after-card { max-width: 380px; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .nav-links, .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
  .stat-divider { display: none; }
  .result-imgs { flex-direction: column; }
  .result-arrow { transform: rotate(90deg); }
  .footer-links { gap: 24px; }
}

/* ── Scroll Animations ───────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
