/* ==========================================================================
   FLOWPDV OFICIAL — DESIGN SYSTEM MASTER ADMIN INSPIRATION
   Dark Slate #0f172a • Indigo & Cyan Accents • Emerald Success • Glassmorphism
   100% Responsivo: Desktop • Notebooks (125%/150%) • Tablets • Mobile
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700;800&display=swap');

:root {
  --bg-dark: #0f172a;
  --bg-surface-1: #1e293b;
  --bg-surface-2: #273549;
  --bg-surface-3: #334155;
  --bg-card: rgba(30, 41, 59, 0.85);
  --border-card: #334155;
  --border-highlight: rgba(99, 102, 241, 0.5);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --accent-cyan: #38bdf8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.3);

  --accent-indigo: #6366f1;
  --accent-purple: #7c3aed;
  --accent-purple-hover: #6d28d9;
  --accent-purple-glow: rgba(124, 58, 237, 0.35);

  --accent-green: #10b981;
  --accent-green-hover: #059669;
  --accent-green-glow: rgba(16, 185, 129, 0.35);

  --accent-amber: #f59e0b;
  --accent-red: #ef4444;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow-purple: 0 0 35px rgba(124, 58, 237, 0.25);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

html, body {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at top right, #1e1b4b 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ==========================================================================
   REGRA DE OURO: ESCALONAMENTO OS (125% / 150%) NO WINDOWS
   ========================================================================== */
@media (min-width: 993px) and (max-width: 1400px) {
  body {
    zoom: 0.8;
  }
}

/* Container Global */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER / NAVBAR FIXA
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-card);
  padding: 14px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.brand-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.brand-logo-text span {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.15s ease;
  cursor: pointer;
}

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

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

.btn-nav-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-nav-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--accent-purple), #4f46e5);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px var(--accent-purple-glow);
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-glow:hover {
  background: linear-gradient(135deg, var(--accent-purple-hover), #4338ca);
  box-shadow: 0 6px 22px rgba(124, 58, 237, 0.5);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 60px 0 40px 0;
  text-align: center;
  position: relative;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c084fc;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.2);
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 960px;
  margin: 0 auto 22px auto;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18.5px;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 34px auto;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-hero-main {
  height: 52px;
  padding: 0 30px;
  font-size: 15.5px;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-green), #047857);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 25px var(--accent-green-glow);
  transition: all 0.15s ease;
}

.btn-hero-main:hover {
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.55);
}

.btn-hero-secondary {
  height: 52px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-card);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-hero-secondary:hover {
  background: var(--bg-surface-2);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   SHOWCASE INTERATIVO DO PRODUTO (PRINTS REAIS 100% ENQUADRADOS SEM ZOOM)
   ========================================================================== */
.product-showcase-wrapper {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(56, 189, 248, 0.15));
  box-shadow: var(--shadow-glow-purple), var(--shadow-lg);
}

.product-mockup-window {
  background: #0b0f19;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.mockup-window-header {
  background: #111827;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-card);
}

.mockup-window-dots {
  display: flex;
  gap: 6px;
}

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

.window-dot.red { background: #ef4444; }
.window-dot.yellow { background: #f59e0b; }
.window-dot.green { background: #10b981; }

.mockup-window-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* Moldura que preserva 100% da imagem sem corte ou zoom excessivo */
.mockup-image-frame {
  width: 100%;
  background: #0b0f19;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mockup-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0 0 14px 14px;
  transition: opacity 0.2s ease;
}

/* Tabs do Showcase */
.showcase-tab-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.showcase-tab-btn {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease;
}

.showcase-tab-btn:hover {
  background: var(--bg-surface-2);
  color: #ffffff;
}

.showcase-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-purple), #4f46e5);
  color: #ffffff;
  border-color: var(--accent-purple);
  box-shadow: 0 4px 14px var(--accent-purple-glow);
}

/* ==========================================================================
   CARDS DE BENEFÍCIOS & FEATURES (GRID COM MINMAX)
   ========================================================================== */
.section-padding {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.section-tag {
  color: var(--accent-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16.5px;
  color: var(--text-muted);
}

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

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: var(--border-highlight);
  background: rgba(39, 53, 73, 0.85);
  box-shadow: var(--shadow-sm);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #c084fc;
}

.feature-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.feature-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   APP COMPANION (GESTÃO MOBILE SECTION)
   ========================================================================== */
.companion-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  margin: 30px 0 50px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.companion-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.companion-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
}

.companion-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

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

.companion-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.companion-list-item span {
  color: var(--accent-green);
  font-weight: 800;
}

.companion-phone-mockup {
  background: #000000;
  border: 8px solid #334155;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.2);
  max-width: 320px;
  margin: 0 auto;
}

.phone-screen {
  background: #0f172a;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   TABELA COMPARATIVA
   ========================================================================== */
.comparison-table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  background: var(--bg-surface-2);
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  border-bottom: 1px solid var(--border-card);
}

.comparison-table th.flow-col {
  background: rgba(124, 58, 237, 0.2);
  color: #c084fc;
  border-left: 1px solid rgba(124, 58, 237, 0.3);
  border-right: 1px solid rgba(124, 58, 237, 0.3);
}

.comparison-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table td.flow-col {
  background: rgba(124, 58, 237, 0.05);
  color: #ffffff;
  font-weight: 700;
  border-left: 1px solid rgba(124, 58, 237, 0.2);
  border-right: 1px solid rgba(124, 58, 237, 0.2);
}

/* ==========================================================================
   PLANOS & PREÇOS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #273549 0%, #1e293b 100%);
  border-color: #6366f1;
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.3);
  transform: scale(1.02);
}

.pricing-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.pricing-name {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.pricing-value {
  font-size: 40px;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  color: #ffffff;
}

.pricing-period {
  font-size: 13.5px;
  color: var(--text-dim);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid var(--border-card);
  padding-top: 18px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.pricing-feature-item span {
  color: var(--accent-green);
  font-weight: 800;
}

.btn-pricing-cta {
  width: 100%;
  height: 46px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-pricing-cta.outline {
  background: transparent;
  border: 1px solid var(--border-card);
  color: #ffffff;
}

.btn-pricing-cta.outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-pricing-cta.primary {
  background: linear-gradient(135deg, var(--accent-green), #047857);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--accent-green-glow);
  border: none;
}

.btn-pricing-cta.primary:hover {
  background: linear-gradient(135deg, #34d399, #059669);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.5);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.2s ease;
  color: var(--accent-cyan);
}

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

.faq-answer {
  display: none;
  padding: 0 22px 18px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   BANNER FINAL WHATSAPP & FOOTER
   ========================================================================== */
.final-cta-card {
  background: radial-gradient(circle at center, #1e1b4b 0%, #0f172a 100%);
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: var(--radius-xl);
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.25);
  margin-bottom: 60px;
}

.footer {
  border-top: 1px solid var(--border-card);
  padding: 36px 0;
  color: var(--text-dim);
  font-size: 13.5px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
}

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

/* ==========================================================================
   MENU HAMBÚRGUER & DRAWER MOBILE
   ========================================================================== */
.btn-hamburger-mobile {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.btn-hamburger-mobile span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-hamburger-mobile.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.btn-hamburger-mobile.active span:nth-child(2) {
  opacity: 0;
}
.btn-hamburger-mobile.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100vh;
  height: 100dvh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border-card);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 16px;
}

.btn-close-mobile-nav {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.btn-close-mobile-nav:hover {
  background: #334155;
  color: #fff;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--bg-surface-1);
  color: var(--accent-cyan);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-card);
}

.btn-mobile-drawer {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn-mobile-drawer.primary {
  background: linear-gradient(135deg, var(--accent-purple), #4f46e5);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-purple-glow);
}

.btn-mobile-drawer.secondary {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-card);
  color: #fff;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* ==========================================================================
   RESPONSIVIDADE: TABLETS & NOTEBOOKS MENORES (769px a 1024px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 38px;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .pricing-card {
    padding: 24px 18px;
  }
  .pricing-value {
    font-size: 32px;
  }
  .companion-section {
    padding: 36px 28px;
    gap: 24px;
  }
}

/* ==========================================================================
   RESPONSIVIDADE: CELULARES & SMARTPHONES (Até 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 22px;
  }

  .section-title {
    font-size: 23px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 13.5px;
  }

  /* Navbar */
  .nav-links,
  .nav-actions {
    display: none;
  }

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

  .navbar {
    padding: 10px 0;
  }

  .brand-logo-text {
    font-size: 20px;
  }

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

  /* Hero */
  .hero-section {
    padding: 28px 0 18px 0;
  }

  .hero-pill-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.22;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-hero-main,
  .btn-hero-secondary {
    width: 100%;
    height: 48px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
  }

  .hero-badges-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .hero-badge-item {
    font-size: 11px;
    padding: 8px 10px;
    gap: 6px;
  }

  /* Mobile Table Hint */
  .mobile-table-hint {
    display: inline-block;
    text-align: center;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.1);
    border: 1px dashed rgba(56, 189, 248, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  /* Showcase / Mockup */
  .showcase-tab-selector {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 4px 2px 12px 2px;
    margin-top: 14px;
  }

  .showcase-tab-selector::-webkit-scrollbar {
    display: none;
  }

  .showcase-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    padding: 9px 16px;
    border-radius: 20px;
  }

  .mockup-window {
    border-radius: 12px;
  }

  .mockup-window-header {
    padding: 8px 12px;
  }

  .mockup-window-title {
    font-size: 10.5px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  /* Companion Gestão Mobile */
  .companion-section {
    display: flex !important;
    flex-direction: column !important;
    padding: 28px 18px !important;
    gap: 24px !important;
    border-radius: var(--radius-lg) !important;
    margin: 20px 0 36px 0 !important;
  }

  .companion-content {
    width: 100% !important;
    text-align: left !important;
  }

  .companion-title {
    font-size: 23px !important;
    line-height: 1.25 !important;
  }

  .companion-desc {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .companion-list-item {
    font-size: 13.5px !important;
  }

  .companion-phone-mockup {
    max-width: 280px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 10px !important;
  }

  /* Tabela Comparativa Mobile */
  .comparison-table-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }

  .comparison-table {
    min-width: 520px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 12.5px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #1e293b;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
  }

  .comparison-table th:first-child {
    background: #273549;
  }

  /* Preços / Planos */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-card.featured {
    transform: none;
    border-width: 2px;
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.35);
  }

  .pricing-name {
    font-size: 19px;
  }

  .pricing-value {
    font-size: 36px;
  }

  .btn-pricing-cta {
    height: 48px;
    font-size: 15px;
    font-weight: 800;
  }

  /* FAQ */
  .faq-question {
    padding: 15px 18px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 18px 15px 18px;
    font-size: 13.5px;
  }

  /* Banner Final CTA */
  .final-cta-card {
    padding: 34px 18px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
  }

  .final-cta-card h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .final-cta-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-cta-whatsapp {
    width: 100%;
    height: 50px;
    font-size: 15px;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 24px 0;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
