/* ============================================================
   Protocolo PRR — Estilos da Página de Vendas Premium (Apple/DJI Style)
   ============================================================ */

:root {
  /* Cores Luxuosas */
  --bg-app: #040812;
  --bg-card: rgba(10, 16, 32, 0.5);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  --accent: #00f0ff; /* Ciano Neon */
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --border-light: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(0, 240, 255, 0.15);
  
  /* Fontes e Espaçamentos */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.15);
}

/* Reset Geral & Configuração */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-app);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Esferas de Brilho de Fundo (Glow Orbs) */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  -webkit-filter: blur(140px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  /* Impede que os orbs causem scroll horizontal */
  max-width: 100vw;
  overflow: hidden;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
  top: -50px;
  right: 0;
  transform: translateX(30%);
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-purple) 0%, rgba(0,0,0,0) 70%);
  top: 50vh;
  left: 0;
  transform: translateX(-30%);
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(0,0,0,0) 70%);
  bottom: 0;
  right: 0;
  transform: translateX(30%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Garante que todas as seções não vàzem horizontalmente */
section, main, header, footer {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Utilitários Flex/Grid */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--accent-green); }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking { letter-spacing: 0.1em; }

/* Badge Premium */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}

/* Header Estilo Apple/DJI */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 8, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  height: 64px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-accent {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: var(--space-8);
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--accent);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
}
.btn-full {
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);
  color: #040812;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 240, 255, 0.4);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--text-muted);
}

/* Hero Section */
.hero-section {
  padding: 100px 0 80px 0;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title span {
  background: linear-gradient(135deg, #00f0ff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  max-width: 680px;
  margin: 0 auto var(--space-10) auto;
  font-size: 18px;
  color: var(--text-secondary);
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Cards & Glassmorphism */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Seções Gerais */
.section-header {
  margin-bottom: var(--space-10);
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-2);
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto;
}

/* Seção Anatomia da Conversa */
.anatomy-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, 0) 0%, rgba(6, 12, 28, 0.4) 50%, rgba(4, 8, 18, 0) 100%);
}
.anatomy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}
.anatomy-card {
  background: rgba(10, 16, 32, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.anatomy-card:hover {
  transform: translateY(-4px);
}
.anatomy-card.bad {
  border-color: rgba(239, 68, 68, 0.15);
}
.anatomy-card.bad:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.08);
}
.anatomy-card.good {
  border-color: rgba(0, 240, 255, 0.15);
}
.anatomy-card.good:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: var(--shadow-glow);
}
.anatomy-card-header {
  margin-bottom: var(--space-6);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: var(--space-3);
}
.status-badge.bad {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.status-badge.good {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.message-preview {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}
.message-bubble {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: 14px;
  max-width: 85%;
  line-height: 1.4;
}
.message-bubble.sender-bad {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-top-left-radius: 0;
}
.message-bubble.sender-good {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  color: var(--text-primary);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-top-left-radius: 0;
}
.analysis-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.analysis-list li {
  display: flex;
  gap: var(--space-3);
  font-size: 13.5px;
  align-items: flex-start;
}
.analysis-list li i {
  flex-shrink: 0;
  margin-top: 2px;
}
.analysis-list li strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 2px;
}

/* Seção do Simulador / Demo */
.demo-section {
  padding: 80px 0;
}
.demo-card {
  padding: var(--space-10) !important;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-10);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}
.form-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 14px;
  transition: var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}
.text-area-calibrator {
  resize: none;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.green {
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
}

/* Dashboard do Simulador */
.demo-analysis-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.score-radial-container {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-6);
}
.radial-progress-bar {
  position: relative;
  width: 90px;
  height: 90px;
}
.radial-progress-bar svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.radial-progress-bar circle {
  fill: none;
  stroke-width: 8;
}
.radial-progress-bar circle.bg {
  stroke: rgba(255, 255, 255, 0.05);
}
.radial-progress-bar circle.progress {
  stroke: var(--accent);
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  stroke-linecap: round;
}
.radial-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: baseline;
}
.radial-value .pct {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}
.analysis-feedback-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.feedback-tips-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.tip-item {
  display: flex;
  gap: var(--space-3);
  font-size: 13px;
  line-height: 1.4;
  align-items: flex-start;
}
.tip-item.info { color: var(--text-secondary); }
.tip-item.alert { color: #f59e0b; }
.tip-item.success { color: var(--accent-green); }

.suggestion-panel {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  animation: fadeIn 0.3s ease-out;
}

/* Bento Grid */
.features-section {
  padding: 80px 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.bento-card {
  background: rgba(10, 16, 32, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
}
.bento-card:hover {
  border-color: rgba(0, 240, 255, 0.25);
  transform: translateY(-2px);
}
.bento-col-2 {
  grid-column: span 2;
}
.bento-card-body {
  position: relative;
  z-index: 2;
}
.bento-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.bento-card p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Seção de Oferta & Preço */
.offer-section {
  padding: 100px 0;
}
.offer-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: var(--space-4);
}
.offer-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}
.offer-desc {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto var(--space-10) auto;
}
.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.7) 0%, rgba(2, 6, 16, 0.9) 100%);
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  position: relative;
}
.card-header-premium {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-purple);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.pricing-price .currency {
  font-size: 24px;
  font-weight: 600;
  vertical-align: super;
}
.pricing-price .period {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}
.tax-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-8);
}
.pricing-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
  margin-bottom: var(--space-6);
}
.pricing-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 14px;
}
.guarantee-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: var(--space-4);
}

/* Rodapé */
.main-footer {
  border-top: 1px solid var(--border-light);
  padding: var(--space-8) 0;
  background: #02040a;
}
.main-footer p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Rodapé */
.main-footer {
  border-top: 1px solid var(--border-light);
  padding: var(--space-8) 0;
  background: #02040a;
  position: relative;
  z-index: 10;
}
.main-footer p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.15); }
  50% { box-shadow: 0 0 30px rgba(0, 240, 255, 0.35); }
  100% { box-shadow: 0 0 15px rgba(0, 240, 255, 0.15); }
}

/* Scroll Reveal System */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mockups Interativos CSS */
.app-showcase-section {
  padding: 100px 0;
  background: radial-gradient(100% 50% at 50% 50%, rgba(139, 92, 246, 0.05) 0%, rgba(4, 8, 12, 0) 100%);
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  margin-top: var(--space-10);
}

.showcase-visual {
  position: relative;
  perspective: 1000px;
}

.device-frame {
  background: #090d16;
  border: 4px solid #1e293b;
  border-radius: 28px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8), 0 0 50px rgba(0, 240, 255, 0.1);
  padding: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: float 6s ease-in-out infinite;
}

.device-frame:hover {
  transform: rotateY(-5deg) rotateX(5deg) translateY(-5px);
}

.device-screen {
  background: #040812;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-family);
  font-size: 11px;
  user-select: none;
}

/* Estilo Tela: Dashboard de Ativos */
.screen-dashboard {
  padding: 16px;
}
.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.screen-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 12px;
}
.screen-xp-badge {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
}
.screen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.screen-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px;
}
.screen-card-title {
  color: var(--text-muted);
  font-size: 9px;
  text-transform: uppercase;
}
.screen-card-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
}
.screen-chart-placeholder {
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 8px;
}
.chart-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  transition: height 1s ease;
}
.chart-bar.active {
  background: linear-gradient(to top, var(--accent-purple), var(--accent));
}

/* Estilo Tela: Comunidade */
.screen-community {
  padding: 12px;
  max-height: 320px;
  overflow-y: hidden;
}
.community-post {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}
.post-author {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.author-avatar-mini {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-purple));
}
.author-name-mini {
  font-weight: 700;
  color: var(--text-primary);
}
.post-body {
  color: var(--text-secondary);
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.post-actions-mini {
  display: flex;
  gap: 12px;
  color: var(--text-muted);
  font-size: 9px;
  cursor: pointer;
}
.post-action-btn:hover {
  color: var(--accent);
}

/* Seção FAQ */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(4, 8, 12, 0) 0%, rgba(10, 16, 32, 0.2) 100%);
}
.faq-grid {
  max-width: 800px;
  margin: var(--space-10) auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.faq-item {
  background: rgba(10, 16, 32, 0.3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(0, 240, 255, 0.2);
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 200px;
}
.faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Prova Social da Comunidade (Cards) */
.social-proof-section {
  padding: 80px 0;
}
.proof-carousel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.proof-card {
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.5) 0%, rgba(4, 8, 16, 0.8) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  transition: var(--transition);
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0,240,255,0.05);
}
.proof-rating {
  color: #fbbf24; /* Ouro */
  margin-bottom: var(--space-3);
  display: flex;
  gap: 2px;
}
.proof-user {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-4);
}
.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,240,255,0.3);
  background: var(--bg-app);
}

/* Interface de Demo Grid Ajustada */
.demo-card {
  padding: var(--space-6) !important;
}
.demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
}

/* Responsividade Mobile */
@media (max-width: 992px) {
  .hero-title { font-size: 48px; }
  .demo-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .proof-carousel-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .bento-col-2 { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* Espaçamentos e Paddings */
  .hero-section { padding: 60px 0 40px 0; }
  .anatomy-section, .demo-section, .features-section, .app-showcase-section, .social-proof-section, .faq-section, .offer-section {
    padding: 40px 0;
  }
  .section-header { margin-bottom: var(--space-6); }
  .section-title { font-size: 28px; }
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 15px; margin-bottom: var(--space-6); }
  
  /* Grids e Layouts */
  .anatomy-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: var(--space-4); }
  .bento-col-2 { grid-column: span 1; }
  .proof-carousel-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  
  .showcase-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
  }
  .showcase-grid[style*="direction: rtl;"] {
    direction: ltr !important;
  }
  .showcase-grid[style*="direction: rtl;"] > div {
    direction: ltr !important;
  }
  
  .demo-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
  }
  
  /* Celulares e Mockups */
  .device-frame {
    max-width: 100%;
    width: 290px;
    margin: 0 auto;
  }
  .radial-progress-bar {
    width: 70px;
    height: 70px;
  }
  .radial-value {
    font-size: 18px;
  }
  .score-radial-container {
    gap: var(--space-4);
  }
  
  /* Cards e UI */
  .card, .anatomy-card, .proof-card {
    padding: var(--space-5) !important;
  }
  .pricing-card {
    padding: var(--space-6) !important;
    margin: 0 auto;
  }
  .bento-card {
    min-height: 150px;
    padding: var(--space-5) !important;
  }
  
  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }
  .faq-answer {
    padding: 0 20px;
    font-size: 13px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }
  
  .nav-links { display: none; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
  .hero-actions { gap: var(--space-3); }
}

/* Pain Section & unique Mechanism Styles */
.pain-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, 0) 0%, rgba(10, 16, 32, 0.4) 50%, rgba(4, 8, 18, 0) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.pain-container {
  max-width: 800px;
  margin: 0 auto;
}
.mecanismo-box {
  position: relative;
  background: rgba(0, 240, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.05);
}
.mecanismo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

/* Modal CSS */
.prr-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.prr-modal.open {
  display: flex;
  opacity: 1;
}
.prr-modal-content {
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.98) 0%, rgba(4, 8, 18, 0.99) 100%);
  border: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.1);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--space-8);
  position: relative;
}
.prr-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 24px;
  transition: var(--transition);
}
.prr-modal-close:hover {
  color: var(--accent);
}
.prr-modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prr-modal-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.prr-modal-body h4 {
  color: #fff;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}
.prr-modal-body p {
  margin-bottom: 12px;
}

