/* ============================================
   CardLink — Design System & Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
  /* Colors — Light Mode (SaaS/Stripe/Linear style) */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-surface: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-hover: rgba(255, 255, 255, 0.9);

  /* Gradient Colors */
  --purple: #7c3aed;
  --blue: #2563eb;
  --cyan: #0891b2;
  --pink: #db2777;
  --indigo: #4f46e5;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--purple), var(--blue), var(--cyan));
  --gradient-accent: linear-gradient(135deg, var(--pink), var(--purple));
  --gradient-subtle: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(37, 99, 235, 0.06));

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-gradient: linear-gradient(135deg, #7c3aed, #2563eb, #0891b2);

  /* Borders */
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-glow: rgba(124, 58, 237, 0.25);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.08);
  --shadow-glow-strong: 0 0 40px rgba(124, 58, 237, 0.12);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Card Themes */
[data-theme="midnight"] {
  --theme-gradient: linear-gradient(135deg, #4c1d95, #1e1b4b, #0c4a6e);
  --theme-accent: #8b5cf6;
  --theme-accent-rgb: 139, 92, 246;
  --theme-bg: #0f0a2e;
}

[data-theme="ocean"] {
  --theme-gradient: linear-gradient(135deg, #fff4c7, #efbd55, #c98516);
  --theme-accent: #a56408;
  --theme-accent-rgb: 165, 100, 8;
  --theme-bg: #fffaf0;
  --text-primary: #382612;
  --text-secondary: #6c4d27;
  --text-muted: #8d7049;
  --bg-card: #fff3d6;
  --bg-surface: #fffaf0;
  --border-subtle: rgba(92, 60, 18, 0.16);
}

[data-theme="sunset"] {
  --theme-gradient: linear-gradient(135deg, #7c2d12, #78350f, #713f12);
  --theme-accent: #f97316;
  --theme-accent-rgb: 249, 115, 22;
  --theme-bg: #1a0d05;
}

[data-theme="forest"] {
  --theme-gradient: linear-gradient(135deg, #091525, #172b45, #9a7642);
  --theme-accent: #c6a15b;
  --theme-accent-rgb: 198, 161, 91;
  --theme-bg: #0a1422;
  --text-primary: #f5f0e6;
  --text-secondary: #c8c1b3;
  --text-muted: #918b80;
  --bg-card: #101f30;
  --bg-surface: #0a1422;
  --border-subtle: rgba(221, 194, 140, 0.17);
}

[data-theme="rose"] {
  --theme-gradient: linear-gradient(135deg, #831843, #701a3e, #4a1942);
  --theme-accent: #ec4899;
  --theme-accent-rgb: 236, 72, 153;
  --theme-bg: #1a070f;
}

[data-theme="monochrome"] {
  --theme-gradient: linear-gradient(135deg, #1e293b, #1e293b, #334155);
  --theme-accent: #e2e8f0;
  --theme-accent-rgb: 226, 232, 240;
  --theme-bg: #0f172a;
}

/* Theme Integration Rules */
.card-container {
  background: var(--theme-bg, #0f0a2e);
  border-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.card-cover {
  background: var(--theme-gradient, linear-gradient(135deg, #4c1d95, #1e1b4b, #0c4a6e)) !important;
}

.card-avatar {
  border-color: var(--theme-bg, #0f0a2e) !important;
  color: var(--theme-accent, #8b5cf6) !important;
  box-shadow: 0 0 25px rgba(var(--theme-accent-rgb, 139, 92, 246), 0.35) !important;
}

.card-avatar-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.card-container[data-theme="ocean"] {
  color: var(--text-primary);
  border-color: rgba(92, 60, 18, 0.18);
  box-shadow: 0 24px 65px rgba(92, 60, 18, 0.16);
}

.card-container[data-theme="ocean"] .card-avatar-icon {
  background: rgba(255,255,255,0.5) !important;
  border-color: rgba(92,60,18,0.14) !important;
}

.card-container[data-theme="forest"] {
  color: var(--text-primary);
  border-color: rgba(198,161,91,0.28);
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.48);
}

.card-container[data-theme="forest"] .card-cover,
.card-container[data-theme="forest"] .card-contact-btn,
.card-container[data-theme="forest"] .product-card,
.card-container[data-theme="forest"] .testimonial-card {
  border-radius: 6px;
}

.card-container[data-theme="forest"] .card-name,
.card-container[data-theme="forest"] .site-block-title {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
  border: none;
}

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

/* ============================================
   Animated Background
   ============================================ */
.bg-animated {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-animated .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-animated .orb:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-animated .orb:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--blue);
  top: 50%;
  right: -10%;
  animation-delay: -7s;
}

.bg-animated .orb:nth-child(3) {
  width: 350px;
  height: 350px;
  background: var(--cyan);
  bottom: -10%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -80px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.9); }
  75% { transform: translate(80px, 30px) scale(1.05); }
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.view {
  display: none;
  position: relative;
  z-index: 1;
}

.view.active {
  display: block;
}

.text-gradient {
  color: var(--purple, #7c3aed);
  background: none !important;
  -webkit-text-fill-color: var(--purple, #7c3aed) !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  background: rgba(6, 6, 14, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-spring);
}

.navbar-brand:hover .logo-icon {
  transform: rotate(-10deg) scale(1.1);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(139, 92, 246, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

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

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-group {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-group:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   LANDING PAGE — Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) 0;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-mockup {
  margin-top: var(--space-4xl);
  position: relative;
  perspective: 1000px;
}

.hero-mockup-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow-strong);
  max-width: 400px;
  margin: 0 auto;
  animation: floatCard 6s ease-in-out infinite;
  transform: rotateY(-5deg) rotateX(5deg);
}

@keyframes floatCard {
  0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(5deg) rotateX(-5deg) translateY(-20px); }
}


.showcase-grid {
  display:flex;
  gap:35px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:stretch;
  width:100%;
}

.showcase-media-col {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  width:100%;
}

.showcase-phone-col { max-width:250px; }
.showcase-video-col { max-width:450px; }

.phone-demo-shell {
  position:relative;
  width:100%;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.30);
  border:6px solid #1e293b;
  background:#0f172a;
  transition:transform 0.3s ease;
}

.video-demo-shell {
  position:relative;
  width:100%;
  border-radius:22px;
  overflow:hidden;
  padding:10px;
  background:linear-gradient(135deg, rgba(124,58,237,0.18), rgba(37,99,235,0.18));
  border:1px solid rgba(139,92,246,0.30);
  box-shadow:0 24px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transition:transform 0.3s ease;
}

.video-demo-shell::before {
  content:'';
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
}

.video-shell-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:42px;
  padding:0 12px 10px;
}

.video-shell-dots {
  display:flex;
  gap:6px;
  flex-shrink:0;
}

.video-shell-dots span {
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,0.22);
}

.video-shell-dots span:nth-child(1) { background:#fb7185; }
.video-shell-dots span:nth-child(2) { background:#fbbf24; }
.video-shell-dots span:nth-child(3) { background:#34d399; }

.video-shell-title {
  flex:1;
  text-align:center;
  font-size:0.82rem;
  font-weight:700;
  color:var(--text-secondary);
  letter-spacing:0.02em;
}

.video-shell-badge {
  flex-shrink:0;
  border-radius:999px;
  padding:5px 9px;
  font-size:0.68rem;
  font-weight:800;
  letter-spacing:0.05em;
  color:#ffffff;
  background:linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow:0 8px 20px rgba(124,58,237,0.28);
}

.video-frame-wrap {
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:#020617;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
}

.demo-video {
  width:100%;
  display:block;
  outline:none;
  background:radial-gradient(circle at top, rgba(124,58,237,0.15), transparent 55%), #020617;
}

.showcase-caption {
  font-size:0.8rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  text-align:center;
}

.showcase-caption-phone { color:var(--text-secondary); }
.showcase-caption-video { color:var(--purple); }

.landing-carousel {
  position: relative;
  width: min(100%, 960px);
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  background: #0f0d1a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.landing-carousel-track {
  position: relative;
  aspect-ratio: 3 / 2;
}

.landing-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.landing-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.landing-carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.landing-carousel-copy {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(22px, 4vw, 42px) clamp(24px, 5vw, 54px);
  text-align: left;
  color: #fff;
  background: linear-gradient(transparent, rgba(2, 6, 23, 0.94));
}

.landing-carousel-copy h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
}

.landing-carousel-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.85rem, 1.7vw, 1rem);
}

.landing-carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 13, 26, 0.72);
  backdrop-filter: blur(10px);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.landing-carousel-prev { left: 16px; }
.landing-carousel-next { right: 16px; }
.landing-carousel-arrow:hover,
.landing-carousel-arrow:focus-visible { background: var(--purple); outline: 2px solid #fff; outline-offset: 2px; }

.landing-carousel-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 14px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.landing-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.landing-carousel-dots button.is-active { width: 28px; background: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .landing-carousel-slide { transition: none; }
}

/* ============================================
   LANDING PAGE — Features
   ============================================ */
.features {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  background: var(--gradient-subtle);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================
   LANDING PAGE — How it Works
   ============================================ */
.how-it-works {
  padding: var(--space-4xl) 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============================================
   LANDING PAGE — CTA
   ============================================ */
.cta-section {
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta-box {
  background: var(--gradient-subtle);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08), transparent 50%);
  animation: rotateBg 15s linear infinite;
}

@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ============================================
   BUILDER PAGE
   ============================================ */
.builder-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-xl);
  min-height: 100vh;
  padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
}

.builder-form-panel {
  padding: var(--space-lg);
  overflow-y: auto;
  max-height: calc(100vh - 100px);
  scrollbar-width: thin;
  scrollbar-color: var(--border-subtle) transparent;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.builder-form-panel::-webkit-scrollbar {
  width: 6px;
}

.builder-form-panel::-webkit-scrollbar-track {
  background: transparent;
}

.builder-form-panel::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 3px;
}

.builder-preview-panel {
  position: sticky;
  top: 100px;
  height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.builder-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.builder-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* Form Sections */
.form-section {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: var(--transition-normal);
}

.form-section:hover {
  border-color: var(--border-glow);
}

.form-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.form-section-title .icon {
  font-size: 1.2rem;
}

/* Form Groups */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

/* Assistente de conteúdo textual */
.assistant-workspace { border: 1.5px solid var(--accent); border-radius: var(--radius-lg); padding: 22px; margin-bottom: var(--space-xl); background: linear-gradient(135deg, rgba(139,92,246,0.11), rgba(6,182,212,0.08)); }
.assistant-intro { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.assistant-examples { display: grid; gap: 5px; margin-bottom: 18px; padding: 13px 15px; border: 1px solid var(--border-subtle); border-radius: 12px; background: var(--bg-surface); color: var(--text-secondary); font-size: 0.78rem; line-height: 1.45; }
.assistant-examples strong { color: var(--text-primary); }
.assistant-examples span::before { content: '• '; color: var(--accent); }
.assistant-request { min-height: 180px; resize: vertical; }
.assistant-request-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.assistant-counter { margin-left: auto; text-align: right; color: var(--text-muted); font-size: 0.72rem; }
.assistant-paste-help { display: block; margin-top: 7px; color: var(--text-muted); font-size: 0.72rem; line-height: 1.4; }
.assistant-workspace > .btn { width: 100%; justify-content: center; }
.assistant-response-panel { margin-top: 20px; padding: 16px; border: 1px solid rgba(34,197,94,0.28); border-radius: 14px; background: rgba(34,197,94,0.06); }
.assistant-response-panel[hidden] { display: none; }
.assistant-response-header { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.assistant-response-header strong { color: var(--text-primary); }
.assistant-response-header span { color: var(--text-muted); font-size: 0.72rem; }
.assistant-response { min-height: 210px; color: var(--text-primary); background: var(--bg-card); cursor: text; resize: vertical; }
.assistant-response-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.assistant-safety { display: block; margin-top: 13px; color: var(--text-muted); font-size: 0.73rem; line-height: 1.5; }
@media (max-width: 620px) { .assistant-workspace { padding: 16px; } .assistant-request-toolbar { align-items: stretch; flex-direction: column; } .assistant-request-toolbar .btn { width: 100%; justify-content: center; } .assistant-counter { margin-left: 0; text-align: right; } .assistant-response-header { align-items: flex-start; flex-direction: column; } .assistant-response-actions .btn { width: 100%; justify-content: center; } }

/* Theme Selector */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.theme-swatch {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.theme-swatch::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.theme-swatch.active {
  border-color: white;
  transform: scale(1.1);
}

.theme-swatch.active::after {
  opacity: 1;
}

.theme-swatch:hover {
  transform: scale(1.05);
}

.theme-swatch[data-theme="midnight"] {
  background: linear-gradient(135deg, #4c1d95, #1e1b4b);
}
.theme-swatch[data-theme="ocean"] {
  background: linear-gradient(135deg, #fff4c7, #e6aa36);
}
.theme-swatch[data-theme="sunset"] {
  background: linear-gradient(135deg, #7c2d12, #713f12);
}
.theme-swatch[data-theme="forest"] {
  background: linear-gradient(135deg, #091525 0 58%, #c6a15b 58% 72%, #f5f0e6 72%);
}
.theme-swatch[data-theme="rose"] {
  background: linear-gradient(135deg, #831843, #4a1942);
}
.theme-swatch[data-theme="monochrome"] {
  background: linear-gradient(135deg, #1e293b, #334155);
}

.theme-label {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Generate Button */
.generate-section {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-md);
}

.generate-section .btn {
  flex: 1;
}

/* ============================================
   CARD VIEW — Preview & Generated Card
   ============================================ */
.card-fullpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-primary);
}

.card-wrapper {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
}

/* Desktop: mostra card centralizado como phone frame */
@media (min-width: 768px) {
  .card-fullpage {
    background: radial-gradient(ellipse at 30% 20%, rgba(139,92,246,0.08), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(59,130,246,0.06), transparent 60%),
                var(--bg-primary);
    padding: 40px 24px;
    justify-content: flex-start;
  }

  .card-wrapper {
    max-width: 440px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06),
                0 40px 100px rgba(0,0,0,0.6),
                0 0 80px rgba(139,92,246,0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .card-share-bar {
    max-width: 440px;
    width: 100%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .card-qr {
    margin-top: 24px;
  }
}

.card-container {
  background: rgba(5, 5, 8, 0.98);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 215, 0, 0.12);
  position: relative;
}

.card-body {
  padding: var(--space-md) var(--space-xl) var(--space-xl);
  text-align: center;
  background: rgba(10, 10, 12, 0.96);
}

/* Card Header / Cover */
.card-cover {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.card-cover .card-cover-brand {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.card-cover-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.card-cover-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Card Avatar */
.card-avatar-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.card-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--theme-bg, #0f0a2e);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--theme-accent, var(--purple));
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.card-avatar-bg {
  display: none;
}

.card-avatar-icon {
  position: absolute;
  top: 12px;
  right: calc(50% - 50px);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f8fafc;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 3;
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Body */
.card-body {
  padding: var(--space-md) var(--space-xl) var(--space-xl);
  text-align: center;
}

.card-greeting {
  font-size: 0.9rem;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 2px;
}

.card-business {
  font-size: 0.95rem;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 2px;
}

.card-title {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-md);
}

.card-greeting {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.card-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.card-message {
  font-size: 0.95rem;
  color: #f3f4f6;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 320px;
  margin: 0 auto var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
}

/* Card Contact Buttons */
.card-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.card-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: var(--space-sm) var(--space-xs);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,0,0.18);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.78rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
}

.card-contact-btn:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  border-color: rgba(255,215,0,0.35);
}

.card-contact-btn .icon {
  font-size: 1.3rem;
}

.card-contact-btn span {
  color: var(--text-secondary);
}

/* Card Social Links */
.card-social-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.card-social-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
}

.card-social-btn:hover {
  background: rgba(var(--theme-accent-rgb, 139, 92, 246), 0.2);
  border-color: rgba(var(--theme-accent-rgb, 139, 92, 246), 0.4);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* Card WhatsApp Buttons */
.card-whatsapp-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.card-whatsapp-section .btn {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: var(--radius-full);
  padding: 0.95rem 1rem;
  font-weight: 700;
}

.card-whatsapp-section .btn:hover {
  opacity: 0.95;
}

/* Card Divider */
.card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: var(--space-lg) 0;
}

/* Card Contact Form */
.card-form {
  text-align: left;
}

.card-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

.card-form .form-input {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  margin-bottom: var(--space-sm);
}

.card-form .form-input:focus {
  border-color: rgba(var(--theme-accent-rgb, 139, 92, 246), 0.5);
  box-shadow: 0 0 0 3px rgba(var(--theme-accent-rgb, 139, 92, 246), 0.1);
}

.card-form .btn {
  width: 100%;
  margin-top: var(--space-sm);
}

/* Card Address */
.card-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  margin-bottom: var(--space-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
}

.card-address:hover {
  color: #fbbf24;
}

/* Card Footer */
.card-footer {
  text-align: center;
  padding: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.62);
}

.card-footer a {
  color: #fbbf24;
}

.card-footer a {
  color: var(--theme-accent, var(--purple));
  font-weight: 600;
}

/* ============================================
   CARD VIEW — Full Page
   ============================================ */
.card-fullpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--theme-bg, #0f0a2e);
}

.card-fullpage .card-container {
  animation: fadeInUp 0.6s ease forwards;
}

.card-share-bar {
  margin-top: var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.card-share-bar .btn {
  font-size: 0.85rem;
}

.card-qr {
  background: white;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.card-qr img {
  width: 140px;
  height: 140px;
}

/* ============================================
   Preview Scaling
   ============================================ */
.preview-container {
  position: relative;
  width: 310px;
  height: 590px;
  border: 10px solid #1e293b; /* Slate-800 phone shell */
  border-radius: 36px;
  background: #ffffff;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transform-origin: top center;
}

.preview-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 16px;
  background: #1e293b;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
}

.preview-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  order: -1; /* Keep label above phone frame in flex layout */
}

#preview-card {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none; /* Hide scrollbar */
  padding: 16px 0 0 0;
}

#preview-card::-webkit-scrollbar {
  display: none;
}

#preview-card .card-container {
  min-height: 100%;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

/* ============================================
   Toast Notification
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-primary);
  z-index: 1000;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition-spring);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all var(--transition-normal);
  animation: fabPulse 3s ease-in-out infinite;
  text-decoration: none;
  cursor: pointer;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   Form Success State
   ============================================ */
.form-success {
  text-align: center;
  padding: var(--space-xl);
  animation: fadeInUp 0.4s ease;
}

.form-success .check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-md);
}

.form-success h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .builder-layout {
    grid-template-columns: 1fr;
  }

  .builder-preview-panel {
    position: relative;
    top: auto;
    height: auto;
    order: -1;
    padding: var(--space-md);
  }

  .preview-container {
    transform: scale(0.7);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-mockup-card {
    max-width: 300px;
  }

  .showcase-grid {
    gap: 24px;
  }

  .showcase-video-col,
  .showcase-phone-col {
    max-width: 100%;
  }

  .video-shell-header {
    min-height: 38px;
    padding: 0 10px 8px;
  }

  .video-shell-title {
    font-size: 0.75rem;
  }

  .landing-carousel { border-radius: 18px; }
  .landing-carousel-arrow { width: 38px; height: 38px; font-size: 1.65rem; }
  .landing-carousel-prev { left: 8px; }
  .landing-carousel-next { right: 8px; }
  .landing-carousel-copy { padding: 54px 52px 34px; }
  .landing-carousel-copy p { display: none; }
  .landing-carousel-dots { bottom: 10px; }

  .theme-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-share-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar-cta .btn span.hide-mobile {
    display: none;
  }

  .generate-section {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .card-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-body {
    padding: var(--space-md) var(--space-md) var(--space-lg);
  }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer a {
  color: var(--purple);
  font-weight: 600;
}

/* ============================================
   AUTH VIEW
   ============================================ */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  backdrop-filter: blur(20px);
}

.auth-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.auth-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.auth-toggle {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.auth-toggle a {
  color: var(--purple);
  font-weight: 600;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.dash-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
  position: relative;
}

.dash-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.dash-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.dash-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: white;
  flex-shrink: 0;
}

.dash-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.dash-card-slug {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dash-card-stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dash-card-stats span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.dash-card-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ============================================
   CONTACTS VIEW
   ============================================ */
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: var(--transition-normal);
}

.contact-item:hover {
  border-color: var(--border-glow);
}

.contact-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.contact-item-name {
  font-weight: 700;
  font-family: var(--font-display);
}

.contact-item-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-item-details {
  display: flex;
  gap: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.contact-item-message {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-subtle);
}

/* ============================================
   PHOTO UPLOAD
   ============================================ */
.photo-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  background: var(--bg-surface);
  min-height: 120px;
}

.photo-upload-area:hover {
  border-color: var(--purple);
  background: var(--bg-surface-hover);
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--purple, #7c3aed);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ============================================
   DASH CARD FULL (single card)
   ============================================ */
.dash-card-full {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.dash-card-full:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.dash-card-full-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  flex-wrap: wrap;
}

.dash-card-mini-preview {
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.dash-card-actions-bar {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .dash-card-full-header {
    flex-direction: column;
    text-align: center;
  }

  .dash-card-full-header > div:last-child {
    justify-content: center;
  }
}

/* ============================================
   PWA INSTALL BANNER
   ============================================ */
.install-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 400px;
  background: linear-gradient(135deg, rgba(30, 20, 50, 0.97), rgba(20, 15, 35, 0.97));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
}

.install-banner.show {
  bottom: 24px;
}

.install-banner-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.install-banner-icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  flex-shrink: 0;
}

.install-banner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.install-banner-text strong {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.install-banner-text span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.install-banner-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.install-btn-install {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.3s ease;
}

.install-btn-install:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.install-btn-dismiss {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.install-btn-dismiss:hover {
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

/* ============================================
   LANDING PAGE / SITE EXPANDED STYLES
   ============================================ */

/* Botão "Vá para o site" no cartão */
.btn-site-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  margin: 18px 0 10px;
  background: var(--theme-gradient, linear-gradient(135deg, #8b5cf6, #3b82f6));
  color: white !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  border: none;
}

.btn-site-toggle:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
  color: white !important;
}

/* Seção Expandida do Site */
.site-expanded-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  animation: fadeIn 0.4s ease;
}

.site-block-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Vitrine de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.4);
}

.product-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: rgba(0,0,0,0.3);
}

.product-info {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #34d399;
  margin-bottom: 8px;
}

.btn-product-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 10px;
  background: #25d366;
  color: white !important;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-product-order:hover {
  opacity: 0.9;
  color: white !important;
}

/* Galeria de Fotos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.gallery-carousel-compact { position: relative; margin-bottom: 24px; overflow: hidden; border-radius: 14px; background: var(--bg-card); }
.gallery-track-compact { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; touch-action: pan-x pinch-zoom; }
.gallery-track-compact::-webkit-scrollbar { display: none; }
.gallery-slide-compact { flex: 0 0 100%; min-width: 100%; height: 260px; padding: 0; border: 0; background: var(--bg-card); cursor: zoom-in; scroll-snap-align: center; }
.gallery-slide-compact img { width: 100%; height: 100%; object-fit: contain; display: block; }
.gallery-arrow-compact { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); width: 34px; height: 42px; border: 1px solid rgba(255,255,255,0.3); border-radius: 10px; background: rgba(8,15,26,0.68); color: white; font-size: 1.65rem; cursor: pointer; }
.gallery-prev-compact { left: 8px; }
.gallery-next-compact { right: 8px; }
.gallery-dots-compact { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); display: flex; gap: 6px; padding: 6px 9px; border-radius: 999px; background: rgba(8,15,26,0.55); }
.gallery-dot-compact { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.45); }
.gallery-dot-compact.active { width: 18px; border-radius: 999px; background: white; }
.compact-gallery-lightbox { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(2,6,14,0.92); }
.compact-gallery-lightbox.open { display: flex; }
.compact-gallery-lightbox img { max-width: 94vw; max-height: 90vh; object-fit: contain; border-radius: 12px; }
.compact-gallery-lightbox button { position: fixed; top: 18px; right: 20px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; background: rgba(0,0,0,0.45); color: white; font-size: 1.9rem; cursor: pointer; }

.gallery-img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s ease;
}

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

/* Depoimentos */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.8rem;
}

.testimonial-comment {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.4;
}

/* Builder Item Rows */
.builder-item-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  position: relative;
}

.builder-item-row .btn-remove-item {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #ef4444;
  font-size: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================
   ACCOUNT NAVIGATION & SETTINGS v21
   ============================================ */
.user-menu { position: relative; }

.user-menu-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 5px 10px 5px 6px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  cursor: pointer;
}

.user-menu-trigger:hover { border-color: var(--border-glow); }

.user-menu-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.user-menu-name {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.86rem;
  font-weight: 650;
}

.user-menu-chevron { color: var(--text-muted); transition: transform 0.2s ease; }
.user-menu.open .user-menu-chevron { transform: rotate(180deg); }

.user-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 245px;
  padding: 8px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: rgba(18,18,25,0.98);
  box-shadow: 0 22px 60px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
}

.user-menu.open .user-menu-dropdown { display: block; }

.user-menu-dropdown button {
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-secondary);
  text-align: left;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.user-menu-dropdown button:hover { background: rgba(255,255,255,0.06); color: var(--text-primary); }
.user-menu-dropdown button.danger { color: #f87171; }
.user-menu-divider { height: 1px; background: var(--border-subtle); margin: 6px 4px; }

.settings-nav-shell {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 7px;
  padding: 8px 0 16px;
  margin-bottom: 14px;
  background: linear-gradient(to bottom, var(--bg-primary) 76%, transparent);
}

.settings-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.settings-nav::-webkit-scrollbar { display: none; }

.settings-nav-arrow {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 11px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.settings-nav-arrow:hover:not(:disabled) { border-color: var(--purple); background: var(--bg-card); }
.settings-nav-arrow:disabled { opacity: 0.25; cursor: default; }

#settings-nav-next:not(:disabled) {
  border-color: rgba(139,92,246,0.58);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.08);
}

.settings-nav-item {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--border-subtle);
  border-radius: 11px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
}

.settings-nav-item:hover { color: var(--text-primary); border-color: var(--border-glow); }
.settings-nav-item.active { background: var(--purple); border-color: var(--purple); color: #fff; }

.settings-section { display: none; }
.settings-section.active { display: block; animation: settingsFade 0.22s ease both; }

@keyframes settingsFade {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-status-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 320px);
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
}

.page-status-label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-status-card strong { display: block; margin-bottom: 4px; }
.page-status-card p { color: var(--text-secondary); font-size: 0.84rem; }
.page-status-progress { height: 8px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.08); }
.page-status-progress span { display: block; height: 100%; border-radius: inherit; background: var(--gradient-primary); }

.account-page { padding-top: calc(80px + var(--space-xl)); padding-bottom: var(--space-3xl); }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: start; }
.account-card {
  padding: var(--space-xl);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  background: var(--bg-glass);
}
.account-card h2 { margin-bottom: var(--space-lg); font-family: var(--font-display); font-size: 1.25rem; }

@media (max-width: 768px) {
  .user-menu-name { display: none; }
  .user-menu-trigger { padding-right: 7px; }
  .user-menu-dropdown { position: fixed; top: 72px; right: 16px; left: 16px; width: auto; }
  .page-status-card { grid-template-columns: 1fr; gap: var(--space-md); }
  .account-grid { grid-template-columns: 1fr; }
  .settings-nav-shell { grid-template-columns: 34px minmax(0, 1fr) 34px; gap: 5px; }
  .settings-nav-arrow { width: 34px; height: 38px; }
}

/* ============================================
   Landing navigation hierarchy — 2026-08-15
   ============================================ */
.navbar-link {
  color: rgba(241, 245, 249, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.navbar-link:hover {
  color: #ffffff;
}

.navbar-brand {
  color: #f8fafc;
}

.navbar-login {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 0.35rem;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.navbar-login:hover {
  color: var(--purple);
  border-bottom-color: rgba(124, 58, 237, 0.45);
}

#demonstracao,
#recursos,
#como-funciona,
#pricing {
  scroll-margin-top: 92px;
}

@media (max-width: 768px) {
  .navbar-cta {
    gap: 0.55rem;
  }

  .navbar-login {
    font-size: 0.82rem;
    padding-inline: 0.15rem;
  }

  .navbar-subscribe {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .navbar-brand .logo-icon {
    width: 32px;
    height: 32px;
  }

  .navbar-login {
    font-size: 0.78rem;
  }

  .navbar-subscribe {
    padding: 0.48rem 0.72rem;
    font-size: 0.76rem;
  }
}

@media print {
  body {
    background: #ffffff !important;
    color: #0f172a !important;
  }
  .modal, .toast-container, #pro-payment-modal, .user-menu-dropdown {
    display: none !important;
  }
  .text-gradient {
    color: #7c3aed !important;
    -webkit-text-fill-color: #7c3aed !important;
    background: none !important;
  }
  .navbar {
    position: relative !important;
    box-shadow: none !important;
  }
}
