@charset "UTF-8";

/* ==========================================================================
   VITRINEDESK — PREMIUM LANDING PAGE (MOBILE-FIRST)
   ========================================================================== */

/* ─────────────────────────────────────────────────────────────
   1. TOKENS DE DESIGN & VARIÁVEIS
   ───────────────────────────────────────────────────────────── */
:root {
  /* Cores - Base (Escura) */
  --bg-base: #05050A;
  /* Fundo principal profundo */
  --bg-surface: rgba(255, 255, 255, 0.03);
  /* Superfícies translúcidas (Cards) */
  --bg-surface-hover: rgba(255, 255, 255, 0.06);

  /* Cores - Bordas e Linhas */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(139, 92, 246, 0.3);
  /* Violeta para destaque */

  /* Cores - Texto */
  --text-primary: #F8F9FA;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;

  /* Cores - Brand & Acentos */
  --accent-primary: #8B5CF6;
  /* Violeta */
  --accent-secondary: #A855F7;
  /* Roxo */
  --accent-tertiary: #EC4899;
  /* Rosa para degradês */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Gradientes Premium */
  --grad-primary: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-tertiary) 100%);
  --grad-subtle: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.05) 100%);

  /* Tipografia */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Sombras e Efeitos */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
  /* Sombra com glow sutil */
  --glass-blur: blur(12px);

  /* Espaçamentos e Raios */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Transições */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Base para rem */
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

ul,
ol {
  list-style: none;
}

/* ─────────────────────────────────────────────────────────────
   3. UTILITÁRIOS E LAYOUT
   ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

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

/* Classes utilitárias de margem e alinhamento */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Separador sutil */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 4rem 0;
}

/* ─────────────────────────────────────────────────────────────
   4. COMPONENTES: BACKGROUND E DECORAÇÃO
   ───────────────────────────────────────────────────────────── */
.bg-decoration {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Malha de grade sutil no fundo */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.3;
  mask-image: radial-gradient(circle at 50% 0%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, black 10%, transparent 80%);
}

/* Orbes brilhantes (Glows) */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: float 10s ease-in-out infinite alternate;
}

.bg-orb-1 {
  top: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
}

.bg-orb-2 {
  top: 40%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
  animation-delay: -5s;
}

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

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

/* ─────────────────────────────────────────────────────────────
   5. COMPONENTES: BOTÕES
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition-bounce);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

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

/* Botão Primário (Solid) */
.btn-primary {
  background: var(--text-primary);
  color: var(--bg-base);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  background: #ffffff;
}

/* Botão Outline */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: var(--bg-surface);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Botão Ghost (Apenas texto com hover) */
.btn-ghost {
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
}

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

/* Tamanhos de botão */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-full {
  width: 100%;
}

/* Ícones nos botões */
.btn i,
.btn svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform var(--transition-normal);
}

.btn:hover i[data-lucide="arrow-right"] {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────
   6. HEADER E NAVEGAÇÃO
   ───────────────────────────────────────────────────────────── */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all var(--transition-normal);
  padding: 1rem 0;
}

.header-main.scrolled {
  padding: 0.75rem 0;
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  z-index: 51;
  /* Fica acima do menu mobile */
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grad-subtle);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}

.brand-icon svg,
.brand-icon i {
  width: 18px;
  height: 18px;
}

/* Menu Desktop (Oculto no mobile) */
.nav-menu {
  display: none;
  /* Mobile first */
}

/* Botão Hamburguer (Mobile) */
.btn-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  z-index: 51;
}

/* Navegação Mobile (Offcanvas) */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 6rem 1.5rem 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
}

.nav-mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.nav-mobile-links a {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

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

.nav-mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ─────────────────────────────────────────────────────────────
   7. SEÇÃO: HERO
   ───────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  padding: 8rem 0 4rem;
  /* Compensar header fixo */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge de novidade */
.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  backdrop-filter: var(--glass-blur);
}

.badge-new-tag {
  background: var(--grad-primary);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-trust svg,
.hero-trust i {
  color: var(--success);
  width: 14px;
  height: 14px;
}

/* Hero Visual (Mockup) - Glassmorphism intenso */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.mockup-window {
  background: rgba(15, 15, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateX(2deg);
  /* Toque 3D sutil */
  transition: transform var(--transition-normal);
}

.mockup-window:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-light);
}

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

.mockup-dot.red {
  background: #FF5F56;
}

.mockup-dot.yellow {
  background: #FFBD2E;
}

.mockup-dot.green {
  background: #27C93F;
}

.mockup-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Componentes internos do Mockup */
.mockup-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mkpi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.mkpi-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.mkpi-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mkpi-trend {
  font-size: 0.75rem;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.mockup-chart {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar {
  flex: 1;
  background: var(--border-light);
  border-radius: 4px 4px 0 0;
  min-height: 10%;
  transition: background var(--transition-normal), height 1s ease-out;
}

.bar:hover,
.bar.active {
  background: var(--grad-primary);
}

/* ─────────────────────────────────────────────────────────────
   8. SEÇÃO: LOGOS (TRUST)
   ───────────────────────────────────────────────────────────── */
.trust-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity var(--transition-normal);
}

.trust-logos:hover {
  opacity: 0.8;
}

.trust-logos svg {
  height: 24px;
  width: auto;
  fill: currentColor;
}

/* ─────────────────────────────────────────────────────────────
   9. SEÇÃO: STATS (NÚMEROS)
   ───────────────────────────────────────────────────────────── */
.stats-section {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────
   10. SEÇÃO: FEATURES
   ───────────────────────────────────────────────────────────── */
.features-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* EFEITO PREMIUM MOBILE: FLOATING BADGE CARDS */
@media (max-width: 767px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 0.75rem;
    /* Gap maior vertical, menor horizontal */
    position: static;
    padding: 1.5rem 0 1rem 0;
  }

  .features-grid::before {
    display: none;
  }

  .feature-card {
    position: relative;
    width: auto !important;
    align-self: stretch;
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 1rem !important;
    padding: 2.5rem 0.5rem 1rem 0.5rem !important;
    /* Menos padding horizontal */
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    overflow: visible !important;
  }

  .feature-icon-wrapper {
    position: absolute !important;
    top: -1.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 0.75rem !important;
    background: var(--bg-base) !important;
    border: 2px solid var(--accent-primary) !important;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4) !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .feature-icon-wrapper i,
  .feature-icon-wrapper svg {
    width: 24px !important;
    height: 24px !important;
    color: var(--text-primary);
  }

  .feature-card h3 {
    font-size: 1.05rem;
    /* Reduzido para caber 2 colunas */
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    color: var(--text-primary);
  }

  .feature-card p {
    font-size: 0.5rem;
    /* Reduzido conforme solicitado para caber melhor no mobile */
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
  }
}

.feature-card {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: var(--bg-surface-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--grad-subtle);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 1.25rem;
}

.feature-icon-wrapper i {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.700rem;
  line-height: 1.6;
  flex: 1;
  /* Para empurrar conteúdo se necessário num bento maior */
}

/* ─────────────────────────────────────────────────────────────
   10.1 BENTO GRID (DESKTOP E TABLET)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
  }

  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-large h3 {
    font-size: 1.5rem;
    margin-top: auto;
  }

  .bento-large p {
    font-size: 1.05rem;
  }

  .bento-large .feature-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .bento-large .feature-icon-wrapper i {
    width: 32px;
    height: 32px;
  }

  .bento-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-square {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ─────────────────────────────────────────────────────────────
   11. SEÇÃO: COMO FUNCIONA (HIGHLIGHT)
   ───────────────────────────────────────────────────────────── */
.how-it-works-section {
  padding: 4rem 0;
}

.highlight-panel {
  background: var(--grad-subtle);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.highlight-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0.5;
}

.highlight-text-content {
  z-index: 1;
}

.highlight-text-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.highlight-text-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.highlight-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.highlight-list li i {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.highlight-visual-content {
  background: rgba(5, 5, 10, 0.8);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

/* User Rows (Visual representation) */
.user-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.user-row:last-child {
  border-bottom: none;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 600;
  font-size: 0.9375rem;
  display: block;
}

.user-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.user-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-weight: 600;
}

.user-tag.warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

/* ─────────────────────────────────────────────────────────────
   12. SEÇÃO: PREÇOS
   ───────────────────────────────────────────────────────────── */
.pricing-section {
  padding: 4rem 0;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.toggle-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  display: inline-flex;
  position: relative;
}

.toggle-btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  transition: color var(--transition-normal);
}

.toggle-btn[aria-pressed="true"] {
  color: var(--text-primary);
}

.toggle-indicator {
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  background: var(--border-light);
  border-radius: var(--radius-full);
  z-index: 1;
  transition: transform var(--transition-bounce), width var(--transition-bounce);
}

.save-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  background: var(--success);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Ajustes finos para caber 2 cards lado a lado na tela pequena (Mobile) */
@media (max-width: 767px) {
  .pricing-grid {
    gap: 0.75rem;
  }

  .plan-card {
    padding: 1rem !important;
    border-radius: 1rem !important;
  }

  .plan-name {
    font-size: 1rem !important;
  }

  .plan-price {
    font-size: 1.75rem !important;
  }

  .plan-currency {
    font-size: 0.8rem !important;
  }

  .plan-period {
    font-size: 0.65rem !important;
  }

  .plan-desc {
    font-size: 0.75rem !important;
  }

  .plan-features-list {
    margin: 0.75rem 0 1rem !important;
    gap: 0.4rem !important;
  }

  .plan-features-list li {
    font-size: 0.75rem !important;
  }

  .plan-features-list li i {
    width: 14px !important;
    height: 14px !important;
  }

  .plan-badge-top {
    font-size: 0.6rem !important;
    padding: 0.15rem 0.5rem !important;
  }
}

.plan-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  /* Diminuído de 2rem 1.5rem */
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.plan-card.featured {
  background: var(--grad-subtle);
  border-color: var(--border-glow);
}

.plan-badge-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--grad-primary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-header {
  margin-bottom: 1rem;
}

.plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Diminuído de 1.25rem */
.plan-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.plan-price-wrapper {
  margin-bottom: 1rem;
}

.plan-currency {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  display: inline-block;
}

/* Diminuído de 3rem */
.plan-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.plan-features-list {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.plan-features-list li i {
  color: var(--text-primary);
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
}

.plan-features-list li.disabled {
  opacity: 0.4;
}

/* ─────────────────────────────────────────────────────────────
   13. SEÇÃO: CTA (Call to Action Final)
   ───────────────────────────────────────────────────────────── */
.cta-section {
  padding: 4rem 0;
}

.cta-panel {
  background: var(--grad-subtle);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-panel h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-panel p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-panel .hero-actions {
  align-items: center;
}

/* ─────────────────────────────────────────────────────────────
   14. FOOTER
   ───────────────────────────────────────────────────────────── */
.footer-main {
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  background: rgba(5, 5, 10, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-nav h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────
   15. UTILITÁRIOS DE ANIMAÇÃO (REVEAL)
   ───────────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Atrasos para grid */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

/* ─────────────────────────────────────────────────────────────
   MEDIA QUERIES (TABLET & DESKTOP)
   ───────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions,
  .cta-panel .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .btn-full {
    width: auto;
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: 10rem 0 5rem;
  }

  .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .hero-content {
    flex: 1;
    text-align: left;
    align-items: flex-start;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    flex: 1;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Volta a ser Grid no tablet */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
  }

  .feature-card {
    min-width: 0;
  }

  .highlight-panel {
    flex-direction: row;
    align-items: center;
    padding: 3rem;
  }

  .highlight-text-content {
    flex: 1;
  }

  .highlight-visual-content {
    flex: 1;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {

  /* Navbar Desktop */
  .btn-menu-toggle {
    display: none;
  }

  .nav-mobile-overlay {
    display: none !important;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 3rem;
  }

  .nav-menu-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-secondary);
  }

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

  .nav-menu-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

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

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    /* Como são 2 cards, limitamos a largura máxima para não ficarem gigantes */
    margin: 0 auto;
  }

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

  .cta-panel {
    padding: 5rem;
  }

  .cta-panel h2 {
    font-size: 3rem;
  }
}

/* ─────────────────────────────────────────────────────────────
   9. ANIMAÇÕES (REVEAL UP & DELAYS)
   ───────────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Delays para criar o efeito em cascata (staggered) */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Cancelar delay no hover para não atrasar a interação do usuário */
.feature-card,
.plan-card {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), opacity 0.7s, transform 0.7s;
}

.feature-card:hover,
.plan-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--accent-primary);
  box-shadow: 0 15px 35px -10px rgba(139, 92, 246, 0.25);
  transition-delay: 0ms !important;
}

.feature-card:hover .feature-icon-wrapper i {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s ease;
}