/* -------------------------------------------------------------
 * Brand Identity & Global Custom Properties (CSS variables)
 * Design tokens for a state-of-the-art dark glassmorphic layout.
 * ------------------------------------------------------------- */
:root {
  --bg-dark: #0b0c10;
  --bg-card: rgba(20, 22, 32, 0.7);
  --bg-input: rgba(28, 31, 45, 0.8);
  --primary: hsl(14, 100%, 57%); /* Sunset Coral/Orange */
  --primary-hover: hsl(14, 100%, 62%);
  --primary-glow: rgba(255, 87, 34, 0.15);
  --accent: hsl(38, 92%, 50%); /* Warm Amber */
  --accent-hover: hsl(38, 92%, 55%);
  --accent-glow: rgba(255, 179, 0, 0.12);
  --success: hsl(142, 72%, 45%);
  --success-glow: rgba(16, 185, 129, 0.2);
  --danger: hsl(350, 72%, 50%);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.16);
  --shadow-glow: 0 16px 40px 0 rgba(0, 0, 0, 0.4);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------------------------------------------------------------
   Background Blur Glows (Dynamic Mesh Gradients)
   ------------------------------------------------------------- */
.blur-glow-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 87, 34, 0.12) 0%, rgba(255, 87, 34, 0.04) 40%, rgba(255, 87, 34, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.blur-glow-2 {
  position: absolute;
  top: 60vh;
  left: -200px;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 179, 0, 0.1) 0%, rgba(255, 179, 0, 0.03) 40%, rgba(255, 179, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Typography & General Classes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, #ff7a59 0%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 1px solid transparent;
  gap: 8px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-md {
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--accent-hover) 100%);
}

.btn-secondary {
  background-color: var(--border-glass);
  color: var(--text-main);
  border-color: var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.btn-block {
  width: 100%;
}

/* -------------------------------------------------------------
   Navbar (Glassmorphic)
   ------------------------------------------------------------- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-glass);
  background-color: rgba(7, 8, 13, 0.7);
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo-picture {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  gap: 32px;
}

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

.nav-link:hover {
  color: var(--text-main);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
}

/* -------------------------------------------------------------
   Hero Section
   ------------------------------------------------------------- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge-new {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.avatars {
  display: flex;
}

.avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.avatars span:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   Dashboard & CSS Mockup (Hero Screen)
   ------------------------------------------------------------- */
.hero-mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-frame {
  width: 100%;
  max-width: 480px;
  background-color: #111422;
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.mockup-header {
  height: 40px;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

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

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.mockup-url {
  margin-left: 20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 50px;
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.mockup-content {
  padding: 20px;
  background-color: #0c0d14;
}

.preview-cardapio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.restaurant-banner {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  height: 120px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.restaurant-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2px;
}

.restaurant-info p {
  font-size: 0.75rem;
  color: #e5e7eb;
}

.status-open {
  color: var(--success);
  font-weight: 600;
}

.cardapio-categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.cat-pill {
  padding: 6px 12px;
  background-color: var(--border-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.cat-pill.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border: none;
}

.cardapio-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cardapio-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  gap: 16px;
}

.item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-details h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.item-details p {
  font-size: 0.75rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: #60a5fa;
}

.item-img {
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-md);
  position: relative;
  flex-shrink: 0;
}

.add-btn {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.add-btn svg {
  width: 14px;
  height: 14px;
}

/* -------------------------------------------------------------
   Stats Section
   ------------------------------------------------------------- */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
}

/* -------------------------------------------------------------
   Features Grid Section
   ------------------------------------------------------------- */
.features-section {
  padding: 100px 0;
}

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

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  margin-bottom: 24px;
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile actions hidden on desktop */
.mobile-only-action {
  display: none !important;
}

/* -------------------------------------------------------------
   Interactive Simulator Section
   ------------------------------------------------------------- */
.simulator-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.demo-card-container {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.demo-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  gap: 40px;
  backdrop-filter: blur(8px);
  min-height: 380px;
  align-items: start;
}

.demo-card-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-card-title {
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}

.demo-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.demo-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  padding: 0;
  margin: 0;
}

.demo-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.demo-card-features li i {
  color: var(--success);
  width: 18px;
  height: 18px;
}

.demo-card-action {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 16px;
  width: 100%;
}

.action-box .form-group {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.action-box .form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.action-box .form-group input,
.action-box .form-group select {
  width: 100%;
  padding: 10px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
  background: rgba(0,0,0,0.2);
  color: #fff;
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.action-box .form-group input:focus,
.action-box .form-group select:focus {
  border-color: var(--primary);
  background: rgba(0,0,0,0.3);
}

.action-box.loading-box {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.spinner-demo {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-glass);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.action-box.loading-box h4 {
  font-size: 1.15rem;
  color: #fff;
  margin: 0;
}

.action-box.loading-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.action-box.success-box {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.success-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-badge svg {
  width: 24px;
  height: 24px;
}

.action-box.success-box h4 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2px;
  margin-top: 0;
}

.demo-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: rgba(0,0,0,0.2);
  padding: 12px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-glass);
}

.demo-link-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
}

.demo-link-item:last-child {
  border-top: 1px solid var(--border-glass);
  padding-top: 8px;
  margin-top: 4px;
}

.demo-link-item span {
  color: var(--text-muted);
  font-weight: 500;
}

.demo-link-item a {
  color: #60a5fa;
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
  transition: var(--transition-smooth);
}

.demo-link-item a:hover {
  text-decoration: underline;
}

.demo-link-item:last-child a {
  color: #a78bfa;
}

.demo-credentials {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.75rem;
  background: rgba(255,255,255,0.01);
  border: 1px dashed var(--border-glass);
  padding: 8px 12px;
  border-radius: var(--border-radius-md);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.credential-item span {
  color: var(--text-muted);
}

.credential-item strong {
  color: #fff;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 40px;
}

.simulator-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simulator-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--text-main);
}

.simulator-label svg {
  width: 20px;
  height: 20px;
}

/* Phone Layout Simulator */
.phone-frame {
  width: 320px;
  height: 580px;
  background-color: #000;
  border: 10px solid #222;
  border-radius: 36px;
  box-shadow: var(--shadow-glow);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #07080c;
}

.phone-bar {
  height: 24px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #fff;
}

.phone-icons {
  display: flex;
  gap: 6px;
}

.phone-icons svg {
  width: 10px;
  height: 10px;
}

.phone-header {
  height: 48px;
  background-color: #111422;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.phone-header h5 {
  font-size: 0.95rem;
}

.phone-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  position: relative;
}

.sim-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-item-info h6 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.sim-item-info p {
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.sim-item-info span {
  font-weight: 700;
  font-size: 0.8rem;
  color: #60a5fa;
}

.sim-add-btn {
  padding: 6px 12px;
  border-radius: 6px;
  background-color: var(--primary);
  border: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.sim-add-btn.added {
  background-color: var(--success);
}

.sim-cart {
  margin-top: auto;
  background-color: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--border-radius-md);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
}

.sim-cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.sim-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  border-top: 1px solid var(--border-glass);
  padding-top: 6px;
  margin-top: 4px;
}

.sim-checkout-btn {
  margin-top: 10px;
  padding: 10px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

/* Status Screen (Simulation) */
.sim-status-screen {
  position: absolute;
  top: 48px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #07080c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  z-index: 10;
}

.status-circle-animate {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.sim-status-screen h6 {
  font-size: 1rem;
}

.sim-status-screen p {
  font-size: 0.75rem;
  max-width: 200px;
}

.sim-waha-notify {
  margin-top: 24px;
  background-color: #1e293b;
  border-radius: 8px;
  padding: 10px;
  text-align: left;
  border-left: 4px solid var(--success);
  width: 100%;
  max-width: 240px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  animation: slide-in-top 0.4s ease;
}

.waha-notify-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.waha-notify-header svg {
  width: 12px;
  height: 12px;
  color: var(--success);
}

.sim-waha-notify p {
  font-size: 0.7rem;
  color: #f1f5f9;
  max-width: 100%;
}

/* Dashboard Layout Simulator */
.dashboard-frame {
  width: 100%;
  height: 520px;
  background-color: #111422;
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.dashboard-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.db-header {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.db-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
}

.db-title svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

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

.db-body {
  flex: 1;
  display: flex;
}

.db-sidebar {
  width: 140px;
  background-color: rgba(255,255,255,0.01);
  border-right: 1px solid var(--border-glass);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.db-sidebar span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
}

.db-sidebar span.active {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary);
}

.db-sidebar span svg {
  width: 14px;
  height: 14px;
}

.db-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.db-content h5 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

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

.db-order-row {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 16px;
}

.db-order-row.empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 40px;
  border-style: dashed;
}

.db-order-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.db-order-id {
  font-weight: 700;
  color: #60a5fa;
  font-size: 0.85rem;
}

.db-order-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.db-order-details {
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-pix {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.db-order-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn-db {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-db-danger {
  background-color: var(--danger);
  color: #fff;
}

.btn-db-success {
  background-color: var(--success);
  color: #fff;
}

.btn-db-primary {
  background-color: var(--primary);
  color: #fff;
}

/* -------------------------------------------------------------
   How It Works Timeline
   ------------------------------------------------------------- */
.how-it-works-section {
  padding: 100px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 30px;
  right: 30px;
  height: 2px;
  background-color: var(--border-glass);
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.timeline-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -------------------------------------------------------------
   Pricing Section
   ------------------------------------------------------------- */
.pricing-section {
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.price-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.price-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.price-header h4 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.price-value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-header p {
  font-size: 0.85rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--success);
}

/* -------------------------------------------------------------
   Contact Section
   ------------------------------------------------------------- */
.contact-section {
  padding: 100px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info h2 {
  font-size: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-form-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input,
.form-group select {
  background-color: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}

/* -------------------------------------------------------------
   Footer Section
   ------------------------------------------------------------- */
.footer-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-glass);
  background-color: rgba(0, 0, 0, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
}

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

.footer-links h6 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal p {
  font-size: 0.8rem;
}

/* -------------------------------------------------------------
   Animations
   ------------------------------------------------------------- */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delay {
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-slide-up-delay-2 {
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.animate-fade-in-right {
  opacity: 0;
  animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

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

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

@keyframes fadeInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* -------------------------------------------------------------
   Responsive Media Queries
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .badge-new {
    align-self: center;
  }

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

  .hero-social-proof {
    justify-content: center;
  }

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

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

  .demo-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 30px;
  }

  .demo-card-action {
    padding: 24px;
  }

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

  .price-card.popular {
    transform: none;
  }

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

  .timeline::before {
    display: none;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Navigation Mobile Responsive Styles (Moved here to prevent header layout breakage on tablets) */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(11, 12, 16, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    padding: 30px 24px;
    gap: 20px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slide-in-top 0.3s ease forwards;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }

  .nav-actions #btn-login-header,
  .nav-actions #btn-cta-header {
    display: none;
  }

  .mobile-only-action {
    display: block !important;
  }

  .mobile-only-action.btn {
    display: inline-flex !important;
    width: 100%;
  }

  #btn-login-mobile,
  #btn-cta-mobile {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
  }

  .mobile-toggle {
    display: block;
  }
}

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

  .demo-card {
    padding: 24px;
  }

  .demo-card-action {
    padding: 20px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

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

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

  .stats-container {
    grid-template-columns: 1fr;
  }

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

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .demo-card {
    padding: 16px;
  }

  .demo-card-action {
    padding: 16px;
  }

  .cf-turnstile {
    transform: scale(0.9);
    transform-origin: center center;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .demo-credentials {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .cf-turnstile {
    transform: scale(0.8);
    transform-origin: center center;
  }
}
