/* =============================================
   SCA 2026 — Landing Page Light
   Design System & Styles
   ============================================= */

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

:root {
  /* Brand — Paleta SCA (extraída do logotipo) */
  --brand-primary: #f97316;       /* Laranja — CTA, destaques */
  --brand-primary-dark: #ea580c;
  --brand-primary-light: #fb923c;

  --brand-secondary: #0ea5e9;     /* Azul céu — links, info */
  --brand-secondary-dark: #0284c7;

  --brand-success: #84cc16;       /* Verde lima — sucesso, ativo, "tempo real" */
  --brand-success-dark: #65a30d;

  --brand-dark: #374151;          /* Cinza carvão — texto/estrutura */
  --brand-dark-light: #4b5563;

  /* Gradients */
  --hero-gradient: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
  --cta-gradient: linear-gradient(135deg, #f97316, #fb923c);

  /* Surfaces — branco dominante + cinzas muito leves */
  --bg-body: #ffffff;
  --bg-section: #ffffff;
  --bg-section-alt: #f9fafb;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;
  --bg-card-border: #e5e7eb;
  --bg-hero: var(--hero-gradient);

  /* Text */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-on-dark: #f9fafb;
  --text-on-dark-muted: #d1d5db;

  /* Feedback */
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --color-star: #fbbf24;

  /* Spacing */
  --section-py: 96px;
  --section-py-sm: 64px;
  --container-max: 1200px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows — apropriadas pra fundo claro */
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --shadow-card: 0 2px 8px rgba(17, 24, 39, 0.06), 0 1px 2px rgba(17, 24, 39, 0.04);
  --shadow-card-hover: 0 12px 32px rgba(17, 24, 39, 0.10), 0 2px 6px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 20px 40px rgba(17, 24, 39, 0.12);
  --shadow-glow-orange: 0 0 40px rgba(249, 115, 22, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--brand-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--brand-secondary-dark); }

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

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.625rem, 3vw, 2.5rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

.text-gradient {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--brand-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn--ghost-dark {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--bg-card-border);
}
.btn--ghost-dark:hover {
  background: var(--bg-section-alt);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.navbar.scrolled {
  border-bottom-color: var(--bg-card-border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.navbar__logo img {
  height: 32px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.navbar__nav a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}
.navbar__nav a:hover {
  color: var(--brand-primary);
}

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

/* =============================================
   THEME DARK — Override quando body.theme-dark
   (controlado pelo admin em /landing-sca-admin)
   ============================================= */
body.theme-dark .hero {
  background:
    radial-gradient(ellipse 750px 450px at 22% 82%, rgba(249, 115, 22, 0.22) 0%, rgba(249, 115, 22, 0.06) 45%, transparent 65%),
    linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
  color: var(--text-on-dark);
}
body.theme-dark .hero::before {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 65%);
  filter: blur(30px);
}
body.theme-dark .hero::after {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 65%);
  filter: blur(30px);
}
body.theme-dark .hero__title { color: #fff; }
body.theme-dark .hero__title .highlight { color: var(--brand-primary-light); }
body.theme-dark .hero__subtitle { color: var(--text-on-dark-muted); }
body.theme-dark .hero__subtitle strong { color: #fff; }
body.theme-dark .hero__badge {
  color: var(--brand-success);
  background: rgba(132, 204, 22, 0.15);
  border-color: rgba(132, 204, 22, 0.3);
}
body.theme-dark .hero__stats { border-top-color: rgba(255, 255, 255, 0.1); }
body.theme-dark .hero__stat-value { color: var(--brand-primary-light); }
body.theme-dark .hero__stat-label { color: var(--text-on-dark-muted); }

/* =============================================
   HERO — Tema claro com orbs das cores do logo
   ============================================= */
.hero {
  position: relative;
  /* Orb laranja suave atrás do CTA + stats (ancora na brand e chama olho pra conversão) */
  background:
    radial-gradient(ellipse 750px 450px at 22% 82%, rgba(249, 115, 22, 0.16) 0%, rgba(249, 115, 22, 0.04) 45%, transparent 65%),
    #ffffff;
  color: var(--text-primary);
  padding: 140px 0 80px;
  overflow: hidden;
}

/* Orb VERDE LIMA (cor da bolinha sobre o C do logo) — grande, alto à esquerda */
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -120px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.35) 0%, rgba(132, 204, 22, 0.12) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

/* Orb AZUL CÉU (cor da bolinha sobre o A do logo) — médio, baixo à direita */
.hero::after {
  content: '';
  position: absolute;
  bottom: -220px;
  right: -160px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.30) 0%, rgba(14, 165, 233, 0.10) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(132, 204, 22, 0.15);
  border: 1px solid rgba(132, 204, 22, 0.4);
  color: #3f6212;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand-success);
  border-radius: 50%;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(132, 204, 22, 0); }
}

.hero__title {
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero__title .highlight {
  color: var(--brand-primary);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 560px;
}
.hero__subtitle strong {
  color: var(--text-primary);
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero__ctas .btn {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--bg-card-border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  /* Escape controlado: estende no máximo 120px além do container, mantém respiração à direita */
  margin-right: calc(-1 * clamp(0px, (100vw - var(--container-max)) / 2, 120px));
}

/* =============================================
   MOCKUPS (desktop + phone)
   ============================================= */
.mockup {
  position: absolute;
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mockup__screen img,
.mockup__screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Mockup DESKTOP (browser window) ---------- */
.mockup--desktop {
  top: 20px;
  left: 0;
  right: 0;
  width: auto;
  max-width: 880px;
  margin-left: auto;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30),
              0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.mockup--desktop .mockup__bar {
  height: 36px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}

.mockup__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup__dot--red    { background: #ef4444; }
.mockup__dot--yellow { background: #f59e0b; }
.mockup__dot--green  { background: #10b981; }

.mockup__address {
  flex: 1;
  background: #ffffff;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: #6b7280;
  margin-left: 14px;
  max-width: 320px;
  border: 1px solid #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup--desktop .mockup__screen {
  height: calc(100% - 36px);
  background: #fff;
}

.mockup--desktop:hover {
  transform: translateY(-4px);
}

/* ---------- Mockup PHONE (iPhone-style) ---------- */
/* Aspect-ratio 485:1080 — combina exato com screenshots de celular 485x1080
   Se mudar o tamanho do print no futuro, é só ajustar aqui */
.mockup--phone {
  bottom: 0;
  left: -30px;
  width: 190px;
  aspect-ratio: 485 / 1080;
  border-radius: 36px;
  background: #111827;
  border: 3px solid #1f2937;
  padding: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.40),
              0 12px 24px rgba(249, 115, 22, 0.18);
  z-index: 2;
}

.mockup--phone .mockup__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 20px;
  background: #111827;
  border-radius: 0 0 12px 12px;
  z-index: 3;
  pointer-events: none;
}

.mockup--phone .mockup__screen {
  border-radius: 28px;
  background: #fff;
  height: 100%;
}

.mockup--phone .mockup__home {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}

.mockup--phone:hover {
  transform: translateY(-4px);
}

/* Floating badges sobre a composição */
.hero__visual-badge {
  position: absolute;
  background: #fff;
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  z-index: 3;
}
.hero__visual-badge--top {
  top: 40px;
  left: -32px;
  animation: badgeFloat 4s ease-in-out infinite;
}
.hero__visual-badge--bottom {
  bottom: 20px;
  right: 20px;
  animation: badgeFloat 4s ease-in-out infinite 2s;
}
.hero__visual-badge i {
  color: var(--brand-success);
  font-size: 1.2rem;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 968px) {
  .hero {
    padding: 110px 0 60px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; }

  .navbar__nav {
    display: none;
  }
}

@media (max-width: 968px) {
  .hero__visual {
    min-height: 460px;
    margin-top: 20px;
    margin-right: 0;
  }
  .mockup--desktop {
    top: 0;
    left: 0;
    right: 0;
    max-width: none;
  }
  .mockup--phone {
    left: 0;
    bottom: -10px;
    width: 180px;
    /* aspect-ratio mantém a proporção 485/1080 */
  }
}

/* =============================================
   BARRA DE LOGOS (marquee estilo Vercel)
   ============================================= */
.logos-bar {
  position: relative;
  padding: 48px 0;
  background: #ffffff;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.logos-bar__caption {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 32px;
}

.logos-bar__marquee {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
}

/* Véus de blur nas laterais — logos emergem da névoa */
.logos-bar__marquee::before,
.logos-bar__marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.logos-bar__marquee::before {
  left: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 40%, transparent 100%);
          mask-image: linear-gradient(to right, black 0%, black 40%, transparent 100%);
}
.logos-bar__marquee::after {
  right: 0;
  background: linear-gradient(to left,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, black 0%, black 40%, transparent 100%);
          mask-image: linear-gradient(to left, black 0%, black 40%, transparent 100%);
}

.logos-bar__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 72px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: max-content;
  animation: logoMarquee 32s linear infinite;
  will-change: transform;
}

.logos-bar__track:hover {
  animation-play-state: paused;
}

.logos-bar__track li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-bar__track img {
  height: 44px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.logos-bar__track li:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes logoMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Respeita redução de movimento: animação bem mais lenta (mantém 1 linha, sem wrap) */
@media (prefers-reduced-motion: reduce) {
  .logos-bar__track {
    animation-duration: 120s; /* 4x mais devagar que os 32s default */
  }
}

/* Mobile: logos menores + gap reduzido + blur laterais menores */
@media (max-width: 640px) {
  .logos-bar { padding: 36px 0; }
  .logos-bar__caption { font-size: 0.72rem; margin-bottom: 24px; letter-spacing: 1.2px; }
  .logos-bar__marquee {
    max-width: 100%;
    padding: 0 16px;
  }
  .logos-bar__marquee::before,
  .logos-bar__marquee::after { width: 60px; }
  .logos-bar__track { gap: 48px; animation-duration: 24s; }
  .logos-bar__track img { height: 36px; max-width: 130px; }
}

/* Dark theme */
body.theme-dark .logos-bar {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.06);
}
body.theme-dark .logos-bar__marquee::before {
  background: linear-gradient(to right,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(15, 23, 42, 0) 100%);
}
body.theme-dark .logos-bar__marquee::after {
  background: linear-gradient(to left,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(15, 23, 42, 0) 100%);
}
body.theme-dark .logos-bar__track img {
  /* Inverte pra logos escuros ficarem visíveis no fundo escuro */
  filter: grayscale(1) brightness(1.8) contrast(0.9);
  opacity: 0.65;
}
body.theme-dark .logos-bar__track li:hover img {
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
}

/* =============================================
   SEÇÃO: PROBLEMAS REAIS
   ============================================= */
.problems {
  padding: var(--section-py) 0;
  background: var(--bg-section-alt);
  position: relative;
}

.section-header {
  margin-bottom: 56px;
}
.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--brand-primary-dark);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.problem-card {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.5;
  transition: opacity var(--transition-base);
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(239, 68, 68, 0.25);
}
.problem-card:hover::before {
  opacity: 1;
}

.problem-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.problem-card__quote {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid #dc2626;
  line-height: 1.5;
}

.problem-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.problem-card__desc strong {
  color: var(--text-primary);
}

.problems__footer {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}
.problems__footer strong {
  color: var(--text-primary);
}

/* Dark theme override */
body.theme-dark .problems {
  background: #111827;
}
body.theme-dark .problem-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}
body.theme-dark .problem-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(239, 68, 68, 0.3);
}
body.theme-dark .problem-card h3,
body.theme-dark .problem-card__quote {
  color: #f8fafc;
}
body.theme-dark .problem-card__quote { border-left-color: #f87171; }
body.theme-dark .problem-card__desc { color: #cbd5e1; }
body.theme-dark .problem-card__desc strong { color: #f8fafc; }
body.theme-dark .section-header h2 { color: #f8fafc; }
body.theme-dark .section-subtitle { color: #cbd5e1; }
body.theme-dark .problems__footer { color: #cbd5e1; }
body.theme-dark .problems__footer strong { color: #f8fafc; }
body.theme-dark .section-tag {
  background: rgba(249, 115, 22, 0.18);
  color: var(--brand-primary-light);
}

/* Mobile */
@media (max-width: 968px) {
  .problems__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .problem-card { padding: 28px 24px; }
}

/* =============================================
   SEÇÃO: SOCIAL PROOF (vídeo + depoimentos flutuantes)
   Ponte entre "problemas" e "solução"
   ============================================= */
.social-proof {
  position: relative;
  padding: 0;
  min-height: clamp(260px, 28vw, 360px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.social-proof__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.social-proof__video {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  background: #0f172a center/cover no-repeat url('../img/dash-realtime.webp');
  transform: rotate(-2deg);
  transform-origin: center;
}

.social-proof__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.45) 100%),
    radial-gradient(ellipse at 50% 40%, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
}

.social-proof .container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.social-proof__card {
  background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 100%);
  border-radius: 16px 16px 0 0;
  padding: 16px clamp(16px, 3vw, 28px) 14px;
  color: #fff;
  box-shadow: 0 -10px 32px -14px rgba(2, 132, 199, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: clamp(140px, 18vw, 200px);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.social-proof__card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.social-proof__header {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.social-proof__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.social-proof__header h2 {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}

.social-proof__header h2 em {
  font-style: normal;
  color: #fef3c7;
}

.testimonial-stack {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 0 auto;
}

.testimonial-stack__track {
  position: relative;
  min-height: 100px;
}

.testimonial-stack__card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  text-align: center;
  padding: 0 8px;
}

.testimonial-stack__card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-stack__stars {
  display: inline-flex;
  gap: 2px;
  color: #fde047;
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.testimonial-stack blockquote {
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
  quotes: "\201C""\201D";
}

.testimonial-stack blockquote::before { content: open-quote; margin-right: 2px; }
.testimonial-stack blockquote::after  { content: close-quote; margin-left: 2px; }

.testimonial-stack__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.testimonial-stack__author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.testimonial-stack__author strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-stack__author span {
  display: block;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1px;
}

.testimonial-stack__dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}

.testimonial-stack__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.testimonial-stack__dot:hover { background: rgba(255, 255, 255, 0.6); }

.testimonial-stack__dot.is-active {
  background: #fff;
  width: 18px;
  border-radius: 3px;
}

/* Mobile */
@media (max-width: 768px) {
  .social-proof { min-height: 240px; }
  .social-proof__card {
    margin-top: 90px;
    padding: 20px 18px 16px;
    border-radius: 16px 16px 0 0;
  }
  .testimonial-stack__track { min-height: 200px; }
  .testimonial-stack__author { flex-direction: column; gap: 8px; text-align: center; }
}

/* Dark theme */
body.theme-dark .social-proof__overlay {
  background:
    linear-gradient(180deg, rgba(14, 165, 233, 0.35) 0%, rgba(15, 23, 42, 0.75) 100%);
}
body.theme-dark .social-proof__card {
  background: linear-gradient(180deg, #0284c7 0%, #075985 100%);
  box-shadow: 0 -16px 60px -20px rgba(8, 145, 178, 0.5);
}

/* =============================================
   SEÇÃO: SOLUÇÕES (fundo azul suave)
   ============================================= */
.solutions {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
}

/* Orbs decorativos em azul */
.solutions__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.solutions__orbs::before,
.solutions__orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}
.solutions__orbs::before {
  top: -100px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 70%);
}
.solutions__orbs::after {
  bottom: -120px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

.solutions .container { position: relative; z-index: 1; }

/* Tag azul variante */
.section-tag--blue {
  background: rgba(14, 165, 233, 0.15);
  color: #0369a1;
}

/* Gradient azul reutilizável pra destaque em headings */
.text-gradient-blue {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature rows (linhas intercaladas estilo Conta Azul) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}
.feature-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-row--reverse .feature-row__content {
  order: 2;
}
.feature-row--reverse .feature-row__visual {
  order: 1;
}

.feature-row__content {
  max-width: 520px;
}

.feature-row__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.25);
}
.feature-row__tag i { font-size: 1rem; }

.feature-row__content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  font-weight: 800;
}

.feature-row__content > p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-row__content > p strong {
  color: var(--text-primary);
}

.feature-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.feature-row__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.feature-row__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  box-shadow: inset 0 0 0 4px #ffffff, 0 2px 6px rgba(14, 165, 233, 0.3);
}

/* Visual da feature (imagem grande + badge flutuante) */
.feature-row__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-row__image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  overflow: visible;
}

/* Modifier: "moldura" sutil em volta da imagem (estilo quadro) */
.feature-row__image-wrap--framed {
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: calc(var(--radius-lg) + 4px);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.18),
              0 4px 12px rgba(0, 0, 0, 0.06);
}
.feature-row__image-wrap--framed img,
.feature-row__image-wrap--framed video {
  box-shadow: none;
  border-radius: var(--radius-md);
}
/* Dark theme */
body.theme-dark .feature-row__image-wrap--framed {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.feature-row__image-wrap img,
.feature-row__image-wrap video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(14, 165, 233, 0.20),
              0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0f172a;
}

/* Vídeo DENTRO de video reusa estilo (pro caso de img fallback) */
.feature-row__image-wrap video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-row__badge {
  position: absolute;
  top: 16px;
  right: -16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  font-size: 0.88rem;
  font-weight: 700;
  animation: badgeFloat 4s ease-in-out infinite;
}
.feature-row__badge i { color: #0ea5e9; font-size: 1.1rem; }
.feature-row__badge--red i { color: #dc2626; }
.feature-row__badge--green i { color: #10b981; }

.feature-row--reverse .feature-row__badge {
  right: auto;
  left: -16px;
}

/* =============================================
   COMPOSIÇÃO MOBILE+DESKTOP dentro de feature row
   (usado na linha "Sua operação na palma da mão")
   ============================================= */
.feature-row__composition {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-height: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop (atrás) — sobrepõe as regras de .mockup--desktop do hero */
.feature-row__composition .mockup--desktop.mockup--in-row {
  position: absolute;
  top: 20px;
  right: -20px;
  left: auto;
  width: 85%;
  max-width: none;
  margin: 0;
  aspect-ratio: 16 / 10;
  z-index: 1;
}

/* Celular (na frente) — menor que o hero */
.feature-row__composition .mockup--phone.mockup--in-row {
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 170px;
  /* height controlado por aspect-ratio 485/1080 do .mockup--phone base */
  z-index: 2;
}

/* Badge fica sobre a composição */
.feature-row__composition .feature-row__badge {
  position: absolute;
  top: 32px;
  right: -16px;
  left: auto;
  z-index: 3;
}
.feature-row--reverse .feature-row__composition .feature-row__badge {
  right: auto;
  left: -16px;
}

/* Dark theme override */
body.theme-dark .solutions {
  background: linear-gradient(180deg, #0c1a35 0%, #0a1224 100%);
}
body.theme-dark .solutions__orbs::before {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
  opacity: 0.9;
}
body.theme-dark .solutions__orbs::after {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
  opacity: 0.9;
}
body.theme-dark .feature-row { border-bottom-color: rgba(14, 165, 233, 0.15); }
body.theme-dark .feature-row__content h3 { color: #f8fafc; }
body.theme-dark .feature-row__content > p { color: #cbd5e1; }
body.theme-dark .feature-row__content > p strong { color: #f8fafc; }
body.theme-dark .feature-row__list li { color: #cbd5e1; }
body.theme-dark .feature-row__list li::before {
  box-shadow: inset 0 0 0 4px #0a1224, 0 2px 6px rgba(14, 165, 233, 0.4);
}
body.theme-dark .feature-row__badge {
  background: #1e293b;
  color: #f8fafc;
}
body.theme-dark .section-tag--blue {
  background: rgba(14, 165, 233, 0.25);
  color: #7dd3fc;
}

/* Mobile */
@media (max-width: 968px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
  .feature-row--reverse .feature-row__content { order: 2; }
  .feature-row--reverse .feature-row__visual { order: 1; }
  /* Em mobile, tudo vira: imagem em cima, texto embaixo — ou vice-versa */
  .feature-row .feature-row__visual { order: 0; }
  .feature-row .feature-row__content { order: 1; }
  .feature-row__badge {
    right: 0;
    top: -12px;
  }
  .feature-row--reverse .feature-row__badge {
    right: 0;
    left: auto;
  }

  /* Composição mobile+desktop em responsivo */
  .feature-row__composition {
    min-height: 340px;
    max-width: 480px;
  }
  .feature-row__composition .mockup--desktop.mockup--in-row {
    right: 0;
    width: 90%;
  }
  .feature-row__composition .mockup--phone.mockup--in-row {
    left: 0;
    width: 150px;
    /* aspect-ratio mantém 485/1080 */
  }

  .solutions__orbs::before { width: 300px; height: 300px; }
  .solutions__orbs::after { width: 280px; height: 280px; }
}

@media (max-width: 480px) {
  .feature-row__composition { min-height: 290px; }
  .feature-row__composition .mockup--phone.mockup--in-row {
    width: 130px;
  }
}

/* =============================================
   SEÇÃO DOR × SOLUÇÃO (fundo branco, pares diretos)
   ============================================= */
.pain-solution {
  padding: var(--section-py) 0;
  background: #ffffff;
}

.ps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.ps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px dashed var(--bg-card-border);
}
.ps-row:first-child { padding-top: 8px; }
.ps-row:last-child { border-bottom: none; padding-bottom: 8px; }

.ps-row__pain,
.ps-row__solution {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-row__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.ps-row__label i { font-size: 0.95rem; }

.ps-row__label--pain {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.ps-row__label--solution {
  background: rgba(14, 165, 233, 0.12);
  color: #0369a1;
}

.ps-row__question {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}
.ps-row__question strong {
  color: #dc2626;
  font-weight: 700;
}

.ps-row__arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.30);
  flex-shrink: 0;
}

.ps-row__solution p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.ps-row__solution p strong {
  color: var(--text-primary);
}

/* Dark theme */
body.theme-dark .pain-solution { background: #0f172a; }
body.theme-dark .ps-row { border-bottom-color: rgba(255, 255, 255, 0.08); }
body.theme-dark .ps-row__question { color: #f8fafc; }
body.theme-dark .ps-row__solution p { color: #cbd5e1; }
body.theme-dark .ps-row__solution p strong { color: #f8fafc; }
body.theme-dark .ps-row__label--pain {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}
body.theme-dark .ps-row__label--solution {
  background: rgba(14, 165, 233, 0.22);
  color: #7dd3fc;
}

/* Mobile: stack vertical, seta no meio com rotação */
@media (max-width: 768px) {
  .ps-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
    text-align: left;
  }
  .ps-row__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

/* =============================================
   SEÇÃO CTA + EQUIPAMENTOS (fundo laranja)
   ============================================= */
.cta-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
}

/* Orbs decorativos laranja */
.cta-section__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-section__orbs::before,
.cta-section__orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}
.cta-section__orbs::before {
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
}
.cta-section__orbs::after {
  bottom: -140px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.35) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; }

/* Text gradient laranja reutilizável */
.text-gradient-orange {
  background: linear-gradient(135deg, #ea580c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tag laranja (reusa .section-tag base, muda cor) */
.section-tag--orange {
  background: rgba(249, 115, 22, 0.18);
  color: #9a3412;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-tag--orange i { font-size: 1rem; }

/* 3 highlights em grid */
.cta-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 56px;
}

.cta-highlight {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.cta-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.35);
}

.cta-highlight__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 1.9rem;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.30);
}

.cta-highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cta-highlight p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Card de equipamentos */
.equipment-card {
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 24px 60px rgba(249, 115, 22, 0.12);
  max-width: 880px;
  margin: 0 auto 48px;
}

.equipment-card__header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(249, 115, 22, 0.3);
}
.equipment-card__header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.equipment-card__header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.equipment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.equipment-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
  font-size: 1.5rem;
}

.equipment-item__content h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.equipment-item__content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.equipment-item__content p strong {
  color: var(--text-primary);
}

/* CTA final (botão grande + footnote) */
.cta-section__footer {
  text-align: center;
}
.cta-section__footer .btn {
  min-width: 280px;
  font-size: 1.1rem;
  padding: 18px 40px;
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.35);
}
.cta-section__footer .btn:hover {
  box-shadow: 0 20px 48px rgba(249, 115, 22, 0.45);
}
.cta-section__footnote {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Dark theme override */
body.theme-dark .cta-section {
  background: linear-gradient(180deg, #1a0e04 0%, #2a1709 100%);
}
body.theme-dark .cta-section__orbs::before {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, transparent 70%);
  opacity: 0.7;
}
body.theme-dark .cta-section__orbs::after {
  background: radial-gradient(circle, rgba(251, 146, 60, 0.28) 0%, transparent 70%);
  opacity: 0.7;
}
body.theme-dark .cta-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(249, 115, 22, 0.2);
}
body.theme-dark .cta-highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 115, 22, 0.45);
}
body.theme-dark .cta-highlight h3 { color: #f8fafc; }
body.theme-dark .cta-highlight p { color: #cbd5e1; }
body.theme-dark .equipment-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(249, 115, 22, 0.25);
}
body.theme-dark .equipment-card__header { border-bottom-color: rgba(249, 115, 22, 0.35); }
body.theme-dark .equipment-card__header h3 { color: #f8fafc; }
body.theme-dark .equipment-card__header p { color: #cbd5e1; }
body.theme-dark .equipment-item__icon {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
}
body.theme-dark .equipment-item__content h4 { color: #f8fafc; }
body.theme-dark .equipment-item__content p { color: #cbd5e1; }
body.theme-dark .equipment-item__content p strong { color: #f8fafc; }
body.theme-dark .cta-section__footnote { color: #cbd5e1; }
body.theme-dark .section-tag--orange {
  background: rgba(249, 115, 22, 0.28);
  color: #fdba74;
}
body.theme-dark #cta-heading { color: #f8fafc; }

/* Mobile */
@media (max-width: 968px) {
  .cta-highlights { grid-template-columns: 1fr; gap: 16px; }
  .equipment-list { grid-template-columns: 1fr; }
  .equipment-card { padding: 32px 24px; }
  .cta-section__footer .btn { min-width: auto; width: 100%; }
}

/* =============================================
   SEÇÃO: PLANOS E PREÇOS (fundo verde)
   ============================================= */
.pricing {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
}

/* Orbs verdes */
.pricing__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.pricing__orbs::before,
.pricing__orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.pricing__orbs::before {
  top: -100px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(132, 204, 22, 0.45) 0%, transparent 70%);
}
.pricing__orbs::after {
  bottom: -120px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
}

.pricing .container { position: relative; z-index: 1; }

/* Text gradient verde (para destaque em títulos) */
.text-gradient-green {
  background: linear-gradient(135deg, #16a34a, #84cc16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tag verde */
.section-tag--green {
  background: rgba(132, 204, 22, 0.2);
  color: #15803d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-tag--green i { font-size: 1rem; }

/* Banner de desconto anual */
.pricing__annual-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 24px;
  background: #ffffff;
  border: 2px dashed #16a34a;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  color: var(--text-primary);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.15);
}
.pricing__annual-banner i {
  color: #16a34a;
  font-size: 1.3rem;
}
.pricing__annual-banner strong {
  color: #15803d;
}

/* Grid dos 3 cards */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* Card de preço base */
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: #ffffff;
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(22, 163, 74, 0.15);
}

/* Card destacado (Intermediário) */
.price-card--featured {
  border: 2px solid #f97316;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
  transform: scale(1.03);
}
.price-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 28px 56px rgba(249, 115, 22, 0.22);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}

.price-card__header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(22, 163, 74, 0.2);
}
.price-card__header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.price-card__tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.price-card__price {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-card__anchor {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-card__value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-card__value small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0;
}

.price-card__annual {
  font-size: 0.85rem;
  color: #15803d;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(132, 204, 22, 0.15);
  border-radius: var(--radius-sm);
}

.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.price-card__features li i {
  color: #16a34a;
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
}

/* Card Enterprise (full width, layout horizontal) */
.price-card--enterprise {
  margin-top: 40px;
  padding: 36px 40px;
  background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
  border: 1px solid rgba(132, 204, 22, 0.3);
  color: #f8fafc;
}
.price-card--enterprise:hover { transform: translateY(-6px); }

.price-card--enterprise__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.price-card__badge--enterprise {
  position: static;
  transform: none;
  display: inline-block;
  background: linear-gradient(135deg, #16a34a, #84cc16);
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(132, 204, 22, 0.35);
}

.price-card--enterprise h3 {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.price-card--enterprise__desc {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 640px;
}

.price-card--enterprise__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  min-width: 240px;
}

.price-card--enterprise__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #84cc16;
}

/* Addon */
.pricing__addon {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  margin: 48px auto 0;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: var(--radius-lg);
}
.pricing__addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pricing__addon-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing__addon-content strong {
  font-size: 1rem;
  color: var(--text-primary);
}
.pricing__addon-content span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Rodapé de lembrete */
.pricing__footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.pricing__footnote i {
  color: #16a34a;
  font-size: 1.15rem;
}

/* Aviso: hardware não incluso */
.pricing__hardware-notice {
  text-align: center;
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 0.92rem;
  color: var(--color-danger);
  line-height: 1.5;
}
.pricing__hardware-notice strong { color: var(--color-danger); }
.pricing__hardware-notice a {
  color: var(--color-danger);
  text-decoration: underline;
  font-weight: 600;
}
.pricing__hardware-notice a:hover { opacity: 0.8; }
body.theme-dark .pricing__hardware-notice,
body.theme-dark .pricing__hardware-notice strong,
body.theme-dark .pricing__hardware-notice a { color: #fca5a5; }

/* Dark theme */
body.theme-dark .pricing {
  background: linear-gradient(180deg, #052e16 0%, #041f10 100%);
}
body.theme-dark .pricing__orbs::before {
  background: radial-gradient(circle, rgba(132, 204, 22, 0.3) 0%, transparent 70%);
  opacity: 0.7;
}
body.theme-dark .pricing__orbs::after {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  opacity: 0.7;
}
body.theme-dark .pricing__annual-banner {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  border-color: #84cc16;
}
body.theme-dark .pricing__annual-banner strong { color: #bef264; }
body.theme-dark .pricing__annual-banner i { color: #84cc16; }
body.theme-dark .price-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(132, 204, 22, 0.2);
}
body.theme-dark .price-card__header h3 { color: #f8fafc; }
body.theme-dark .price-card__tagline,
body.theme-dark .price-card__features li,
body.theme-dark .price-card__value small,
body.theme-dark .pricing__addon-content span,
body.theme-dark .pricing__footnote { color: #cbd5e1; }
body.theme-dark .price-card__value { color: #f8fafc; }
body.theme-dark .price-card__anchor { color: #64748b; }
body.theme-dark .price-card__annual {
  background: rgba(132, 204, 22, 0.22);
  color: #bef264;
}
body.theme-dark .pricing__addon { background: rgba(255, 255, 255, 0.04); }
body.theme-dark .pricing__addon-content strong { color: #f8fafc; }
body.theme-dark #pricing-heading { color: #f8fafc; }

/* Mobile */
@media (max-width: 968px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card--featured {
    transform: scale(1);
    order: -1; /* Move featured pro topo */
  }
  .price-card--featured:hover {
    transform: translateY(-6px);
  }
  .price-card--enterprise__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .price-card--enterprise__cta {
    align-items: flex-start;
    min-width: auto;
  }
  .pricing__annual-banner {
    font-size: 0.88rem;
    padding: 10px 18px;
  }
}

@media (max-width: 640px) {
  .hero__stats { gap: 24px; }
  .hero__stat-value { font-size: 1.5rem; }
  .hero__visual-badge { display: none; }
  .btn--lg { padding: 14px 24px; font-size: 1rem; }

  .hero__visual { min-height: 380px; }
  .mockup--desktop { width: 94%; }
  .mockup--phone {
    width: 150px;
    height: 305px;
    border-width: 2px;
    padding: 8px;
    border-radius: 32px;
  }
  .mockup--phone .mockup__screen { border-radius: 24px; }
  .mockup--phone .mockup__notch { width: 70px; height: 18px; top: 8px; }
}

/* =============================================
   SEÇÃO: FAQ (dúvidas)
   ============================================= */
.faq {
  padding: var(--section-py) 0;
  background: #ffffff;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-section-alt);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.faq-item:hover {
  border-color: rgba(14, 165, 233, 0.25);
}
.faq-item[open] {
  border-color: var(--brand-secondary);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
  background: #ffffff;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color var(--transition-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--brand-secondary); }

.faq-item summary i {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--brand-secondary);
  transition: transform var(--transition-base);
}
.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 24px 24px;
  animation: faqFadeIn 0.35s ease;
}
.faq-item__answer p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}
.faq-item__answer p strong {
  color: var(--text-primary);
}
.faq-item__answer a {
  color: var(--brand-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Dark theme */
body.theme-dark .faq { background: #0f172a; }
body.theme-dark .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
body.theme-dark .faq-item[open] {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-secondary);
}
body.theme-dark .faq-item summary { color: #f8fafc; }
body.theme-dark .faq-item__answer p { color: #cbd5e1; }
body.theme-dark .faq-item__answer p strong { color: #f8fafc; }
body.theme-dark #faq-heading { color: #f8fafc; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(180deg, #1f2937 0%, #0f172a 100%);
  color: #cbd5e1;
  padding: 72px 0 32px;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand {
  max-width: 360px;
}
.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
  color: #cbd5e1;
}
.footer__company {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}
.footer__company strong {
  color: #f8fafc;
}

.footer__col h4 {
  color: #f8fafc;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  color: #cbd5e1;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__col a:hover {
  color: #ffffff;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.footer__contact small {
  font-size: 0.78rem;
  opacity: 0.6;
}
.footer__contact i {
  color: var(--brand-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}
.footer__tagline {
  font-style: italic;
  color: #64748b !important;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 50;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* Aviso de privacidade (LGPD) */
.privacy-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 96px; /* deixa espaço pro botão flutuante do WhatsApp */
  max-width: 720px;
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  z-index: 60;
  backdrop-filter: blur(8px);
  animation: privacySlideUp 0.3s ease-out;
}
.privacy-banner[hidden] { display: none; }
.privacy-banner__content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.privacy-banner p {
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0;
  flex: 1 1 320px;
}
.privacy-banner a {
  color: #93c5fd;
  text-decoration: underline;
}
.privacy-banner__btn {
  background: var(--brand-primary);
  color: #ffffff;
  border: 0;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition-base);
  white-space: nowrap;
}
.privacy-banner__btn:hover { background: var(--brand-primary-dark); }
@keyframes privacySlideUp {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 640px) {
  .privacy-banner { right: 16px; bottom: 92px; } /* acima do WhatsApp float em mobile */
  .privacy-banner__content { flex-direction: column; align-items: stretch; }
  .privacy-banner__btn { width: 100%; }
}

/* Mobile */
@media (max-width: 968px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; font-size: 1.6rem; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 0.95rem; padding: 18px 18px; }
  .faq-item__answer { padding: 0 18px 20px; }
}
