/* ==========================================================================
   DELIVERY SCALA — DESIGN TOKENS & MASTER STYLESHEET (100% ESTÁTICO)
   Tema: Premium SaaS + Growth + Consultoria Comercial
   Cores: Fundo Escuro Profundo, Dourado/Laranja Metálico, Tipografia Branca
   ========================================================================== */

:root {
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Base Backgrounds (Dark luxury / SaaS deep space) */
  --bg-primary: #07090E;
  --bg-secondary: #0D121B;
  --bg-tertiary: #131A27;
  --bg-card: rgba(16, 23, 37, 0.75);
  --bg-card-hover: rgba(22, 32, 51, 0.9);
  --bg-card-elevated: #151E2E;
  --bg-glass: rgba(13, 18, 27, 0.7);
  --bg-glass-heavy: rgba(7, 9, 14, 0.88);

  /* Gold / Warm Amber Metallic Accents (Identidade Delivery Scala) */
  --gold-50: #FFFBEB;
  --gold-100: #FEF3C7;
  --gold-200: #FDE68A;
  --gold-300: #FCD34D;
  --gold-400: #FBBF24;
  --gold-500: #F59E0B;
  --gold-primary: #E5A93C;
  --gold-metallic: #D97706;
  --gold-dark: #B45309;
  --gold-deep: #78350F;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #FDE68A 0%, #F59E0B 45%, #D97706 100%);
  --grad-gold-subtle: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.05) 100%);
  --grad-gold-glow: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(7, 9, 14, 0) 70%);
  --grad-card-scala: linear-gradient(165deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 60%, rgba(45, 28, 10, 0.6) 100%);
  --grad-dark-mesh: radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.08) 0px, transparent 50%),
                    radial-gradient(at 100% 100%, rgba(14, 165, 233, 0.05) 0px, transparent 50%);

  /* Neutral / Text Colors */
  --text-white: #FFFFFF;
  --text-primary: #F8FAFC;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --text-dark: #0F172A;

  /* Accent Tech Colors */
  --cyan-accent: #38BDF8;
  --emerald-accent: #10B981;
  --rose-accent: #F43F5E;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-hover: rgba(255, 255, 255, 0.22);
  --border-gold: rgba(245, 158, 11, 0.4);
  --border-gold-bright: rgba(251, 191, 36, 0.7);

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 35px rgba(245, 158, 11, 0.25);
  --shadow-gold-lg: 0 0 60px rgba(245, 158, 11, 0.35);
  --glow-gold-btn: 0 4px 20px rgba(245, 158, 11, 0.4);

  /* Layout & Spacing */
  --container-max: 1240px;
  --container-narrow: 980px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-Index */
  --z-header: 1000;
  --z-sticky-mobile: 990;
  --z-whatsapp: 980;
  --z-modal: 2000;
}

/* ==========================================================================
   RESET & BASE TYPOGRAPHY
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

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

/* Background Ambient Lighting Mesh */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 15%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(56, 189, 248, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(245, 158, 11, 0.04) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

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

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

ul, ol {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 5.5rem 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .section {
    padding: 3.75rem 0;
  }
}

/* Section Header Component */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.section-eyebrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-400);
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-white);
  line-height: 1.2;
}

.section-title .text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Gradient Text Helper */
.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--grad-gold);
  color: #1A0D00;
  box-shadow: var(--glow-gold-btn);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.6);
}

.btn-primary:hover::before {
  left: 140%;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-300);
  border: 1px solid var(--border-gold);
}

.btn-outline-gold:hover {
  background: rgba(245, 158, 11, 0.18);
  border-color: var(--gold-400);
  color: var(--gold-100);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.15rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: var(--bg-glass-heavy);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-white);
  line-height: 1;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--gold-300);
}

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

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

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  color: var(--text-white);
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  z-index: calc(var(--z-header) - 1);
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.3s ease;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  color: var(--gold-400);
}

.mobile-drawer-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .header-actions .btn-header-cta {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-drawer {
    display: flex;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 3rem 0;
  position: relative;
  z-index: 1;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

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

.footer-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-400);
}

.footer-legal-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================================================
   HERO TECH DASHBOARD
   ========================================================================== */

.hero-section {
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-title {
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-indicators-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.indicator-item {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.indicator-item::after {
  content: '•';
  color: var(--gold-500);
  font-size: 0.85rem;
}

.indicator-item:last-child::after {
  display: none;
}

/* Hero Tech Visual Dashboard */
.hero-visual-wrapper {
  position: relative;
  perspective: 1000px;
}

.hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(56, 189, 248, 0.06) 40%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(20, 29, 46, 0.85) 0%, rgba(10, 15, 25, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.dashboard-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard-status-dot {
  width: 10px;
  height: 10px;
  background-color: var(--emerald-accent);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--emerald-accent);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.dashboard-title-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-white);
  text-transform: uppercase;
}

.dashboard-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
}

/* Dashboard Metric Cards */
.dashboard-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.metric-card {
  background: rgba(13, 19, 31, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}

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

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.metric-trend {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-accent);
}

/* Interactive SVG Growth Chart */
.dashboard-chart-box {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.chart-svg {
  width: 100%;
  height: 90px;
}

/* Live Order Stream Stream Simulator */
.dashboard-live-orders {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.order-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 38, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  transition: transform var(--transition-fast);
}

.order-pill:hover {
  transform: translateX(4px);
  border-color: var(--border-gold);
}

.order-pill-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.order-icon-badge {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
}

.order-icon-badge svg {
  width: 14px;
  height: 14px;
}

.order-text {
  font-weight: 600;
  color: var(--text-white);
}

.order-source {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.order-status {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-indicators-bar {
    justify-content: center;
  }
}

/* ==========================================================================
   SEÇÃO PROBLEMAS (6 PAIN CARDS)
   ========================================================================== */

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--rose-accent);
  transition: height var(--transition-normal);
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
}

.problem-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(244, 63, 94, 0.3);
  box-shadow: var(--shadow-md);
}

.problem-card:hover::before {
  height: 100%;
}

.problem-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-accent);
  margin-bottom: 1.25rem;
}

.problem-icon-box svg {
  width: 22px;
  height: 22px;
}

.problem-quote {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.problem-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.problems-conclusion-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(13, 18, 27, 0.8) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem 2.25rem;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.problems-conclusion-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-300);
}

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

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

/* ==========================================================================
   SEÇÃO OPORTUNIDADE (SCALE SEQUENCE)
   ========================================================================== */

.opportunity-banner {
  background: linear-gradient(165deg, rgba(21, 30, 46, 0.8) 0%, rgba(8, 11, 18, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.opportunity-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.opportunity-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 2.75rem;
}

.flow-step-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.flow-step-item:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
  color: var(--text-white);
}

.flow-arrow {
  color: var(--gold-500);
  font-size: 1.1rem;
  font-weight: bold;
}

.opportunity-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.opportunity-headline {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.opportunity-text {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   JORNADA COMERCIAL (01 A 07)
   ========================================================================== */

.journey-container {
  position: relative;
  margin-top: 2rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  position: relative;
}

.journey-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.journey-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.2);
}

.journey-step-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.journey-step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.journey-step-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .journey-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .journey-card {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
  .journey-step-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   “NÃO SOMOS APENAS UMA AGÊNCIA”
   ========================================================================== */

.not-agency-banner {
  background: linear-gradient(160deg, #0F172A 0%, #080D1A 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.not-agency-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.not-agency-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.not-agency-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.not-agency-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.not-agency-bullet-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--rose-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.not-agency-highlight-p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-300);
}

/* Commercial Operation Engine Graphic */
.commercial-engine-graphic {
  position: relative;
  background: rgba(8, 12, 20, 0.75);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-gold);
}

.engine-core-badge {
  text-align: center;
  margin-bottom: 1.75rem;
}

.engine-core-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  margin-bottom: 0.5rem;
}

.engine-core-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

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

.engine-pillar-item {
  background: rgba(18, 26, 42, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.engine-pillar-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  background: rgba(28, 40, 64, 0.95);
}

.pillar-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
}

.pillar-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
}

.engine-pillar-item.pillar-span-2 {
  grid-column: span 2;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(13, 18, 27, 0.8) 100%);
  border-color: var(--border-gold);
}

@media (max-width: 992px) {
  .not-agency-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .not-agency-banner {
    padding: 2.75rem 1.5rem;
  }
  .engine-pillars-grid {
    grid-template-columns: 1fr;
  }
  .engine-pillar-item.pillar-span-2 {
    grid-column: span 1;
  }
}

/* ==========================================================================
   TECNOLOGIA (6 TECH CARDS)
   ========================================================================== */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-gold);
}

.tech-card:hover::before {
  opacity: 1;
}

.tech-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.tech-card:hover .tech-icon-wrapper {
  transform: scale(1.08) rotate(3deg);
  background: rgba(245, 158, 11, 0.22);
}

.tech-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.tech-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.tech-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

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

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

/* ==========================================================================
   SEÇÃO VÍDEOS (VEJA A ESTRUTURA FUNCIONANDO)
   ========================================================================== */

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

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.video-player-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #000;
  overflow: hidden;
}

.video-player-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Facade / Overlay for zero latency & lazy loading */
.video-facade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: filter var(--transition-fast);
}

.video-facade::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.2) 0%, rgba(7, 9, 14, 0.75) 100%);
}

.video-play-btn {
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A0D00;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  fill: #1A0D00;
}

.video-facade:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.85);
}

.video-card-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.video-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   PROVA SOCIAL & CASES (UAI DELIVERY + É DE CASA)
   ========================================================================== */

.cases-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: stretch;
}

.case-card-primary {
  background: linear-gradient(160deg, rgba(20, 30, 48, 0.8) 0%, rgba(10, 15, 25, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.case-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
}

.case-header-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.case-avatar-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.case-profile-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.case-profile-role {
  font-size: 0.9rem;
  color: var(--gold-300);
  font-weight: 600;
}

.case-quote-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
  font-style: normal;
}

/* Timeline visual narrativa Wagner */
.case-timeline-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 10, 16, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.5rem;
  margin-top: auto;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.timeline-step-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-step-sub {
  font-size: 0.68rem;
  color: var(--gold-400);
  font-weight: 600;
}

.timeline-connector {
  color: var(--gold-500);
  font-weight: bold;
  font-size: 1rem;
}

/* Secondary Editorial Case (É de Casa) */
.case-card-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.case-card-secondary:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.case-editorial-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  text-align: center;
  margin-top: 1.5rem;
}

.case-editorial-placeholder p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

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

@media (max-width: 640px) {
  .case-timeline-flow {
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
  }
  .timeline-connector {
    transform: rotate(90deg);
    margin-left: 1rem;
  }
}

/* ==========================================================================
   AUTORIDADE & MANIFESTO
   ========================================================================== */

.authority-banner {
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.6) 0%, rgba(7, 9, 14, 0.95) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.authority-headline {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.authority-body {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto 3rem auto;
}

.authority-manifesto-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(13, 18, 27, 0.9) 100%);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-gold);
}

.manifesto-phrase-1 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.manifesto-phrase-2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   PLANOS (PROTAGONISTA SCALA + STARTER + PLUS)
   ========================================================================== */

.pricing-section {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

/* Pricing Card Base */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

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

.pricing-card-header {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.plan-currency {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-400);
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-feature-item svg {
  width: 17px;
  height: 17px;
  stroke: var(--emerald-accent);
  flex-shrink: 0;
}

/* DOMINANT PROTAGONIST: DELIVERY SCALA CARD */
.pricing-card-scala {
  background: var(--grad-card-scala);
  border: 2px solid var(--gold-400);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.35), var(--shadow-lg);
  padding: 3.25rem 2.25rem 2.75rem 2.25rem;
  z-index: 2;
  transform: scale(1.03);
}

.pricing-card-scala:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--gold-300);
  box-shadow: 0 0 65px rgba(245, 158, 11, 0.5), var(--shadow-lg);
}

.scala-top-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: #1A0D00;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
  white-space: nowrap;
}

.pricing-card-scala .plan-name {
  color: var(--gold-300);
  font-size: 1.6rem;
}

.pricing-card-scala .plan-price {
  font-size: 3rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scala-headline-inner {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.65rem;
  line-height: 1.35;
}

/* BIG BENEFIT BLOCK: R$350 META ADS BONUS */
.scala-bonus-block {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(217, 119, 6, 0.15) 100%);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.bonus-badge-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.bonus-badge-desc {
  font-size: 0.8125rem;
  color: var(--text-primary);
  line-height: 1.45;
}

/* Strategic Quote Near Scala */
.scala-strategic-phrase {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-300);
  max-width: 640px;
  margin: 1.5rem auto 0 auto;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card-scala {
    transform: scale(1);
    order: -1;
  }
  .pricing-card-scala:hover {
    transform: translateY(-4px);
  }
}

/* ==========================================================================
   TABELA COMPARATIVA DE RECURSOS
   ========================================================================== */

.comparison-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3.5rem;
}

.comparison-header {
  padding: 2rem;
  background: rgba(13, 19, 31, 0.9);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.comparison-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
}

.comparison-table-container {
  width: 100%;
  overflow-x: auto;
}

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

.comparison-table th, 
.comparison-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.comparison-table th {
  background: rgba(15, 23, 42, 0.95);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
  width: 40%;
}

.comparison-table th.col-scala,
.comparison-table td.col-scala {
  background: rgba(245, 158, 11, 0.08);
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
}

.comparison-table th.col-scala {
  color: var(--gold-300);
}

.comparison-table td {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.check-icon {
  width: 20px;
  height: 20px;
  stroke: var(--emerald-accent);
  margin: 0 auto;
}

.cross-icon {
  width: 18px;
  height: 18px;
  stroke: var(--text-dim);
  margin: 0 auto;
  opacity: 0.5;
}

/* ==========================================================================
   QUEBRA DE OBJEÇÕES
   ========================================================================== */

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

.objection-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.objection-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.objection-question {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.objection-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-400);
  flex-shrink: 0;
}

.objection-answer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Featured 5th Objection (Price Objection) */
.objection-card-featured {
  grid-column: span 2;
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.objection-card-featured .objection-question {
  justify-content: center;
  color: var(--gold-300);
  font-size: 1.35rem;
}

.objection-featured-box {
  margin-top: 1rem;
}

.objection-featured-punch {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.35;
}

.objection-featured-punch .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .objections-grid {
    grid-template-columns: 1fr;
  }
  .objection-card-featured {
    grid-column: span 1;
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.faq-trigger {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--gold-300);
}

.faq-icon {
  width: 22px;
  height: 22px;
  stroke: var(--gold-400);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-content {
  padding-bottom: 1.5rem;
}

.faq-body-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */

.final-cta-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.final-cta-banner {
  background: radial-gradient(circle at center, rgba(30, 41, 59, 0.85) 0%, rgba(7, 9, 14, 0.98) 100%);
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.35), var(--shadow-lg);
  overflow: hidden;
}

.final-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-headline {
  font-size: clamp(2.15rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.final-cta-sub {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.final-cta-aux {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .final-cta-banner {
    padding: 3.5rem 1.5rem;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-whatsapp);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
}

.whatsapp-floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.whatsapp-icon-svg {
  width: 22px;
  height: 22px;
  fill: #FFFFFF;
}

@media (max-width: 768px) {
  .whatsapp-floating-btn {
    bottom: 80px; /* Space for mobile sticky CTA bar */
    right: 16px;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
  }
}

/* ==========================================================================
   MOBILE STICKY CTA BAR
   ========================================================================== */

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 9, 14, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px)) 1rem;
  z-index: var(--z-sticky-mobile);
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.7);
  transform: translateY(0);
  transition: transform var(--transition-normal);
}

.mobile-sticky-bar.hidden {
  transform: translateY(100%);
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: var(--grad-gold);
  color: #1A0D00;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}
