/* ==========================================================================
   Lamp's Sistemas | Lamp's Clinic - Unified Light Design System
   Inspired by Prontuário Brasil: Humanized, Warm, Trustworthy, Light & Dynamic
   ========================================================================== */

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

:root {
  /* Brand Palette - Humanized Teal, Cyan & Mint */
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --primary-light: #14b8a6;
  --primary-subtle: #ccfbf1;
  --primary-bg: #f0fdf4;
  
  --secondary: #0284c7;
  --secondary-hover: #0369a1;
  --secondary-subtle: #e0f2fe;
  
  --accent: #f59e0b;
  --accent-light: #fef3c7;
  
  /* Neutral Palette */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.95);
  
  --text-main: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-hover: #cbd5e1;
  --border-focus: #0d9488;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(13, 148, 136, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.1), 0 10px 15px -5px rgba(13, 148, 136, 0.05);
  --shadow-glow: 0 0 25px rgba(13, 148, 136, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body {
  background-color: #0f172a !important;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Top Announcement Bar (Sleek SaaS Ribbon) */
.top-bar {
  background: linear-gradient(90deg, #070d18 0%, #0d222a 35%, #0f2e35 50%, #0d222a 65%, #070d18 100%);
  border-bottom: 1px solid rgba(45, 212, 191, 0.2);
  color: #ffffff;
  padding: 7px 16px;
  font-size: 0.84rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1001;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.top-bar:hover {
  background: linear-gradient(90deg, #091222 0%, #102e38 35%, #133e47 50%, #102e38 65%, #091222 100%);
  border-bottom-color: rgba(45, 212, 191, 0.45);
}

.top-bar:hover .top-bar-cta .top-bar-arrow {
  transform: translateX(3px);
}

.top-bar-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
}

.top-bar-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 2px 9px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

.badge-fire {
  font-size: 0.8rem;
  line-height: 1;
}

.top-bar-text {
  color: #e2e8f0;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.top-bar-cta {
  color: #2dd4bf;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 2px;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.top-bar-cta .top-bar-arrow {
  width: 13px;
  height: 13px;
  stroke: #2dd4bf;
  transition: transform 0.2s ease;
}

/* Header & Glass Navigation (Dark Floating Bar) */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 17, 30, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-title span {
  color: #ffffff;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: #cbd5e1;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #2dd4bf;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-header-pill {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-header-pill:hover {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.mobile-toggle {
  display: none !important;
}

/* Base Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-main);
  border: 1.5px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-subtle);
}

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

.btn-ghost:hover {
  color: var(--primary);
  background-color: rgba(13, 148, 136, 0.08);
}

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

/* Layout Container & Section Headers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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



.section-glow-separator {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(13, 148, 136, 0.4) 50%, transparent 100%);
  margin: 0 auto;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: var(--primary-subtle);
  color: var(--primary-hover);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   Full-Bleed Cinematic Hero (Inspirado no Prontuário Brasil)
   ========================================================================== */
.hero-cinematic {
  position: relative;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('assets/hero_cinematic.jpg') no-repeat center center / cover;
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(8, 14, 26, 0.75) 0%, 
    rgba(10, 17, 30, 0.82) 60%, 
    rgba(10, 17, 30, 0.92) 100%
  );
  z-index: 1;
}

.hero-cinematic-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-cinematic-content {
  max-width: 940px;
}

.hero-cinematic-title {
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero-cinematic-title span {
  display: inline;
  color: #ffffff;
}

.hero-cinematic-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 720px;
}

.hero-cinematic-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.btn-pill-white {
  background-color: #ffffff;
  color: #0f172a;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-pill-white:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.25);
}

.btn-pill-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.btn-pill-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-cinematic-footer {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-cinematic-footer::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #0d9488;
}

/* Hero Trust Metrics Bar (Transição de Impacto) */
.hero-trust-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  color: #ffffff;
  position: relative;
  z-index: 10;
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-bar-item {
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.trust-bar-item:hover {
  transform: translateY(-4px);
}

.trust-bar-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: #2dd4bf;
  line-height: 1.1;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.trust-bar-item:hover .trust-bar-number {
  color: #5eead4;
  text-shadow: 0 0 16px rgba(45, 212, 191, 0.5);
}

.trust-bar-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 4px;
}

.trust-bar-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .trust-bar-divider {
    display: none;
  }
}

/* ==========================================================================
   Bento Integration Section (O que precisa funcionar junto...)
   ========================================================================== */
.bento-integration-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 104px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
}

.bento-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -0.8px;
  text-align: center;
  text-wrap: balance;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.bento-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bento-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px 28px;
  border: 1.5px solid rgba(226, 232, 240, 0.85);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  transition: var(--transition-smooth);
}

.bento-card:hover {
  background: #ffffff;
  border-color: rgba(13, 148, 136, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(13, 148, 136, 0.12), 0 0 0 1px rgba(13, 148, 136, 0.2);
}

.bento-icon-badge {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: #f0fdfa;
  border: 1.5px solid rgba(13, 148, 136, 0.2);
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.08);
  transition: all 0.35s ease;
}

.bento-icon-badge svg,
.bento-icon-badge i {
  width: 22px;
  height: 22px;
}

.bento-card:hover .bento-icon-badge {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.4);
}

.bento-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.4px;
}

.bento-card-text {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
}

.bento-col-center {
  height: 100%;
}

.bento-image-card {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  border: 1.5px solid rgba(226, 232, 240, 0.85);
  transition: var(--transition-smooth);
}

.bento-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
  border-color: rgba(13, 148, 136, 0.3);
}

.bento-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-image-card:hover img {
  transform: scale(1.03);
}

.bento-bottom-card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 40px 44px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: var(--transition-smooth);
}

.bento-bottom-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.bento-bottom-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.bento-bottom-text {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 24px;
  max-width: 840px;
}

.bento-cta-card {
  position: relative;
  background: radial-gradient(120% 140% at 50% 0%, #ffffff 0%, #f0fdf9 40%, #e6f7f5 100%);
  border: 1.5px solid rgba(13, 148, 136, 0.22);
  border-radius: 28px;
  padding: 56px 36px;
  text-align: center;
  box-shadow: 0 20px 45px -15px rgba(13, 148, 136, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.bento-cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bento-cta-card:hover {
  background: radial-gradient(120% 140% at 50% 0%, #ffffff 0%, #ecfdf7 40%, #dff5f1 100%);
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 26px 55px -15px rgba(13, 148, 136, 0.2), 0 0 0 1px rgba(255, 255, 255, 1) inset;
}

.bento-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.bento-cta-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
  text-wrap: balance;
}

.bento-cta-subtitle {
  font-size: 1.18rem;
  color: #475569;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.5;
}

.btn-cta-glow {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-cta-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(13, 148, 136, 0.45), 0 0 25px rgba(20, 184, 166, 0.35);
  background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
  color: #ffffff;
}

.btn-cta-glow i {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .bento-cta-card {
    padding: 32px 18px;
    border-radius: 20px;
  }

  .bento-cta-inner {
    width: 100%;
    max-width: 100%;
  }

  .bento-cta-action {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .bento-cta-title {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .bento-cta-subtitle {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }

  .btn-cta-glow {
    width: 100%;
    max-width: 100%;
    padding: 13px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    gap: 8px;
    box-sizing: border-box;
  }

  .btn-cta-glow i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .bento-cta-card {
    padding: 24px 14px;
    border-radius: 18px;
  }

  .bento-cta-title {
    font-size: 1.22rem;
    line-height: 1.3;
  }

  .bento-cta-subtitle {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }

  .btn-cta-glow {
    padding: 11px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.1px;
    gap: 6px;
  }

  .btn-cta-glow i {
    width: 15px;
    height: 15px;
  }
}

.bento-tags-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bento-tag-pill {
  background: #ffffff;
  color: #334155;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bento-tag-pill i {
  width: 14px;
  height: 14px;
  color: #10b981;
}

/* ==========================================================================
   Key Integrated Sectors (5 Cards on 1 Line)
   ========================================================================== */
.sectors-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding: 104px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.sectors-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 48px;
}

.sector-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background-color: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.sector-tab-btn i {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.sector-tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background-color: var(--primary-subtle);
}

.sector-tab-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

.sector-tab-btn.active i {
  color: #ffffff;
}

.sector-display-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 36px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.sector-display-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sector-display-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.sector-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-tile {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 14px;
  transition: var(--transition-smooth);
}

.feature-tile:hover {
  background: #ffffff;
  border-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.12);
  transform: translateY(-2px);
}

.feature-tile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.feature-tile-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-subtle);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feature-tile-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.feature-tile-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.sector-display-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background-color: #ffffff;
}

.sector-display-media img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.integration-pulse-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   Chat / CRM Section (Clean, Modern & High Impact)
   ========================================================================== */
.chat-crm-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  padding: 96px 0;
}

.chat-crm-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: stretch;
}

.chat-crm-hero-card {
  background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.chat-crm-hero-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.chat-crm-hero-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
}

.chat-crm-hero-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

.chat-crm-hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.chat-crm-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.chat-crm-list-icon {
  width: 24px;
  height: 24px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(45, 212, 191, 0.3);
  color: #2dd4bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-crm-list-icon i {
  width: 14px;
  height: 14px;
}

.chat-crm-features-wrapper {
  display: flex;
  flex-direction: column;
}

.chat-crm-subtitle {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.chat-crm-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chat-crm-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: var(--transition-smooth);
}

.chat-crm-card:hover {
  border-color: #0d9488;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.08);
}

.chat-crm-card-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  padding: 6px 12px;
  border-radius: 10px;
  line-height: 1;
  flex-shrink: 0;
}

.chat-crm-card-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.chat-crm-card-content p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

/* ==========================================================================
   Specialty Customization Section (Layout Asimétrico com Carrossel - Estilo Einstein)
   ========================================================================== */
#especialidades, .specialties-section {
  background: linear-gradient(135deg, #eef6ff 0%, #f0f7ff 100%) !important;
  color: var(--text-main) !important;
  padding: 96px 0;
  position: relative;
  z-index: 2;
}

.specialties-split-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: center;
}

.specialties-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.specialties-split-title {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0b1329;
  margin: 16px 0 16px 0;
  letter-spacing: -0.6px;
}

.specialties-split-desc {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 32px;
}

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

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.carousel-nav-btn i,
.carousel-nav-btn svg {
  width: 22px;
  height: 22px;
}

.carousel-nav-btn:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.specialties-carousel-container {
  overflow: hidden;
  width: 100%;
}

.specialties-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 6px 24px 6px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
}

.specialties-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.specialties-carousel-track .specialty-card {
  flex: 0 0 320px;
  min-height: 250px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.specialties-carousel-track .specialty-card:hover {
  transform: translateY(-6px);
  border-color: #0d9488;
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.12);
}

.specialty-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
}

.specialty-icon i,
.specialty-icon svg {
  width: 24px;
  height: 24px;
}

.specialty-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.specialty-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.specialty-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specialty-pill {
  background-color: var(--bg-main);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   Security & LGPD Section (Dark Contrast Accent)
   ========================================================================== */
.security-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  border-top: 1px solid rgba(45, 212, 191, 0.25);
  border-bottom: 1px solid rgba(45, 212, 191, 0.15);
  box-shadow: inset 0 24px 50px -10px rgba(45, 212, 191, 0.08), inset 0 -24px 50px -10px rgba(2, 132, 199, 0.08);
}

.security-section .section-title {
  color: #ffffff;
}

.security-section .section-description {
  color: #94a3b8;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.security-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.security-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.security-badge-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
}

.security-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.security-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ==========================================================================
   Especialidades - Layout Clean & Integrado
   ========================================================================== */
.spec-v2-section {
  background: #ffffff;
  padding: 96px 0 104px 0;
  position: relative;
}

.spec-v2-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.spec-v2-card {
  grid-column: span 2;
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 22px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Center the 2 cards on the second row (columns 2-3 and 4-5) */
.spec-v2-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.spec-v2-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.spec-v2-card:hover {
  background: #ffffff;
  transform: translateY(-5px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 16px 36px -8px rgba(13, 148, 136, 0.16), 0 0 0 1px rgba(13, 148, 136, 0.2);
}

.spec-v2-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: #f0fdfa;
  border: 1.5px solid rgba(13, 148, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d9488;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.08);
  transition: all 0.35s ease;
}

.spec-v2-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.spec-v2-card:hover .spec-v2-icon-wrap {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 8px 20px -4px rgba(13, 148, 136, 0.45);
}

.spec-v2-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-v2-header-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.spec-v2-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.spec-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(13, 148, 136, 0.16);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-featured-badge i,
.spec-featured-badge svg {
  width: 12px;
  height: 12px;
  color: #0d9488;
}

.spec-v2-card-headline {
  font-size: 0.94rem;
  font-weight: 600;
  color: #0d9488;
  line-height: 1.45;
  margin-top: 3px;
}

/* Strategic Featured Card: Clínicas de Especialidades */
.spec-v2-featured {
  background: radial-gradient(130% 130% at 20% 0%, #ffffff 0%, #f0fdfa 55%, #e1f6f2 100%);
  border: 2px solid #0d9488;
  box-shadow: 0 14px 34px -6px rgba(13, 148, 136, 0.24), 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.spec-v2-featured .spec-v2-icon-wrap {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 18px -2px rgba(13, 148, 136, 0.45);
}

.spec-v2-featured .spec-v2-card-headline {
  color: #0f766e;
  font-weight: 700;
}

.spec-v2-featured:hover {
  transform: translateY(-6px);
  border-color: #0f766e;
  box-shadow: 0 22px 48px -8px rgba(13, 148, 136, 0.32), 0 0 0 5px rgba(13, 148, 136, 0.14);
}

@media (max-width: 1024px) {
  .spec-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .spec-v2-card {
    grid-column: span 1 !important;
  }
  
  .spec-v2-card:nth-child(5) {
    grid-column: span 2 !important;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .spec-v2-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .spec-v2-card,
  .spec-v2-card:nth-child(5) {
    grid-column: span 1 !important;
    max-width: 100%;
    padding: 20px 18px;
  }
}

/* ==========================================================================
   Pricing Section V3 (4 Planos Lado a Lado)
   ========================================================================== */
.pricing-section {
  background: #0b1329;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(2, 132, 199, 0.12) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  padding: 100px 0 110px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.pricing-main-header {
  margin-bottom: 48px;
}

.pricing-main-header .section-badge {
  background: rgba(13, 148, 136, 0.2);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.35);
}

.pricing-main-header .section-title {
  color: #ffffff;
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.pricing-main-header .section-description {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 680px;
}

/* 4-Column Grid */
.pricing-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1360px;
  margin: 0 auto;
}

.pricing-card-v3 {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 24px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card-v3:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.pricing-card-v3.border-teal {
  border: 1.5px solid #0d9488;
}

.pricing-card-v3.border-teal:hover {
  box-shadow: 0 20px 45px rgba(13, 148, 136, 0.25);
}

.pricing-card-v3.border-orange {
  border: 2px solid #f97316;
}

.pricing-card-v3.featured-plus {
  background: radial-gradient(120% 120% at 90% 0%, #fffbf5 0%, #ffffff 60%);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.18);
}

.pricing-card-v3.featured-plus:hover {
  box-shadow: 0 22px 50px rgba(249, 115, 22, 0.28);
}

.pricing-card-v3.border-blue {
  border: 1.5px solid #0284c7;
}

.pricing-card-v3.border-blue:hover {
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.25);
}

.featured-tag-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.45);
}

.featured-tag-pill svg {
  width: 12px;
  height: 12px;
}

.card-v3-body {
  display: flex;
  flex-direction: column;
}

.card-v3-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 16px;
}

.card-v3-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
}

.card-v3-tag.tag-teal {
  color: #0d9488;
  background: #f0fdfa;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.card-v3-tag.tag-dark {
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.card-v3-tag.tag-orange {
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid rgba(234, 88, 12, 0.25);
}

.card-v3-tag.tag-blue {
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.card-v3-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.4px;
  margin: 0;
}

.card-v3-price {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.card-v3-price .from-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-v3-price .price-num {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}

.card-v3-price .price-period {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}

.price-teal .price-num { color: #0d9488; }
.price-dark .price-num { color: #0f172a; }
.price-orange .price-num { color: #ea580c; }
.price-blue .price-num { color: #0284c7; }

.card-v3-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
  margin: 0 0 20px 0;
  min-height: 48px;
}

.pricing-bullets-v3 {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-bullets-v3 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.4;
}

.card-v3-footer {
  margin-top: auto;
}

.bullet-dot {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  margin-top: 3px;
}

.bullet-dot.teal {
  background: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.bullet-dot.orange {
  background: #ea580c;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.bullet-dot.blue {
  background: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

/* ==========================================================================
   Pricing Optionals Module (Modern High-End SaaS Cards Grid)
   ========================================================================== */
.pricing-optionals-bar {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px 32px;
  margin: 44px auto 0 auto;
  max-width: 1360px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.optionals-header {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.optionals-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.optionals-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.25) 0%, rgba(2, 132, 199, 0.25) 100%);
  border: 1.5px solid rgba(45, 212, 191, 0.4);
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.2);
}

.optionals-icon-circle svg,
.optionals-icon-circle i {
  width: 20px;
  height: 20px;
}

.optionals-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.optionals-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.2px;
}

.optionals-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

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

.option-item-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.option-item-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(45, 212, 191, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.3);
}

.option-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-item-icon.icon-teal {
  background: rgba(13, 148, 136, 0.15);
  border-color: rgba(13, 148, 136, 0.3);
  color: #2dd4bf;
}

.option-item-icon.icon-blue {
  background: rgba(2, 132, 199, 0.15);
  border-color: rgba(2, 132, 199, 0.3);
  color: #38bdf8;
}

.option-item-icon.icon-emerald {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.option-item-icon svg,
.option-item-icon i {
  width: 20px;
  height: 20px;
}

.option-item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.option-item-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
}

.option-item-price-tag {
  background: rgba(13, 148, 136, 0.18);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #2dd4bf;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.option-item-price-tag strong {
  font-size: 0.88rem;
  color: #ffffff;
}

.option-item-price-tag span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #99f6e4;
}

.option-tag-custom {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #cbd5e1;
  padding: 6px 12px;
}

.option-tag-custom strong {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.option-tag-custom span {
  font-size: 0.68rem;
  color: #94a3b8;
}

/* Button variants for pricing - Unified & Discreet */
.btn-pricing {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  background: #f8fafc;
  color: #1e293b;
  border: 1.5px solid #cbd5e1;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-pricing:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.btn-pricing svg {
  width: 16px;
  height: 16px;
  color: #64748b;
  transition: color 0.2s ease;
}

.btn-pricing:hover svg {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1240px) {
  .pricing-4col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
  }
}

@media (max-width: 992px) {
  .optionals-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .pricing-4col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-card-v3 {
    padding: 26px 20px;
  }
  .pricing-optionals-bar {
    padding: 20px 16px;
    border-radius: 18px;
    margin-top: 28px;
  }
  .optionals-header {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .optionals-title {
    font-size: 1.05rem;
  }
  .optionals-desc {
    font-size: 0.8rem;
  }
  .option-item-card {
    padding: 12px 14px;
    gap: 12px;
  }
  .option-item-icon {
    width: 38px;
    height: 38px;
  }
  .option-item-title {
    font-size: 0.88rem;
  }
  .option-item-desc {
    font-size: 0.75rem;
  }
  .option-item-price-tag {
    padding: 4px 10px;
  }
  .option-item-price-tag strong {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   ROI / Efficiency Calculator - Modern High-End Styling
   ========================================================================== */
#calculadora {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  padding: 104px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
}

.calculator-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.02);
  max-width: 980px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 28px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.calc-label-row label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.94rem;
  color: #1e293b;
  line-height: 1.35;
}

.range-val-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #0d9488;
  background: #f0fdfa;
  border: 1.5px solid rgba(13, 148, 136, 0.22);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(13, 148, 136, 0.06);
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 9999px;
  background: #e2e8f0;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.range-slider:hover {
  background: #cbd5e1;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.4), 0 0 0 3px #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.5), 0 0 0 3px #ffffff;
}

.range-slider::-webkit-slider-thumb:active {
  transform: scale(1.2);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.6), 0 0 0 4px #ffffff;
}

.range-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.range-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
}

.calc-range-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Result Box on the Right */
.calc-result-box {
  background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, #f0fdf9 45%, #e0f7f4 100%);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  border: 1.5px solid rgba(13, 148, 136, 0.25);
  box-shadow: 0 10px 30px -5px rgba(13, 148, 136, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-stat-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.calc-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.calc-stat-teal {
  color: #0d9488;
  text-shadow: 0 2px 10px rgba(13, 148, 136, 0.15);
}

.calc-stat-blue {
  color: #0284c7;
  text-shadow: 0 2px 10px rgba(2, 132, 199, 0.15);
}

.calc-subtext {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.4;
}

.calc-stat-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(13, 148, 136, 0.25) 50%, transparent 100%);
  margin: 20px 0;
}

.btn-calc-cta {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-calc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.45);
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: #ffffff;
}

.btn-calc-cta i,
.btn-calc-cta svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Testimonials (Casos de Sucesso)
   ========================================================================== */
#depoimentos {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  padding: 104px 0 114px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

/* Testimonials Infinite Marquee Slider (SaaS Continuous Loop) */
.testimonials-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 24px 0 32px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonials-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
  will-change: transform;
}

.testimonials-marquee-wrapper:hover .testimonials-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card-marquee {
  width: 380px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition-smooth);
}

.testimonial-card-marquee:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 20px 35px -10px rgba(13, 148, 136, 0.12), 0 0 0 1px rgba(13, 148, 136, 0.15);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-quote-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f0fdfa;
  border: 1px solid rgba(13, 148, 136, 0.18);
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.author-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #0d9488;
  background: #f0fdfa;
  border: 1px solid rgba(13, 148, 136, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
}

.author-verified-badge svg,
.author-verified-badge i {
  width: 13px;
  height: 13px;
  color: #0d9488;
}

.testimonial-quote {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #334155;
  font-style: normal;
  font-weight: 450;
  line-height: 1.65;
  margin: 0;
  letter-spacing: -0.1px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.75);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.22);
  flex-shrink: 0;
}

.author-info h5 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
  line-height: 1.25;
}

.author-info p {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
#faq {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 104px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px 24px;
  transition: max-height 0.35s ease-in-out;
}

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

/* ==========================================================================
   Bottom CTA Banner
   ========================================================================== */
.cta-section {
  background-color: #ffffff;
  padding: 56px 0;
  border-bottom: 1px solid #f1f5f9;
}

.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #064e3b 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  padding: 44px 36px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 20px 40px -15px rgba(6, 78, 59, 0.3);
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
  line-height: 1.3;
}

.cta-banner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
  font-weight: 400;
}

.cta-banner .btn-white {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 32px !important;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-banner .btn-white:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   Footer Component (Inspiração AG Brasil - Clean, 3 Colunas, Cores Confortáveis)
   ========================================================================== */
.site-footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0 0;
  margin-bottom: 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

/* Coluna 1: Marca & Social */
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-brand-desc strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-btn svg,
.social-btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-btn:hover {
  background: #22c55e;
  border-color: #22c55e;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

.social-btn.social-wpp:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Colunas 2 & 3 - Título dos Widgets */
.footer-widget-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

/* Menu de Navegação */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li {
  margin-bottom: 10px;
}

.footer-nav-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.25s ease;
}

.footer-nav-list a i,
.footer-nav-list a svg {
  color: #22c55e;
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.footer-nav-list a:hover {
  color: #22c55e;
  padding-left: 6px;
}

/* Contatos */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.footer-contact-list li {
  margin-bottom: 10px;
}

.footer-contact-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #22c55e;
}

.footer-contact-link i,
.footer-contact-link svg {
  color: #22c55e;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Box de Segurança & Conformidade (Clean & Discreto) */
.footer-cert-box {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-cert-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.footer-cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: default;
}

.cert-pill:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  color: #ffffff;
}

.cert-pill i,
.cert-pill svg {
  width: 12px;
  height: 12px;
  color: #22c55e;
  flex-shrink: 0;
}

/* Barra Inferior */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #22c55e;
}

/* Responsividade */
@media (max-width: 992px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-col-contact {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-col-contact {
    grid-column: span 1;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* Multi-step Wizard Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.modal-card::-webkit-scrollbar {
  width: 5px;
}

.modal-card::-webkit-scrollbar-track {
  background: transparent;
}

.modal-card::-webkit-scrollbar-thumb {
  background: rgba(13, 148, 136, 0.3);
  border-radius: 10px;
}

.modal-card::-webkit-scrollbar-thumb:hover {
  background: rgba(13, 148, 136, 0.6);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-card-wizard {
  max-width: 680px;
  padding: 44px 48px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(15, 23, 42, 0.04);
  background: #ffffff;
}

.modal-card-clean {
  max-width: 580px;
  padding: 38px 36px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.05);
}

.modal-card-clean .modal-header {
  margin-bottom: 20px;
  text-align: left;
}

.modal-card-clean .modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.4px;
  margin-bottom: 6px;
  line-height: 1.25;
}

.modal-card-clean .modal-header p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: scale(1.05);
}

.modal-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(13, 148, 136, 0.08);
  color: #0d9488;
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.modal-badge-tag i,
.modal-badge-tag svg {
  width: 14px;
  height: 14px;
}

.modal-header h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.modal-header p {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 28px;
}

.wizard-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.wizard-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.wizard-step-item .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-main);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.wizard-step-item.active {
  color: var(--primary-hover);
}

.wizard-step-item.active .step-num {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.wizard-step-line {
  flex: 1;
  height: 2px;
  background-color: var(--border-light);
  margin: 0 12px;
}

.wizard-step-content {
  display: none;
}

.wizard-step-content.active {
  display: block;
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.form-input {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background-color: #f8fafc;
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.form-input:hover {
  border-color: #cbd5e1;
  background-color: #ffffff;
}

.form-input:focus {
  border-color: #0d9488;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.14);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 38px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  color: #0f172a;
}

select.form-input option {
  background-color: #ffffff;
  color: #0f172a;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.btn-modal-submit {
  width: 100%;
  height: 54px;
  margin-top: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(13, 148, 136, 0.45);
  transition: all 0.25s ease;
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(13, 148, 136, 0.6);
  filter: brightness(1.03);
}

.btn-modal-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px -2px rgba(13, 148, 136, 0.4);
}

.demo-form-clean {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-form-clean .form-group {
  gap: 6px;
}

.demo-form-clean .form-group label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

.demo-form-clean .form-input {
  height: 48px;
  border-radius: 12px;
  font-size: 0.94rem;
  padding: 0 16px;
  background-color: #ffffff;
  border: 1.5px solid #e2e8f0;
  transition: all 0.2s ease;
}

.demo-form-clean .form-input:hover {
  border-color: #cbd5e1;
}

.demo-form-clean .form-input:focus {
  border-color: #10b981;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.demo-form-clean select.form-input {
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  cursor: pointer;
}

.demo-form-clean .form-textarea {
  height: auto;
  min-height: 88px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.94rem;
  line-height: 1.5;
  resize: vertical;
}

.demo-form-clean .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 540px) {
  .demo-form-clean .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .modal-card-clean {
    padding: 30px 20px;
  }
}

.btn-whatsapp-direct {
  width: 100%;
  height: 52px;
  margin-top: 4px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #0d9488 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
  transition: var(--transition-smooth);
}

.btn-whatsapp-direct:hover {
  background: linear-gradient(135deg, #059669 0%, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45);
}

.btn-whatsapp-direct:active {
  transform: translateY(0);
}

.btn-whatsapp-direct i,
.btn-whatsapp-direct svg {
  width: 18px;
  height: 18px;
}

.modal-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

.modal-trust-footer-clean {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.modal-trust-footer-clean span {
  font-size: 0.78rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.modal-trust-footer-clean i,
.modal-trust-footer-clean svg {
  width: 14px;
  height: 14px;
  color: #0d9488;
}

.guarantee-banner {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  color: #166534;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.guarantee-icon {
  width: 24px;
  height: 24px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.pay-tab {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background-color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.pay-tab.active {
  border-color: var(--primary);
  background-color: var(--primary-subtle);
  color: var(--primary-hover);
}

.pix-notice-box {
  background: var(--bg-main);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.pix-notice-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.wizard-nav-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.wizard-success-box {
  text-align: center;
  padding: 16px 0 8px 0;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 18px auto;
  border: 2px solid rgba(13, 148, 136, 0.2);
}

.wizard-success-box h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.success-subtext {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
}

.wpp-notice-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 18px 20px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: #166534;
}

.wpp-notice-card strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 2px;
  color: #15803d;
}

.wpp-notice-icon {
  width: 26px;
  height: 26px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-whatsapp-direct {
  background: #25d366;
  color: #ffffff;
  width: 100%;
  height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-direct:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Checkout & Plan Acquisition Modal Styles
   ========================================================================== */
.modal-card-checkout {
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 40px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25);
}

.checkout-steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.checkout-step-node {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #94a3b8;
  transition: all 0.25s ease;
}

.checkout-step-node .step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #64748b;
  transition: all 0.25s ease;
}

.checkout-step-node .step-circle svg {
  width: 16px;
  height: 16px;
}

.checkout-step-node.active {
  color: #0d9488;
}

.checkout-step-node.active .step-circle {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.checkout-step-node.completed {
  color: #10b981;
}

.checkout-step-node.completed .step-circle {
  background: #10b981;
  color: #ffffff;
  border-color: transparent;
}

.checkout-step-connector {
  flex: 1;
  height: 2px;
  background-color: #e2e8f0;
  margin: 0 12px;
  transition: all 0.25s ease;
}

.checkout-step-connector.completed {
  background: linear-gradient(90deg, #0d9488, #10b981);
}

.checkout-step-pane {
  display: none;
}

.checkout-step-pane.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.selected-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f0fdfa;
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.selected-plan-badge svg {
  width: 14px;
  height: 14px;
  color: #0d9488;
}

/* Order Summary */
.checkout-order-summary {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 22px;
}

.order-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.order-plan-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #0f172a;
}

.order-discount-pill {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 6px;
}

.order-summary-row.discount-row {
  color: #10b981;
  font-weight: 700;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 1rem;
  color: #0f172a;
  font-weight: 700;
}

.order-summary-total strong {
  font-size: 1.45rem;
  color: #0d9488;
  font-weight: 800;
}

/* Modern Payment Tabs */
.payment-tabs-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.pay-tab-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #475569;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.pay-tab-btn svg {
  width: 18px;
  height: 18px;
}

.pay-tab-btn:hover {
  border-color: #0d9488;
  color: #0d9488;
}

.pay-tab-btn.active {
  background: #f0fdfa;
  border-color: #0d9488;
  color: #0f766e;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.15);
}

.payment-pane {
  display: none;
}

.payment-pane.active {
  display: block;
  animation: fadeIn 0.25s ease-out;
}

/* PIX Box */
.pix-checkout-box {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid rgba(13, 148, 136, 0.22);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
}

.pix-qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pix-qr-code {
  width: 120px;
  height: 120px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 6px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pix-badge-instant {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f766e;
  background: #ccfbf1;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.pix-badge-instant svg {
  width: 12px;
  height: 12px;
}

.pix-instructions h5 {
  font-size: 0.94rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.pix-copy-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.pix-input {
  font-family: monospace;
  font-size: 0.8rem;
  background: #f8fafc;
}

.btn-copy-pix {
  background: #0f172a;
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-copy-pix:hover {
  background: #0d9488;
}

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

.pix-help-note {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pix-help-note svg {
  width: 14px;
  height: 14px;
  color: #0284c7;
  flex-shrink: 0;
}

/* Card Form */
.card-checkout-form {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-input-wrapper {
  position: relative;
}

.card-brands-icons {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
}

.card-brand-chip {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
}

/* Boleto Box */
.boleto-checkout-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.boleto-icon-box {
  width: 52px;
  height: 52px;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
}

.boleto-icon-box svg {
  width: 26px;
  height: 26px;
}

.boleto-checkout-box h5 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.boleto-checkout-box p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 14px;
}

.boleto-code-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.checkout-security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 18px;
}

.checkout-security-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.checkout-security-badges svg {
  width: 14px;
  height: 14px;
  color: #10b981;
}

/* Confirmation Details */
.order-confirmation-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: left;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.92rem;
  color: #475569;
}

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

@media (max-width: 680px) {
  .modal-card-checkout {
    padding: 28px 18px;
  }

  .checkout-steps-bar {
    gap: 4px;
  }

  .step-label {
    display: none;
  }

  .pix-checkout-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pix-copy-input-group {
    flex-direction: column;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

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

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #0f172a;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ==========================================================================
   Lamp's CMS Admin & In-Browser Visual Editor Styles
   ========================================================================== */
.admin-secret-btn {
  background: transparent;
  border: none;
  color: #64748b;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.2;
  transition: var(--transition-fast);
}

.admin-secret-btn:hover {
  opacity: 0.9;
  color: #2dd4bf;
  background: rgba(255, 255, 255, 0.1);
}

/* Floating Control Bar for Active CMS Mode */
.cms-control-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 28px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #0d9488;
  animation: slideUpBar 0.3s ease-out;
}

@keyframes slideUpBar {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cms-bar-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cms-badge {
  background: #0d9488;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.cms-hint {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.cms-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cms-save {
  background: #10b981;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-cms-save:hover {
  background: #059669;
}

.btn-cms-download {
  background: #0284c7;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-cms-download:hover {
  background: #0369a1;
}

.btn-cms-reset {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-cms-reset:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-cms-exit {
  background: #ef4444;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-cms-exit:hover {
  background: #dc2626;
}

/* Active Editing Highlights */
body.cms-mode-active [contenteditable="true"] {
  outline: 2px dashed #0066ff !important;
  outline-offset: 2px !important;
  cursor: text !important;
  transition: outline 0.2s ease;
}

body.cms-mode-active [contenteditable="true"]:hover {
  outline-color: #10b981 !important;
  background-color: rgba(16, 185, 129, 0.05) !important;
}

body.cms-mode-active img {
  cursor: pointer !important;
  outline: 2px dashed #0284c7 !important;
  outline-offset: 2px !important;
}

body.cms-mode-active img:hover {
  outline-color: #f59e0b !important;
  opacity: 0.85;
}

/* ==========================================================================
   Complete Mobile & Tablet Responsiveness (320px to 992px)
   ========================================================================== */

/* Keyframes for Mobile Menu Animation */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .header-container {
    padding: 14px 20px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 17, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  }

  .nav-menu.active {
    display: flex;
    animation: fadeInDown 0.25s ease-out;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-toggle {
    display: flex !important;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-toggle i {
    width: 26px;
    height: 26px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-col-center {
    height: 320px;
  }

  .sector-display-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }

  .calculator-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.8rem;
    padding: 6px 12px;
    flex-direction: column;
    gap: 4px;
  }

  .top-bar-badge {
    font-size: 0.7rem;
  }

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

  .container {
    padding: 0 16px;
  }

  .section-title, .bento-main-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .section-description {
    font-size: 0.95rem;
  }

  /* Hero Section Mobile */
  .hero-cinematic {
    padding: 96px 0 54px 0;
    min-height: auto;
  }

  .hero-cinematic-title {
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
  }

  .hero-cinematic-subtitle {
    font-size: 0.98rem;
    margin-bottom: 28px;
    line-height: 1.6;
  }

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

  .hero-cinematic-cta button,
  .hero-cinematic-cta .btn-pill-white,
  .hero-cinematic-cta .btn-pill-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero-trust-bar {
    padding: 20px 12px;
  }

  .trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .trust-bar-divider {
    display: none;
  }

  .trust-bar-number {
    font-size: 1.55rem;
  }

  .trust-bar-label {
    font-size: 0.78rem;
  }

  /* Bento Grid Mobile */
  .bento-card, .bento-bottom-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .bento-card-title {
    font-size: 1.2rem;
  }

  .bento-card-text {
    font-size: 0.9rem;
  }

  .bento-col-center {
    height: 240px;
  }

  /* 5 Sectors Swipeable Nav Pill Bar */
  .sectors-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding-bottom: 12px;
    margin-bottom: 28px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .sector-tab-btn {
    padding: 10px 16px;
    font-size: 0.82rem;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .sector-display-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .sector-display-content h3 {
    font-size: 1.5rem;
  }

  .sector-tiles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-tile {
    padding: 14px 16px;
  }

  /* Specialty & Security Cards Mobile */
  .specialties-grid, .security-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .specialty-card, .security-card, .pricing-card, .testimonial-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .pricing-card.featured {
    border-width: 2px;
  }

  /* ROI / Efficiency Calculator Mobile */
  #calculadora {
    padding: 56px 0;
  }

  .calculator-card {
    padding: 24px 16px;
    border-radius: 20px;
    gap: 28px;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .calc-inputs {
    gap: 20px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .calc-input-group {
    width: 100%;
    min-width: 0;
    gap: 8px;
    box-sizing: border-box;
  }

  .calc-label-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .calc-label-row label {
    font-size: 0.85rem;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
  }

  .range-val-badge {
    font-size: 0.82rem;
    padding: 3px 9px;
    flex-shrink: 0;
  }

  .range-slider {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 6px 0 2px 0;
  }

  .calc-range-limits {
    font-size: 0.72rem;
    width: 100%;
    box-sizing: border-box;
  }

  .calc-result-box {
    padding: 24px 16px;
    border-radius: 18px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .calc-stat-tag {
    font-size: 0.72rem;
    letter-spacing: 0.3px;
    line-height: 1.3;
  }

  .calc-stat-number {
    font-size: 2rem;
  }

  .calc-subtext {
    font-size: 0.82rem;
  }

  .calc-stat-divider {
    margin: 16px 0;
  }

  .btn-calc-cta {
    padding: 13px 16px;
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .btn-calc-cta i,
  .btn-calc-cta svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  /* Testimonials Mobile */
  #depoimentos {
    padding: 64px 0 72px 0;
  }

  .testimonial-card-marquee {
    width: 300px;
    padding: 24px 20px;
    gap: 16px;
    border-radius: 16px;
  }

  .testimonial-quote {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* CTA Banner Mobile */
  .cta-section {
    padding: 28px 0 10px 0;
  }

  .cta-banner {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .cta-banner h2 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .cta-banner p {
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .cta-banner .btn-white {
    width: 100%;
    max-width: 320px;
    padding: 12px 20px !important;
    justify-content: center;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

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

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .footer-badge-pill {
    font-size: 0.75rem;
  }

  .footer-social-row {
    justify-content: flex-start;
  }

  /* Modals Mobile */
  .modal-backdrop {
    padding: 12px;
    align-items: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-card,
  .modal-card-wizard,
  .modal-card-clean,
  .modal-card-checkout {
    padding: 28px 20px;
    max-width: 96vw;
    width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    border-radius: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-sizing: border-box;
  }

  .modal-badge-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .modal-header h3 {
    font-size: 1.4rem;
    padding-right: 32px;
    margin-bottom: 6px;
  }

  .modal-header p {
    font-size: 0.88rem;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .modal-close-btn {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .demo-form {
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 0;
  }

  .form-group {
    gap: 6px;
  }

  .form-group label {
    font-size: 0.84rem;
    margin-bottom: 0;
  }

  .form-input {
    height: 48px;
    padding: 0 14px;
    font-size: 0.92rem;
    border-radius: 10px;
  }

  select.form-input {
    padding-right: 38px;
  }

  .btn-modal-submit {
    height: 50px;
    font-size: 0.95rem;
    border-radius: 12px;
    margin-top: 4px;
  }

  .modal-trust-footer {
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.76rem;
  }

  .wizard-steps {
    gap: 6px;
    font-size: 0.72rem;
    margin-bottom: 18px;
  }

  .step-pill {
    padding: 5px 10px;
  }

  /* Modal Buttons Mobile Styling */
  .modal-card .btn,
  .modal-card .btn-lg,
  .modal-card .btn-primary,
  .modal-card .btn-secondary,
  .modal-card .btn-whatsapp-direct {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 13px 16px;
    font-size: 0.86rem;
    font-weight: 700;
    gap: 6px;
    box-sizing: border-box;
    max-width: 100%;
    word-break: normal;
  }

  .modal-card .btn i,
  .modal-card .btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .wizard-nav-btns {
    flex-direction: column-reverse;
    gap: 8px;
    margin-top: 16px;
  }

  .wizard-nav-btns .btn {
    width: 100%;
  }

  .btn-copy-pix {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  /* CMS Control Bar Mobile */
  .cms-control-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 14px;
    text-align: center;
  }

  .cms-bar-info {
    flex-direction: column;
    gap: 4px;
  }

  .cms-bar-actions {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 6px;
  }

  .cms-bar-actions button {
    flex: 1;
    min-width: 120px;
    padding: 6px 12px;
    font-size: 0.8rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .calculator-card {
    padding: 20px 12px;
    border-radius: 16px;
    gap: 20px;
  }

  .calc-label-row label {
    font-size: 0.8rem;
  }

  .range-val-badge {
    font-size: 0.78rem;
    padding: 2px 8px;
  }

  .calc-range-limits {
    font-size: 0.68rem;
  }

  .calc-result-box {
    padding: 20px 12px;
  }

  .calc-stat-number {
    font-size: 1.75rem;
  }

  .btn-calc-cta {
    font-size: 0.78rem;
    padding: 12px 12px;
  }

  .modal-card .btn,
  .modal-card .btn-lg,
  .modal-card .btn-primary,
  .modal-card .btn-secondary,
  .modal-card .btn-whatsapp-direct {
    padding: 11px 12px;
    font-size: 0.8rem;
    gap: 5px;
  }

  .modal-card .btn i,
  .modal-card .btn svg {
    width: 15px;
    height: 15px;
  }
}

/* ==========================================================================
   Option 1: Vitrine Interativa dos Setores (Estilo Stripe Showcase)
   ========================================================================== */
.showcase-section {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.showcase-layout-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: start;
}

.showcase-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-nav-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.showcase-nav-item:hover {
  border-color: var(--primary-light);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.12);
}

.showcase-nav-item.active {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.35);
}

.showcase-item-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.showcase-nav-item.active .showcase-item-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.showcase-item-info h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 2px;
  line-height: 1.2;
}

.showcase-item-info p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.3;
}

.showcase-item-arrow {
  margin-left: auto;
  opacity: 0.5;
  transition: var(--transition-fast);
}

.showcase-nav-item.active .showcase-item-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Sidebar CTA Box */
.showcase-sidebar-cta {
  margin-top: 6px;
  background: radial-gradient(130% 130% at 50% 0%, #ffffff 0%, #f0fdf9 50%, #e2f7f3 100%);
  border: 1.5px solid rgba(13, 148, 136, 0.28);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 12px 30px -8px rgba(13, 148, 136, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-sidebar-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 18px 36px -8px rgba(13, 148, 136, 0.22);
}

.sidebar-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(13, 148, 136, 0.15);
  color: #0f766e;
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.sidebar-cta-badge i,
.sidebar-cta-badge svg {
  width: 13px;
  height: 13px;
  color: #0d9488;
}

.sidebar-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 6px;
}

.sidebar-cta-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 16px;
}

.btn-sidebar-cta {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(13, 148, 136, 0.45);
  background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
  color: #ffffff;
}

.btn-sidebar-cta i,
.btn-sidebar-cta svg {
  width: 17px;
  height: 17px;
}

.sidebar-cta-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
}

.sidebar-cta-footer span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sidebar-cta-footer i,
.sidebar-cta-footer svg {
  width: 12px;
  height: 12px;
  color: #10b981;
}

.showcase-stage-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 32px;
  transition: all 0.3s ease;
}

.showcase-screen-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  margin: 0 auto 28px auto;
  background: #0f172a;
  max-width: 920px;
  width: 100%;
  cursor: zoom-in;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.showcase-screen-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(13, 148, 136, 0.2);
}

.showcase-screen-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.showcase-pulse-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.showcase-zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-fast);
}

.showcase-screen-wrapper:hover .showcase-zoom-hint {
  background: rgba(13, 148, 136, 0.9);
}

/* Image Lightbox Modal */
.image-lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 17, 30, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

.image-lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.image-lightbox-container {
  position: relative;
  max-width: 94vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox-backdrop.active .image-lightbox-container {
  transform: scale(1);
}

.image-lightbox-container img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.image-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.image-lightbox-close:hover {
  background: #0d9488;
  transform: scale(1.1);
}

.image-lightbox-caption {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 18px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.showcase-content-box .showcase-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-content-box .showcase-desc {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.6;
}

.showcase-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.showcase-tile {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.25s ease;
}

.showcase-tile:hover {
  background: #ffffff;
  border-color: #0d9488;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.12);
  transform: translateY(-2px);
}

.showcase-tile-icon {
  width: 36px;
  height: 36px;
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.showcase-tile-text h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.2;
}

.showcase-tile-text p {
  font-size: 0.83rem;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}

.showcase-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 992px) {
  .showcase-layout-grid {
    grid-template-columns: 1fr;
  }
  .showcase-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .showcase-tiles-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Showcase Section (Versão Otimizada) */
.enhanced-showcase-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.enhanced-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.enhanced-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.enhanced-tab-btn span {
  font-size: 0.75rem;
  background: rgba(13, 148, 136, 0.12);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.enhanced-tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.enhanced-tab-btn.active {
  background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
}

.enhanced-tab-btn.active span {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.enhanced-stage-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.enhanced-split-stage {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  transition: var(--transition-smooth);
}

.enhanced-info-col {
  display: flex;
  flex-direction: column;
}

.enhanced-media-col {
  width: 100%;
  max-width: 500px;
  justify-self: center;
}

.compact-frame {
  border-radius: 12px;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.2);
}

.compact-img-wrapper {
  max-height: 290px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.compact-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.compact-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 992px) {
  .enhanced-split-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .enhanced-media-col {
    max-width: 100%;
  }
}

.enhanced-screen-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #0f172a;
}

.enhanced-screen-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.mac-window-bar {
  background: #0a111e;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mac-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mac-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.mac-dot.red { background: #ff5f56; }
.mac-dot.yellow { background: #ffbd2e; }
.mac-dot.green { background: #27c93f; }

.mac-url-bar {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
}

.mac-status-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #34d399;
  font-weight: 600;
}

/* Option 2: 2-Column Integrated Layout (Text Left + Mini Glass Preview Right) */
.enhanced-stage-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: center;
}

.mini-glass-preview {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: var(--transition-fast);
}

.mini-glass-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(13, 148, 136, 0.18);
  border-color: var(--primary-light);
}

.mini-glass-header {
  background: #f8fafc;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.mini-glass-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mini-glass-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.mini-glass-dots .dot.red { background: #ff5f56; }
.mini-glass-dots .dot.yellow { background: #ffbd2e; }
.mini-glass-dots .dot.green { background: #27c93f; }

.mini-glass-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mini-glass-body {
  padding: 8px;
  background: #f8fafc;
}

.mini-glass-body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 992px) {
  .enhanced-stage-grid {
    grid-template-columns: 1fr;
  }
  .mini-glass-preview {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Floating WhatsApp Action Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 66px;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER & EXPANDED RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Mobile Header Toggle Button */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover,
.mobile-toggle:active {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.05);
}

/* Mobile Drawer Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Sidebar */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: #0f172a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.6);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 24px 20px;
  -webkit-overflow-scrolling: touch;
}

.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 rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-nav-close:hover,
.mobile-nav-close:active {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.mobile-nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #2dd4bf;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-nav-link i {
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.mobile-nav-link:hover i,
.mobile-nav-link:active i {
  color: #2dd4bf;
}

.mobile-nav-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-actions .btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #4ade80;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: 2px;
}

.mobile-nav-whatsapp:hover,
.mobile-nav-whatsapp:active {
  background: #25d366;
  color: #ffffff;
}

/* ==========================================================================
   TABLET & MOBILE BREAKPOINT: max-width: 992px
   ========================================================================== */
@media (max-width: 992px) {
  /* Navigation Bar */
  .nav-menu {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .site-header {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 12px 18px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
  }

  .header-container {
    max-width: 100%;
    padding: 0;
  }

  /* Hero Section */
  .hero-cinematic {
    padding: 120px 20px 48px;
    min-height: auto;
  }

  .hero-cinematic-title {
    font-size: clamp(2rem, 5.5vw, 2.8rem);
    line-height: 1.22;
  }

  .hero-cinematic-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* Trust Bar */
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .trust-bar-divider {
    display: none;
  }

  .trust-bar-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
  }

  /* Bento Grid */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Showcase Section (Módulos) - Mobile Reordering & Carousel */
  .showcase-layout-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .showcase-sidebar {
    display: contents !important;
  }

  .showcase-nav-list {
    order: 1 !important;
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 8px !important;
    padding: 4px 2px 14px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
  }

  .showcase-nav-list::-webkit-scrollbar {
    display: none;
  }

  .showcase-nav-item {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: fit-content !important;
    padding: 10px 18px !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    cursor: pointer;
  }

  .showcase-nav-item h4 {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }

  .showcase-nav-item.active {
    background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3) !important;
  }

  .showcase-nav-item.active h4 {
    color: #ffffff !important;
  }

  .showcase-nav-item.active .showcase-item-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
  }

  .showcase-item-arrow {
    display: none !important;
  }

  .showcase-stage-card {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 24px 20px !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
  }

  .showcase-screen-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #0f172a !important;
    position: relative !important;
  }

  .showcase-screen-wrapper img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 10px !important;
  }

  .showcase-content-box {
    width: 100% !important;
    max-width: 100% !important;
  }

  .showcase-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .showcase-sidebar-cta {
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-top: 8px !important;
    padding: 26px 20px !important;
    border-radius: 20px !important;
  }

  /* Pricing Grid */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 24px;
  }

  /* Calculator */
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Especialidades */
  .spec-v2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* CRM Chat simulator */
  .chat-crm-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ==========================================================================
   SMARTPHONE BREAKPOINT: max-width: 768px & max-width: 640px
   ========================================================================== */
@media (max-width: 768px) {
  /* Global Overflow Protection */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .container {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Top Announcement Bar on Mobile */
  .top-bar {
    padding: 6px 12px !important;
    background: #08111d !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.22) !important;
    min-height: 34px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .top-bar-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }

  .top-bar-badge {
    font-size: 0.68rem !important;
    padding: 2px 7px !important;
    flex-shrink: 0 !important;
  }

  .top-bar-text {
    font-size: 0.74rem !important;
    font-weight: 500 !important;
    color: #e2e8f0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .top-bar-cta {
    font-size: 0.74rem !important;
    gap: 3px !important;
    flex-shrink: 0 !important;
  }

  .top-bar-cta .top-bar-arrow {
    width: 11px !important;
    height: 11px !important;
  }

  /* Header */
  .site-header {
    padding: 10px 16px !important;
  }

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

  .brand-title {
    font-size: 1.12rem !important;
  }

  .mobile-toggle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }

  /* General Section Headers & Typography on Mobile */
  .section-padding {
    padding: 56px 0 !important;
  }

  .section-header {
    margin-bottom: 34px !important;
    padding: 0 4px !important;
  }

  .section-badge {
    font-size: 0.76rem !important;
    padding: 5px 14px !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.4px !important;
    font-weight: 700 !important;
  }

  .section-title {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    line-height: 1.24 !important;
    letter-spacing: -0.4px !important;
    text-wrap: balance !important;
    margin-bottom: 12px !important;
  }

  .section-description {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
    color: #64748b !important;
    max-width: 100% !important;
  }

  /* Hero Section Typography */
  .hero-cinematic {
    padding: 96px 16px 40px !important;
    min-height: auto !important;
  }

  .hero-cinematic-title {
    font-size: 1.85rem !important;
    font-weight: 800 !important;
    line-height: 1.22 !important;
    letter-spacing: -0.6px !important;
    text-wrap: balance !important;
    margin-bottom: 16px !important;
  }

  .hero-cinematic-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 26px !important;
    color: #cbd5e1 !important;
  }

  .hero-cinematic-cta {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    margin-bottom: 36px !important;
  }

  .hero-cinematic-cta .btn-pill-white,
  .hero-cinematic-cta .btn-pill-outline {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }

  .hero-cinematic-footer {
    font-size: 0.78rem !important;
    margin-top: 18px !important;
    justify-content: center !important;
  }

  /* Trust Metrics Bar */
  .hero-trust-bar {
    padding: 18px 0 !important;
  }

  .trust-bar-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px 10px !important;
  }

  .trust-bar-number {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
  }

  .trust-bar-label {
    font-size: 0.74rem !important;
    line-height: 1.25 !important;
  }

  /* Bento Platform Section */
  .bento-main-title {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.4px !important;
    text-wrap: balance !important;
    margin-bottom: 12px !important;
  }

  .bento-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .bento-col {
    gap: 16px !important;
  }

  .bento-card {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }

  .bento-card-title {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
  }

  .bento-card-text {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    color: #475569 !important;
  }

  .bento-bottom-card {
    padding: 28px 18px !important;
    border-radius: 20px !important;
    margin-top: 16px !important;
  }

  .bento-cta-title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    text-wrap: balance !important;
    margin-bottom: 6px !important;
  }

  .bento-cta-subtitle {
    font-size: 0.92rem !important;
    margin-bottom: 18px !important;
  }

  .btn-cta-glow {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 18px !important;
    font-size: 0.88rem !important;
  }

  /* Showcase Section */
  .showcase-stage-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }

  .showcase-screen-wrapper {
    margin: 0 0 16px 0 !important;
    border-radius: 12px !important;
  }

  .showcase-pulse-badge {
    bottom: 8px !important;
    left: 8px !important;
    font-size: 0.68rem !important;
    padding: 4px 8px !important;
  }

  .showcase-zoom-hint {
    bottom: 8px !important;
    right: 8px !important;
    font-size: 0.68rem !important;
    padding: 4px 8px !important;
  }

  .showcase-content-box .showcase-title {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }

  .showcase-content-box .showcase-desc {
    font-size: 0.88rem !important;
    margin-bottom: 16px !important;
    line-height: 1.5 !important;
  }

  .showcase-tiles-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .showcase-tile {
    padding: 12px !important;
    border-radius: 12px !important;
  }

  .showcase-tile-text h5 {
    font-size: 0.9rem !important;
  }

  .showcase-tile-text p {
    font-size: 0.8rem !important;
  }

  .showcase-sidebar-cta {
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }

  .sidebar-cta-title {
    font-size: 1.15rem !important;
  }

  .sidebar-cta-desc {
    font-size: 0.85rem !important;
  }

  .btn-sidebar-cta {
    padding: 13px 16px !important;
    font-size: 0.9rem !important;
  }

  /* Especialidades */
  .spec-v2-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .spec-v2-card {
    padding: 16px 14px !important;
    border-radius: 16px !important;
  }

  .spec-v2-card-title {
    font-size: 1.12rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  .spec-v2-card-headline {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
  }

  /* Calculadora ROI */
  .calculator-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .calc-result-box {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .calc-stat-number {
    font-size: 2.2rem !important;
  }

  .btn-calc-cta {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px !important;
    font-size: 0.92rem !important;
  }

  /* Planos & Pricing Cards on Mobile */
  .pricing-main-header .section-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.4px !important;
    text-wrap: balance !important;
  }

  .pricing-4col-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .pricing-card-v3 {
    padding: 26px 20px !important;
    border-radius: 20px !important;
  }

  .card-v3-title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
  }

  .card-v3-price .price-num {
    font-size: 1.75rem !important;
  }

  .btn-pricing {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 18px !important;
    font-size: 0.92rem !important;
  }

  /* Optionals Bar on Mobile */
  .pricing-optionals-bar {
    padding: 22px 16px !important;
    border-radius: 20px !important;
    margin-top: 28px !important;
  }

  .optionals-header {
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
  }

  .optionals-label {
    gap: 12px !important;
  }

  .optionals-icon-circle {
    width: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
  }

  .optionals-icon-circle svg,
  .optionals-icon-circle i {
    width: 18px !important;
    height: 18px !important;
  }

  .optionals-title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
  }

  .optionals-desc {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .optionals-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .option-item-card {
    padding: 14px 14px !important;
    gap: 12px !important;
    border-radius: 14px !important;
  }

  .option-item-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
  }

  .option-item-icon svg,
  .option-item-icon i {
    width: 18px !important;
    height: 18px !important;
  }

  .option-item-title {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
  }

  .option-item-desc {
    font-size: 0.76rem !important;
    line-height: 1.35 !important;
  }

  .option-item-price-tag {
    padding: 5px 10px !important;
    border-radius: var(--radius-full) !important;
  }

  .option-item-price-tag strong {
    font-size: 0.82rem !important;
  }

  .option-item-price-tag span {
    font-size: 0.68rem !important;
  }

  /* FAQ Accordion on Mobile */
  .faq-container {
    gap: 10px !important;
  }

  .faq-item {
    border-radius: 14px !important;
  }

  .faq-question {
    padding: 16px 16px !important;
    font-size: 0.98rem !important;
    line-height: 1.4 !important;
    gap: 12px !important;
  }

  .faq-icon {
    width: 18px !important;
    height: 18px !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
  }

  .faq-answer {
    padding: 0 16px !important;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 18px 16px !important;
  }

  .faq-answer p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
  }

  /* Bottom CTA Banner */
  .cta-section {
    padding: 36px 0 !important;
  }

  .cta-banner {
    padding: 32px 18px !important;
    border-radius: 20px !important;
  }

  .cta-banner h2 {
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.3px !important;
    text-wrap: balance !important;
    margin-bottom: 10px !important;
  }

  .cta-banner p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .cta-banner .btn-white {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }

  /* Footer */
  .site-footer {
    padding: 48px 0 0 0 !important;
  }

  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-widget-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    margin-bottom: 14px !important;
  }

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

  /* Floating WhatsApp Button */
  .whatsapp-float {
    bottom: 18px !important;
    right: 18px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .whatsapp-tooltip {
    display: none !important;
  }

  /* Modals on Mobile */
  .modal-backdrop {
    padding: 12px !important;
    align-items: flex-end !important;
  }

  .modal-card-wizard,
  .modal-card-checkout {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 92vh !important;
    padding: 28px 18px 24px !important;
    border-radius: 24px 24px 16px 16px !important;
    margin: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .modal-header h3 {
    font-size: 1.35rem !important;
  }

  .modal-header p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  .modal-close-btn {
    top: 14px !important;
    right: 14px !important;
    width: 36px !important;
    height: 36px !important;
  }

  .demo-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .form-group label {
    font-size: 0.84rem !important;
    margin-bottom: 6px !important;
  }

  .form-input {
    height: 48px !important;
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
    padding: 0 14px !important;
  }

  .btn-modal-submit {
    height: 50px !important;
    font-size: 0.95rem !important;
    padding: 0 16px !important;
    margin-top: 16px !important;
  }

  .modal-trust-footer {
    flex-direction: column !important;
    gap: 6px !important;
    align-items: center !important;
    margin-top: 14px !important;
  }

  .modal-trust-footer span {
    font-size: 0.78rem !important;
  }
}

/* ==========================================================================
   AOS (Animate On Scroll) Enhancements & Accessibility
   ========================================================================== */
[data-aos] {
  pointer-events: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ==========================================================================
   Lamp's Toast Notification System
   ========================================================================== */
.lamps-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 420px;
  width: calc(100% - 48px);
}

.lamps-toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  font-family: var(--font-main, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 0.9rem;
  line-height: 1.45;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(-16px) scale(0.95);
  animation: lampsToastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lamps-toast.lamps-toast-hiding {
  animation: lampsToastOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lamps-toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.lamps-toast-content {
  flex: 1;
  word-break: break-word;
}

.lamps-toast-title {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.lamps-toast-message {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.lamps-toast-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
  margin-left: 4px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.lamps-toast-close:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Toast Variants */
.lamps-toast-success {
  border-left: 4px solid #10b981;
}
.lamps-toast-success .lamps-toast-icon {
  color: #10b981;
}

.lamps-toast-error {
  border-left: 4px solid #ef4444;
}
.lamps-toast-error .lamps-toast-icon {
  color: #ef4444;
}

.lamps-toast-warning {
  border-left: 4px solid #f59e0b;
}
.lamps-toast-warning .lamps-toast-icon {
  color: #f59e0b;
}

.lamps-toast-info {
  border-left: 4px solid var(--primary, #0d9488);
}
.lamps-toast-info .lamps-toast-icon {
  color: var(--primary, #0d9488);
}

@keyframes lampsToastIn {
  from {
    opacity: 0;
    transform: translateY(-16px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lampsToastOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
  }
}

@media (max-width: 640px) {
  .lamps-toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
  }
}



