/* ============================================
   LUMYN — Design System & Landing Page Styles
   Premium · Dark · Gold · Sophisticated
   ============================================ */

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

/* ── DESIGN TOKENS ── */
:root {
  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-section: #e2e8f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-elevated: #ffffff;

  /* Blue-accent Palette */
  --accent: #0091ff;           /* (azul claro tech vibrante) */
  --accent-2: #0ea5e9;         /* (ciano de apoio) */
  --accent-light: #bae6fd;     /* (azul claro leve para contraste/apoio) */
  --accent-glow: rgba(0, 145, 255, 0.08);
  --accent-2-glow: rgba(14, 165, 233, 0.08);
  --accent-glow-strong: rgba(0, 145, 255, 0.16);

  /* Blue Palette */
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-deep: #0f172a;
  --blue-accent: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.08);

  /* Text */
  --text-primary: #0f172a;     /* (azul marinho profundo) */
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --text-accent: var(--accent);

  /* Borders */
  --border: rgba(15, 23, 42, 0.08);
  --border-subtle: rgba(15, 23, 42, 0.04);
  --border-accent: rgba(0, 145, 255, 0.15);
  --border-accent-strong: rgba(0, 145, 255, 0.3);

  /* Accents */
  --accent-green: #10B981;
  --accent-green-soft: rgba(16, 185, 129, 0.08);
  --accent-red: #EF4444;
  --accent-red-soft: rgba(239, 68, 68, 0.08);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-2));
  --gradient-accent-text: linear-gradient(135deg, var(--accent-2), #0284c7);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 145, 255, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(14, 165, 233, 0.04), transparent);
  --gradient-card: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  --gradient-cta: linear-gradient(135deg, var(--accent), var(--accent-2));

  /* Shadows */
  --shadow-soft: rgba(15, 23, 42, 0.08);
  --shadow-medium: rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 2px 8px var(--shadow-soft);
  --shadow-md: 0 4px 16px var(--shadow-soft);
  --shadow-lg: 0 10px 30px -10px var(--shadow-soft), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 40px -15px var(--shadow-medium), 0 1px 5px rgba(15, 23, 42, 0.05);
  --shadow-accent: 0 4px 24px rgba(0, 145, 255, 0.15);
  --shadow-accent-lg: 0 8px 40px rgba(0, 145, 255, 0.25);

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;

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

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ── UTILITY ── */
.text-center {
  text-align: center;
}

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

.section-padding {
  padding: var(--section-padding) 0;
}

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  background: var(--accent-glow);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── READING PROGRESS ── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.reading-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  transition: width 0.1s linear;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 10px 0;
}

.nav-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.5rem;
  letter-spacing: -0.02em;
}

.logo svg {
  width: 32px;
  height: 32px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-highlight {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #ffffff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
  filter: brightness(1.1);
}

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

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 20px;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-full {
  width: 100%;
}

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Aurora background */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: aurora-float 12s ease-in-out infinite alternate;
}

.aurora-blob--gold {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 145, 255, 0.15), transparent 70%);
  top: -10%;
  right: 10%;
  animation-delay: 0s;
}

.aurora-blob--blue {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 27, 62, 0.5), transparent 70%);
  top: 20%;
  left: -10%;
  animation-delay: -4s;
}

.aurora-blob--accent {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 107, 255, 0.08), transparent 70%);
  bottom: 10%;
  right: 30%;
  animation-delay: -8s;
}

@keyframes aurora-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, -30px) scale(1.1);
  }
}

/* Noise overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-ctas {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-micro {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero-proof {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

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

.hero-proof strong {
  color: var(--text-primary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── HERO VISUAL (Dashboard Mockup) ── */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
  perspective: 1500px;
}

.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  animation: dashboardFloat 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-tertiary);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #28c840;
}

.mockup-url {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-left: 8px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 280px;
}

.mockup-sidebar {
  padding: 16px 12px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  transition: all var(--transition-fast);
}

.sidebar-item.active {
  background: var(--accent-glow-strong);
  border: 1px solid var(--border-accent);
}

.mockup-content {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.mockup-card {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
}

.card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

.card-trend {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.card-trend.up {
  color: var(--accent-green);
}

.card-bars {
  display: flex;
  gap: 4px;
  margin-top: 8px;
  align-items: flex-end;
  height: 24px;
}

.card-bars span {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
  animation: bar-grow 1.5s var(--ease-out) forwards;
}

.card-bars span:nth-child(1) {
  height: 40%;
  animation-delay: 1.2s;
}

.card-bars span:nth-child(2) {
  height: 65%;
  animation-delay: 1.3s;
}

.card-bars span:nth-child(3) {
  height: 50%;
  animation-delay: 1.4s;
}

.card-bars span:nth-child(4) {
  height: 85%;
  animation-delay: 1.5s;
}

.card-bars span:nth-child(5) {
  height: 100%;
  animation-delay: 1.6s;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.mockup-chart {
  grid-column: 1 / -1;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
  padding: 16px;
}

.mockup-chart svg {
  width: 100%;
  height: 50px;
}

/* Floating notification cards wrappers & items */
.floating-card-wrapper {
  position: absolute;
  z-index: 10;
  will-change: transform;
  pointer-events: none;
}

.card-1-wrapper {
  top: 15%;
  right: -30px;
}

.card-2-wrapper {
  bottom: 20%;
  left: -20px;
}

.floating-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, filter, opacity;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.problem-header {
  text-align: center;
  margin-bottom: 64px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), transparent);
  opacity: 0.6;
}

.problem-card:hover {
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.08);
}

/* Media query para a Scroll Experience Sticky & Stacked no Desktop */
@media (min-width: 1025px) {
  .problem-grid {
    display: flex;
    flex-direction: column;
    gap: 12vh;
    /* Respiro vertical ampliado entre os cards */
    max-width: 860px;
    margin: 48px auto 0;
    padding-bottom: 10vh;
  }

  .problem-card {
    position: sticky;
    top: 20vh;
    height: 52vh;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px;
    transform-origin: center top;
    transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
    will-change: transform, filter, opacity;
  }

  .problem-card:hover {
    transform: translateY(0);
    box-shadow: var(--shadow-xl);
  }

  .problem-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    margin-bottom: 0;
  }

  .problem-icon svg {
    width: 36px;
    height: 36px;
  }

  .problem-card-content {
    flex: 1;
  }

  .problem-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
  }

  .problem-card p {
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-red);
}

.problem-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   SOLUTION / VIRADA SECTION
   ============================================= */
.solution-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.solution-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(14, 165, 233, 0.06), transparent);
}

.solution-container {
  position: relative;
  z-index: 1;
}

.solution-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  animation: pulse-scale 3s ease-in-out infinite;
  perspective: 600px;
  transform-style: preserve-3d;
}

.solution-logo svg {
  transform-origin: center;
  will-change: transform;
  transform-style: preserve-3d;
}

.solution-logo svg.spin-once {
  animation: spin-once 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.solution-logo .rotating-point {
  transform-origin: 16px 16px;
}

.solution-logo.animating .rotating-point {
  animation: rotate-point 2.8s linear infinite;
}

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

@keyframes spin-once {
  0% {
    transform: rotate(0deg) translateZ(0);
  }
  50% {
    transform: rotate(180deg) translateZ(40px);
  }
  100% {
    transform: rotate(360deg) translateZ(0);
  }
}

@keyframes pulse-scale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.solution-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.solution-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* Particles */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-10px) translateX(-10px);
    opacity: 0.4;
  }

  75% {
    transform: translateY(-30px) translateX(5px);
    opacity: 0.7;
  }
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-block:nth-child(even) {
  direction: rtl;
}

.feature-block:nth-child(even)>* {
  direction: ltr;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.feature-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  flex-shrink: 0;
}

/* Feature mockup cards */
.feature-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-tertiary);
}

.feature-mockup-body {
  padding: 24px;
}

.panel-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* Schedule slots */
.schedule-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

.schedule-slot span:first-child {
  font-weight: 700;
  color: var(--text-primary);
  min-width: 40px;
}

.schedule-slot.booked {
  border-left: 3px solid var(--accent);
  background: var(--accent-glow);
  color: var(--text-primary);
}

.schedule-slot.available {
  border-left: 3px solid var(--accent-green);
  background: var(--accent-green-soft);
  color: var(--accent-green);
}

/* Finance rows */
.finance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
}

.finance-row span {
  color: var(--text-secondary);
}

.finance-row strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.positive {
  color: var(--accent-green);
}

.negative {
  color: var(--accent-red);
}

.finance-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.finance-row.total {
  padding-top: 12px;
}

.finance-row.total span {
  font-weight: 600;
  color: var(--text-primary);
}

.finance-row.total strong {
  font-size: 1.2rem;
  color: var(--accent);
}

/* Team members */
.team-member {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.team-member-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.avatar-1 {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.avatar-2 {
  background: linear-gradient(135deg, #1a6bff, #0d47a1);
}

.team-member-details {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.team-member-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.team-member-role {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.team-member-value {
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
  padding: var(--section-padding) 0;
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(0, 145, 255, 0.04), transparent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.pricing-cards.single-card {
  grid-template-columns: 1fr;
  max-width: 460px;
  margin: 0 auto;
}

/* Pricing Switcher Toggle */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-toggle {
  display: inline-flex;
  background: var(--bg-tertiary);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.toggle-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.toggle-btn.active {
  background: var(--accent);
  color: #ffffff;
}

.toggle-btn:hover:not(.active) {
  color: var(--text-primary);
}

.toggle-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Pricing Panel Transition classes */
.pricing-panel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-panel.active {
  display: block;
}

.pricing-panel.show {
  opacity: 1;
  transform: translateY(0);
}

/* LUMYN Web Price amount layout */
.web-pricing {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.web-price-setup, .web-price-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.web-price-monthly {
  font-size: 0.9em;
  color: var(--text-secondary);
}

.web-price-monthly .price-value {
  font-size: 2.2rem;
  color: var(--accent);
}

.pricing-card {
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted {
  border-color: var(--border-accent-strong);
  background: linear-gradient(145deg, var(--bg-card), rgba(14, 165, 233, 0.03));
  box-shadow: var(--shadow-accent);
  transform: scale(1.03);
}

.pricing-card.highlighted:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-accent-lg);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 100px;
  background: var(--gradient-cta);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card-header h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.pricing-role {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.price-amount {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-height: 3.6rem;      /* reserva altura para evitar salto de layout */
  white-space: nowrap;     /* impede a quebra de "R$ 197,00/mês" em duas linhas */
}

.currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;  /* dígitos de largura fixa: sem tremor no count-up */
}

.hero-counter {
  font-variant-numeric: tabular-nums;  /* dígitos de largura fixa: sem tremor no count-up */
}

.highlighted .price-value {
  color: var(--accent);
}

.period {
  font-size: 0.95rem;
  color: var(--text-tertiary);
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-features li strong {
  color: var(--text-primary);
}

.custom-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.custom-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  margin-bottom: 60px;
  padding: 12px 0;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-secondary), transparent);
}

.marquee {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.marquee span.dot-sep {
  color: var(--accent);
  opacity: 0.4;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Testimonial cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-accent);
}

.quote-mark {
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0f;
  background: var(--gradient-cta);
  font-size: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* Before / After */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ba-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.ba-header {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.ba-header.red {
  color: var(--accent-red);
}

.ba-header.green {
  color: var(--accent-green);
}

.ba-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ba-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ba-card li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: var(--section-padding) 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-tertiary);
  transition: transform var(--transition-normal), color var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(14, 165, 233, 0.06), transparent);
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 40px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-accent);
  background: linear-gradient(145deg, var(--bg-card), rgba(14, 165, 233, 0.03));
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-actions .btn-primary {
  padding: 18px 48px;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  max-width: 100%;
}

.cta-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
  filter: brightness(0.9);
}

.cta-disclaimer {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.footer-tagline {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem !important;
  color: var(--text-tertiary);
}

.footer-security {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all var(--transition-fast);
  background: transparent;
  border: none;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 28px;
}

.modal-header.center {
  text-align: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-plan-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.modal-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-tertiary);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-error {
  font-size: 0.8rem;
  color: var(--accent-red);
  margin-top: 4px;
  display: block;
  min-height: 1em;
}

.modal-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--gradient-cta);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.modal-submit:hover {
  filter: brightness(1.1);
  box-shadow: var(--shadow-accent);
}

.modal-submit-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.modal-submit-secondary:hover {
  background: var(--bg-tertiary);
}

.modal-footer-text {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 16px;
}

.modal-link {
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.modal-link:hover {
  text-decoration: underline;
}

.modal-actions {
  padding: 0 0 8px;
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  margin-bottom: 20px;
  color: var(--accent-green);
}

.modal-success h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.modal-success p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block:nth-child(even) {
    direction: ltr;
  }

  .feature-mockup {
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card.highlighted {
    transform: none;
  }

  .pricing-card.highlighted:hover {
    transform: translateY(-4px);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-links {
    display: none;
  }

  .navbar .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Mobile Nav Menu */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 24px;
  }

  .nav-links.mobile-open a {
    font-size: 1.2rem;
    color: var(--text-primary);
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .floating-card {
    display: none;
  }

  .modal-container {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .cta-actions .btn-primary {
    padding: 16px 32px;
    font-size: 1rem;
    width: 100%;
  }
}

/* ============================================
   SEÇÃO WEBSITES — LUMYN
   ============================================ */
.websites {
  background: linear-gradient(165deg, #0E2140 0%, #081428 100%);
  color: #E6ECF5;
  padding: 96px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.websites__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.websites__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4.5rem;
}

.websites__badge {
  display: inline-block;
  background: rgba(26, 140, 255, 0.12);
  color: #6FB8FF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.websites__title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.websites__title em {
  color: #1A8CFF;
  font-style: normal;
}

.websites__subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #9FB0C8;
}

/* ---- Layout principal: mockup + texto ---- */
.websites__showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.websites__copy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(26, 140, 255, 0.12);
  color: #1A8CFF;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.websites__copy-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.websites__copy-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #9FB0C8;
  margin-bottom: 1.75rem;
}

.websites__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.websites__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #E6ECF5;
}

.websites__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #1A8CFF;
}

/* ---- Visual da imagem (coluna direita) ---- */
.websites__visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lumyn-web__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---- Grid de diferenciais ---- */
.websites__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.web-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.web-feature:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.3);
}

.web-feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 140, 255, 0.12);
  border-radius: 12px;
  color: #1A8CFF;
  margin-bottom: 1.25rem;
}

.web-feature__title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.web-feature__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #9FB0C8;
}

/* ---- CTA da seção ---- */
.websites__cta {
  text-align: center;
  margin-top: 4.5rem;
}

.websites__cta-line {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.websites__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1A8CFF;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.websites__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(26, 140, 255, 0.6);
}

/* ---- Reveal animation ---- */
.websites .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ---- Responsivo ---- */
@media (max-width: 900px) {
  .websites__showcase {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .websites__showcase .websites__visual {
    order: -1;
  }

  .websites__features {
    grid-template-columns: 1fr;
  }
}

/* === FIX REVEAL GLOBAL + SVGs WEBSITES === */
.reveal.visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.websites svg {
  width: 24px;
  height: 24px;
}

.websites__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.websites__cta-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== CARDS FLUTUANTES ===== */
.floating-card-wrapper {
  will-change: transform;
  pointer-events: none;
}

@keyframes lumynFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.card-1-wrapper { animation: lumynFloat 6s ease-in-out infinite; }
.card-2-wrapper { animation: lumynFloat 7s ease-in-out infinite 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .dashboard-mockup, .floating-card-wrapper {
    animation: none !important;
    transform: none !important;
  }
  .solution-logo,
  .solution-logo svg.spin-once,
  .solution-logo .rotating-point {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Custom CSS for LUMYN Web budget CTA and global form error */
.pricing-budget-cta {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.budget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--accent);
}

.budget-subtitle {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-primary);
}

.form-error-global {
  font-size: 0.85rem;
  color: var(--accent-red);
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
  background: var(--accent-red-soft);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

/* =============================================
   LENIS SMOOTH SCROLL INTEGRATION
   ============================================= */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}

/* =============================================
   ANIMAÇÕES PREMIUM E EFEITOS INSPIRA
   ============================================= */

/* Desativar animações CSS estáticas se JS estiver ativo (GSAP cuidará disso) */
html.js-enabled .hero-badge,
html.js-enabled .hero-title,
html.js-enabled .hero-subtitle,
html.js-enabled .hero-ctas,
html.js-enabled .hero-proof,
html.js-enabled .hero-visual {
  animation: none !important;
  opacity: 0;
}

/* 1. Text Shimmer no título degradê do Hero */
.hero-title .gradient-text {
  background: linear-gradient(
    110deg,
    var(--accent-2) 0%,
    #0284c7 40%,
    #e0f2fe 50%,
    var(--accent-2) 60%,
    #0284c7 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 6s linear infinite;
}

@keyframes text-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* 2. Border Beam no card de plano Premium */
.pricing-card.highlighted {
  position: relative;
}

.popular-badge {
  padding: 6px 24px !important;
  white-space: nowrap !important;
}

.pricing-card.highlighted::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from 0deg, transparent 60%, var(--accent), var(--accent-2), transparent 90%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  animation: border-beam-anim 4s linear infinite;
  will-change: background;
}

@keyframes border-beam-anim {
  from {
    background: conic-gradient(from 0deg, transparent 60%, var(--accent), var(--accent-2), transparent 90%);
  }
  to {
    background: conic-gradient(from 360deg, transparent 60%, var(--accent), var(--accent-2), transparent 90%);
  }
}

/* 3. Spotlight seguindo cursor na seção Solução */
.solution-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* 4. Meteors na seção Websites */
.meteors-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.meteor {
  position: absolute;
  width: 1px;
  height: 1px;
  background: linear-gradient(to bottom, #fff, transparent);
  opacity: 0;
  transform: rotate(-40deg);
  animation: meteor-fall 2.5s linear infinite;
  will-change: transform, opacity;
}

.meteor::before {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6), transparent);
  transform: translateX(-100%);
}

@keyframes meteor-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(-40deg);
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate3d(-350px, 350px, 0) rotate(-40deg);
    opacity: 0;
  }
}

/* Cobertura total de prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-title .gradient-text {
    animation: none !important;
    background-size: auto !important;
    background-position: 0% center !important;
  }
  .pricing-card.highlighted::before {
    animation: none !important;
    display: none !important;
  }
  .meteors-container, .meteor {
    display: none !important;
    animation: none !important;
  }
}

/* =============================================
   MODAIS LEGAIS
   ============================================= */
.modal-container.modal-legal {
  max-width: 640px;
}
.modal-legal-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: .5rem;
  line-height: 1.6;
}
.modal-legal-body h3 {
  margin: 1.5rem 0 .5rem;
  color: var(--text-primary);
}
.modal-legal-body p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}
.modal-legal-updated {
  margin-top: 1.5rem;
  font-size: .85rem;
  opacity: .6;
}