:root {
  --bg-dark: #FFFFFF;
  --bg-card: #F8F6FF;

  --primary: #FF2E93;
  --primary-glow: rgba(255, 46, 147, 0.3);

  --secondary: #7C3AED;
  --secondary-glow: rgba(124, 58, 237, 0.3);

  --accent-purple: #9333EA;
  --accent-lilac: #C084FC;

  --text-main: #1A1040;
  --text-muted: #64748B;

  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  --gradient-text: linear-gradient(135deg, #1A1040 0%, #7C3AED 100%);

  --glass-bg: rgba(124, 58, 237, 0.04);
  --glass-border: rgba(139, 92, 246, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(124, 58, 237, 0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: #FFFFFF;
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(160deg, #FDF8FF 0%, #FFFFFF 50%, #F8F4FF 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--glass-border);
}

.btn-outline:hover {
  background: var(--glass-bg);
  border-color: rgba(139, 92, 246, 0.4);
  color: var(--accent-purple);
}

/* ── Background Blobs ── */
.bg-glow-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  animation: float-blob 14s ease-in-out infinite alternate;
}

.blob-1 {
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.35) 0%, rgba(167, 139, 250, 0.15) 60%, transparent 100%);
}

.blob-2 {
  top: 30%;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, rgba(124, 58, 237, 0.08) 60%, transparent 100%);
  animation-delay: -7s;
}

.blob-3 {
  bottom: 5%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(216, 180, 254, 0.3) 0%, rgba(192, 132, 252, 0.1) 60%, transparent 100%);
  animation-delay: -3s;
}

.blob-4 {
  top: 60%;
  left: 40%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 46, 147, 0.1) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes float-blob {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 30px) scale(0.97); }
  100% { transform: translate(50px, 50px) scale(1.08); }
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(139, 92, 246, 0.12);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.08);
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-purple);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 50px;
  color: var(--accent-purple);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.user-avatars {
  display: flex;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.avatar:first-child { margin-left: 0; }

.avatar-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.avatar-text strong { color: var(--text-main); }

/* ── Mockup (hero right) – mantém visual escuro ── */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 600px;
  transform: rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  animation: float-mockup 6s ease-in-out infinite alternate;
}

@keyframes float-mockup {
  0%   { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
  100% { transform: rotateY(-8deg) rotateX(3deg) translateY(-20px); }
}

.mockup-card {
  position: absolute;
  background: #13131A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(139,92,246,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  color: white;
}

.mockup-main {
  top: 50px;
  right: 0;
  width: 380px;
  height: auto;
  min-height: 360px;
  overflow: hidden;
  z-index: 2;
}

.mockup-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mockup-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.mockup-chart-area {
  height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.mockup-chart-path {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mockup-stat-row {
  display: flex;
  gap: 16px;
}

.mockup-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 12px;
}

.mockup-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.mockup-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-float-1 {
  bottom: 0;
  left: -40px;
  width: 260px;
  z-index: 3;
  transform: translateZ(50px);
}

.mockup-float-2 {
  top: -20px;
  left: 20px;
  width: 220px;
  z-index: 1;
  transform: translateZ(-30px);
}

.balance-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.balance-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin: 8px 0;
  color: white;
}

.trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #10B981;
  background: rgba(16, 185, 129, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
}

/* Transações dentro do mockup escuro */
.tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.tx-row:last-child { border-bottom: none; }
.tx-left { display: flex; align-items: center; gap: 12px; }
.tx-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.tx-name { font-size: 0.88rem; font-weight: 600; color: white; }
.tx-date { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.tx-value { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; }
.tx-neg { color: #F87171; }
.tx-pos { color: #34D399; }

/* ── Glass Features Bar ── */
.features-bar {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.glass-bar {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
}

.feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Sections ── */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.section-tag {
  color: var(--accent-purple);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Grid Cards ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: white;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.06);
  transform-style: preserve-3d;
  will-change: transform;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(147,51,234,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 28px 60px rgba(124, 58, 237, 0.18);
}

.value-card:hover::before { opacity: 1; }
.value-card:hover::after  { opacity: 1; }

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(147, 51, 234, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-purple);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ── Stats Strip ── */
.stats-strip {
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, rgba(192,132,252,0.06) 100%);
  border-top: 1px solid rgba(139,92,246,0.1);
  border-bottom: 1px solid rgba(139,92,246,0.1);
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Features Section (splits) ── */
.features-section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.features-tabs { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.ftab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  border: 1px solid var(--glass-border); color: var(--text-muted);
  background: transparent; transition: var(--transition);
}
.ftab.active, .ftab:hover {
  background: rgba(147,51,234,0.08); border-color: rgba(147,51,234,0.3);
  color: var(--accent-purple);
}
.ftab i { width: 16px; height: 16px; }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-split:last-child { margin-bottom: 0; }
.feature-split.flip { direction: rtl; }
.feature-split.flip > * { direction: ltr; }

.feature-copy .label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.label-blue  { background: rgba(124,58,237,0.08); color: var(--secondary); border: 1px solid rgba(124,58,237,0.2); }
.label-pink  { background: rgba(255,46,147,0.08); color: var(--primary); border: 1px solid rgba(255,46,147,0.2); }
.label-purple{ background: rgba(147,51,234,0.08); color: var(--accent-purple); border: 1px solid rgba(147,51,234,0.2); }
.label-green { background: rgba(16,185,129,0.08); color: #10B981; border: 1px solid rgba(16,185,129,0.2); }

.feature-copy h2 { font-size: 2.5rem; margin-bottom: 16px; color: var(--text-main); }
.feature-copy p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-size: 1rem; }

.feature-bullets { display: flex; flex-direction: column; gap: 14px; }
.fbullet { display: flex; align-items: flex-start; gap: 12px; }
.fbullet-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(124,58,237,0.08); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.fbullet-icon.pink   { background: rgba(255,46,147,0.08); color: var(--primary); }
.fbullet-icon.purple { background: rgba(147,51,234,0.08); color: var(--accent-purple); }
.fbullet-icon.green  { background: rgba(16,185,129,0.08); color: #10B981; }
.fbullet strong { display: block; font-size: 0.95rem; margin-bottom: 2px; color: var(--text-main); }
.fbullet span   { font-size: 0.85rem; color: var(--text-muted); }

/* ── UI Cards (feature mockups) – mantém escuro ── */
.ui-card {
  background: #13131A;
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(139,92,246,0.15);
  color: white;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

.ui-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(192,132,252,0.5);
  box-shadow: 0 36px 80px rgba(0,0,0,0.22), 0 0 40px rgba(139,92,246,0.18), 0 0 0 1px rgba(192,132,252,0.3);
}

@keyframes card-glow-pulse {
  0%, 100% { box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 0 20px rgba(139,92,246,0.12); }
  50%       { box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 0 40px rgba(192,132,252,0.22); }
}

.ui-card-title {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
  color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Budget bars */
.budget-row { margin-bottom: 18px; }
.budget-row:last-child { margin-bottom: 0; }
.budget-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.budget-name { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: white; }
.budget-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.budget-values { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.budget-values strong { color: white; }
.bbar { height: 8px; background: rgba(255,255,255,0.06); border-radius: 50px; overflow: hidden; }
.bbar-fill { height: 100%; border-radius: 50px; transition: width 1.2s ease; }
.bbar-ok   { background: linear-gradient(90deg, #10B981, #34D399); }
.bbar-warn { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.bbar-over { background: linear-gradient(90deg, #EF4444, #F87171); }

.budget-summary {
  display: flex; gap: 16px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06);
}
.bsum { flex: 1; background: rgba(255,255,255,0.03); border-radius: 12px; padding: 14px; text-align: center; }
.bsum-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.bsum-val { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; }

/* Goals */
.goal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 20px; margin-bottom: 14px;
}
.goal-card:last-child { margin-bottom: 0; }
.goal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.goal-emoji { font-size: 1.5rem; margin-right: 10px; }
.goal-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; color: white; }
.goal-date { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.goal-pct { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; }
.goal-bar { height: 8px; background: rgba(255,255,255,0.06); border-radius: 50px; overflow: hidden; margin-bottom: 8px; }
.goal-bar-fill { height: 100%; border-radius: 50px; background: var(--gradient-primary); }
.goal-amounts { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.goal-amounts strong { color: white; }

/* Comparison Chart */
.comp-chart { display: flex; align-items: flex-end; gap: 8px; height: 160px; padding: 0 4px; }
.comp-month { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.comp-bars { display: flex; gap: 4px; align-items: flex-end; width: 100%; justify-content: center; }
.comp-bar { width: 14px; border-radius: 4px 4px 0 0; transition: opacity 0.2s; }
.comp-bar:hover { opacity: 0.8; }
.bar-receita { background: #10B981; }
.bar-despesa { background: var(--primary); }
.comp-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 6px; }
.comp-legend { display: flex; gap: 20px; margin-top: 16px; }
.comp-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.comp-legend-dot { width: 10px; height: 10px; border-radius: 3px; }
.comp-highlight { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); border-radius: 10px; padding: 12px 16px; margin-top: 14px; display: flex; justify-content: space-between; align-items: center; }
.comp-highlight span { font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.comp-highlight strong { color: #10B981; font-family: 'Outfit', sans-serif; font-size: 1rem; }

/* Reports / Categories */
.cat-list { display: flex; flex-direction: column; gap: 12px; }
.cat-row { display: flex; align-items: center; gap: 12px; }
.cat-icon-box { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.cat-info { flex: 1; }
.cat-name-row { display: flex; justify-content: space-between; font-size: 0.88rem; font-weight: 600; margin-bottom: 5px; color: white; }
.cat-bar { height: 5px; background: rgba(255,255,255,0.06); border-radius: 50px; overflow: hidden; }
.cat-bar-fill { height: 100%; border-radius: 50px; }
.cat-pct { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: white;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.tcard::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(192,132,252,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tcard:hover {
  transform: translateY(-10px) scale(1.025);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 24px 56px rgba(124, 58, 237, 0.15);
}

.tcard:hover::after { opacity: 1; }

.tcard-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.tcard-quote { color: var(--text-muted); line-height: 1.6; font-size: 0.93rem; margin-bottom: 20px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar { width: 40px; height: 40px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid rgba(139,92,246,0.2); }
.tcard-name { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }
.tcard-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
  overflow: visible;
}

.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(192,132,252,0.12) 0%, transparent 70%);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(124, 58, 237, 0.16);
  border-color: rgba(139,92,246,0.3);
}

.pricing-card:hover::after { opacity: 1; transform: scale(1.5); }

.pricing-card.premium {
  background: #13131A;
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 0 8px 48px rgba(124, 58, 237, 0.28), 0 0 0 1px rgba(192,132,252,0.2);
  color: white;
}

.pricing-card.premium .price-title { color: white; }
.pricing-card.premium .price-value { color: white; }
.pricing-card.premium .price-currency { color: rgba(255,255,255,0.6); }
.pricing-card.premium .price-period { color: rgba(255,255,255,0.5); }
.pricing-card.premium .price-desc { color: rgba(255,255,255,0.5); border-bottom-color: rgba(255,255,255,0.08); }
.pricing-card.premium .price-feature { color: rgba(255,255,255,0.75); }
.pricing-card.premium .price-feature i { color: #A78BFA; }
.pricing-card.premium .price-feature strong { color: white; }
.pricing-card.premium .popular-badge {
  background: linear-gradient(90deg, #FF2E93, #9333EA);
  box-shadow: 0 4px 20px rgba(255,46,147,0.4);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.price-title { font-size: 1.5rem; margin-bottom: 16px; color: var(--text-main); }

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--text-main);
}

.price-currency { font-size: 1.5rem; margin-top: 8px; color: var(--text-muted); }
.price-period   { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

.price-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(139,92,246,0.1);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex: 1;
}

.price-feature { display: flex; align-items: center; gap: 12px; color: var(--text-muted); }
.price-feature i { color: var(--accent-purple); }
.price-feature strong { color: var(--text-main); }

/* ── CTA Section ── */
.cta-section { padding: 120px 0; text-align: center; position: relative; z-index: 1; }

.cta-box {
  background: linear-gradient(135deg, rgba(147,51,234,0.07) 0%, rgba(192,132,252,0.07) 50%, rgba(255,46,147,0.05) 100%);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,132,252,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,46,147,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 { font-size: 3rem; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p  { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; }

/* ── Footer ── */
footer {
  border-top: 1px solid rgba(139,92,246,0.1);
  padding: 80px 0 40px;
  margin-top: 80px;
  background: linear-gradient(180deg, #FAF8FF 0%, white 100%);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-purple);
}

.footer-bottom {
  border-top: 1px solid rgba(139,92,246,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Logo Creative Animations ── */
@keyframes logo-drift {
  0%   { transform: rotate(-12deg) translateY(0px) scale(1); }
  50%  { transform: rotate(-10deg) translateY(-14px) scale(1.03); }
  100% { transform: rotate(-13deg) translateY(-6px) scale(0.98); }
}

@keyframes logo-pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(147,51,234,0.35)); }
  50%       { filter: drop-shadow(0 0 40px rgba(192,132,252,0.55)); }
}

@keyframes logo-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Scroll Animations ── */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim.from-left  { transform: translateX(-40px); }
.anim.from-right { transform: translateX(40px); }
.anim.scale-up   { transform: scale(0.92) translateY(20px); }

.anim.visible {
  opacity: 1;
  transform: none;
}

.anim[data-delay="1"] { transition-delay: 0.1s; }
.anim[data-delay="2"] { transition-delay: 0.2s; }
.anim[data-delay="3"] { transition-delay: 0.3s; }
.anim[data-delay="4"] { transition-delay: 0.4s; }
.anim[data-delay="5"] { transition-delay: 0.5s; }
.anim[data-delay="6"] { transition-delay: 0.6s; }

/* ── Para Quem / showcase ── */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }

.showcase-content { max-width: 500px; }

.showcase-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-item { display: flex; gap: 16px; }
.showcase-item-icon { width: 24px; height: 24px; color: var(--accent-purple); flex-shrink: 0; }

.showcase-visual {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139,92,246,0.15);
  background: white;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(124,58,237,0.1);
}

.showcase-visual::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, var(--primary), var(--accent-purple));
  z-index: -1;
  border-radius: calc(var(--radius-lg) + 2px);
  opacity: 0.15;
}

.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dash-item { display: flex; align-items: center; gap: 12px; }
.dash-icon { width: 40px; height: 40px; background: rgba(147,51,234,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent-purple); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .user-avatars { justify-content: center; }
  .glass-bar { flex-wrap: wrap; gap: 24px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .showcase.reverse { direction: ltr; }
  .feature-split { grid-template-columns: 1fr; gap: 48px; }
  .feature-split.flip { direction: ltr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Hamburger Button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid var(--glass-border);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--glass-bg); border-color: rgba(139,92,246,0.35); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Full-screen Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 100px 32px 48px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.mobile-menu .mobile-nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 14px 28px;
  border-radius: 14px;
  transition: var(--transition);
  text-align: center;
  width: 100%;
  display: block;
}
.mobile-menu .mobile-nav-link:active,
.mobile-menu .mobile-nav-link:hover {
  color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.07);
}
.mobile-menu-divider {
  width: 100%;
  height: 1px;
  background: rgba(139, 92, 246, 0.1);
  margin: 12px 0;
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.mobile-menu-actions .btn { width: 100%; padding: 14px; font-size: 1rem; }

@media (max-width: 768px) {
  /* ── Navbar ── */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { padding: 12px 0; }
  /* Reduce logo inline height via CSS override */
  .navbar .logo img { height: 46px !important; }
  /* Hide secondary button; keep primary CTA compact */
  .nav-actions .btn-outline { display: none; }
  .nav-actions .btn-primary { padding: 9px 16px; font-size: 0.88rem; }

  /* Remove tap highlight flash on all tappable elements */
  *, a, button { -webkit-tap-highlight-color: transparent; }

  /* ── Hero ── */
  .hero { padding: 96px 0 48px; }
  .hero-title { font-size: 2.1rem; }
  .hero-desc { font-size: 0.98rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-visual { display: none; }

  /* ── Sections ── */
  .section { padding: 72px 0; }
  .section-title { font-size: 2rem; }
  .features-section { padding: 72px 0; }

  /* ── Glass bar: 2×2 grid ── */
  .glass-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px;
  }
  .feature-item { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* ── Cards ── */
  .grid-3 { grid-template-columns: 1fr; }
  .value-card { padding: 28px 22px; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-num { font-size: 2.1rem; }

  /* ── Feature sections ── */
  .feature-copy h2 { font-size: 1.75rem; }
  .features-tabs { gap: 8px; }
  .ftab { padding: 8px 14px; font-size: 0.82rem; }

  /* ── UI mockup cards ── */
  .ui-card { padding: 20px 16px; }
  /* Budget summary: tighten for mobile */
  .budget-summary { gap: 10px; }
  .bsum { padding: 10px 8px; }
  .bsum-val { font-size: 0.9rem; }
  .bsum-label { font-size: 0.68rem; }

  /* ── Pricing ── */
  .pricing-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-card { padding: 36px 22px; overflow: hidden; }

  /* ── CTA ── */
  .cta-box { padding: 48px 20px; }
  .cta-box h2 { font-size: 1.85rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer .footer-col img { height: 56px !important; }

  /* ── Container padding ── */
  .container { padding: 0 16px; }
}

/* ── Very small phones (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.75rem; }
  .feature-copy h2 { font-size: 1.55rem; }
  .cta-box h2 { font-size: 1.6rem; }
  .stat-num { font-size: 1.85rem; }
  .pricing-card { padding: 28px 16px; }
  .budget-summary { flex-wrap: wrap; }
  .bsum { min-width: calc(50% - 8px); }
  .ui-card { padding: 16px 14px; }
}

/* ── Disable sticky hover transforms on touch devices ── */
@media (hover: none) {
  .value-card:hover {
    transform: none;
    box-shadow: 0 4px 24px rgba(124,58,237,0.06);
    border-color: rgba(139,92,246,0.14);
  }
  .tcard:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(124,58,237,0.06);
    border-color: rgba(139,92,246,0.12);
  }
  .ui-card:hover {
    transform: none;
    border-color: rgba(139,92,246,0.25);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(139,92,246,0.15);
  }
  .pricing-card:hover {
    transform: none;
    border-color: rgba(139,92,246,0.14);
    box-shadow: 0 4px 24px rgba(124,58,237,0.07);
  }
  .pricing-card.premium:hover {
    transform: none;
    border-color: rgba(192,132,252,0.4);
    box-shadow: 0 8px 48px rgba(124,58,237,0.28), 0 0 0 1px rgba(192,132,252,0.2);
  }
  .btn-primary:hover { transform: none; filter: none; }
}
