/* ==========================================================================
   SUPLAN — LANDING PAGE DESIGN SYSTEM (VERSÃO COMPACTA & CLEAN)
   Paleta Oficial:
   - Verde Profundo (Primary): #335450
   - Cinza Muted (Accent / Borders / Subtle): #92A09A
   - Branco Puro (Backgrounds / Text On Dark): #FFFFFF
   - Textos Principais: #000000 (Preto de Alto Contraste para máxima legibilidade)
   ========================================================================== */

:root {
  --color-primary: #335450;
  --color-primary-dark: #223a37;
  --color-primary-light: #446f6a;
  --color-accent: #92a09a;
  --color-accent-light: #e6eae8;
  --color-accent-subtle: #f4f6f5;
  --color-white: #ffffff;
  --color-text-dark: #000000;
  --color-text-muted: #000000;
  --color-border: #d2dbd7;
  --color-negative: #b33939;
  --color-positive: #218c74;
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 6px rgba(51, 84, 80, 0.05);
  --shadow-md: 0 6px 18px rgba(51, 84, 80, 0.08);
  --shadow-lg: 0 12px 30px rgba(51, 84, 80, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --transition: all 0.25s ease;
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: #000000;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Utilitários de Layout */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-white {
  color: var(--color-white) !important;
}

.text-light {
  color: #ffffff !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.section {
  padding: 48px 0;
}

/* Tipografia */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}

p {
  color: #000000;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 28px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  background-color: var(--color-accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-tag-light {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 13px 26px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-hero {
  background-color: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  background-color: #f8faf9;
}

.btn-pricing {
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 16px 20px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(51, 84, 80, 0.3);
}

.btn-pricing:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

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

.btn-header {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-header:hover {
  background-color: var(--color-primary-dark);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  font-weight: 700;
  padding: 11px 22px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #20b858;
}

.btn-pulse {
  animation: pulse-shadow 2.5s infinite;
}

@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
  background: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
  color: #000000;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-bar-content p {
  color: #000000;
  margin: 0;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-highlight {
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ==========================================================================
   IMAGEM WORDMARK (SUPLAN) EM TÍTULOS
   ========================================================================== */
.title-wordmark {
  height: 1.12em;
  width: auto;
  display: inline-block;
  vertical-align: -0.12em;
  margin: 0 4px;
  object-fit: contain;
}

.title-wordmark-sm {
  height: 1.05em;
  width: auto;
  display: inline-block;
  vertical-align: -0.12em;
  margin: 0 3px;
  object-fit: contain;
}

.title-wordmark-card {
  height: 1.15em;
  width: auto;
  display: inline-block;
  vertical-align: -0.14em;
  margin-right: 4px;
  object-fit: contain;
}

.main-header {
  background-color: var(--color-white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.badge-tag {
  display: none; /* Oculto no modo PC */
  background-color: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #000000;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

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

/* ==========================================================================
   1. HERO SECTION (COMPACTA)
   ========================================================================== */
.hero-section {
  background: linear-gradient(145deg, #335450 0%, #1e3330 100%);
  color: var(--color-white);
  padding: 44px 0 52px 0;
  position: relative;
  overflow: hidden;
}

.hero-centered-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-header-block {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 10px auto;
  padding: 0 10px;
}

.hero-title {
  color: var(--color-white);
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.highlight-text {
  color: #a8dfd6;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

/* Dashboard Showcase Window */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 16px auto 20px auto;
}

.hero-subtitle-block {
  max-width: 820px;
  margin: 0 auto 16px auto;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.dashboard-window-frame {
  position: relative;
  z-index: 2;
  background: #1c2e2b;
  border: 1.5px solid rgba(146, 160, 154, 0.4);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.window-top-bar {
  background-color: #243d39;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 32px;
}

.window-dots {
  display: flex;
  gap: 6px;
  z-index: 2;
}

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

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

.window-title {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2ece9;
  pointer-events: none;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 perfeita */
  height: 0;
  overflow: hidden;
  background-color: #000000;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Capa Interativa do Vídeo (Resolve Erro 153 e Acelera Carregamento) */
.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d1715;
  overflow: hidden;
  z-index: 3;
}

.video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.video-cover:hover .video-cover-img {
  transform: scale(1.03);
  opacity: 0.95;
}

.video-play-btn-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.video-play-btn {
  width: 76px;
  height: 76px;
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7), 0 8px 25px rgba(0, 0, 0, 0.4);
  animation: playPulse 2s infinite;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-cover:hover .video-play-btn {
  transform: scale(1.1);
  background-color: #2dd4bf;
}

.video-play-text {
  background: rgba(13, 23, 21, 0.88);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7), 0 8px 25px rgba(0, 0, 0, 0.4); }
  70% { box-shadow: 0 0 0 18px rgba(20, 184, 166, 0), 0 8px 25px rgba(0, 0, 0, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0), 0 8px 25px rgba(0, 0, 0, 0.4); }
}

.dashboard-img-container {
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.dashboard-img-container::after,
.screen-media::after {
  content: '🔍 Clique para ampliar';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(30, 51, 48, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.dashboard-img-container:hover::after,
.screen-media:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.hero-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.dashboard-img-container:hover .hero-dashboard-img,
.screen-media:hover .screen-img {
  filter: brightness(1.02);
}

.hero-cta-group {
  margin-top: 4px;
  margin-bottom: 12px;
}

.micro-copy {
  color: #ffffff;
  font-size: 0.8rem;
  margin-top: 8px;
  opacity: 0.9;
}

.hero-features-centered {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   2. SEÇÃO DE PROBLEMAS (COMPACTA)
   ========================================================================== */
.problem-section {
  background-color: var(--color-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.problem-card {
  background-color: var(--color-accent-subtle);
  border: 1px solid var(--color-border);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.problem-card p {
  font-size: 0.9rem;
  color: #000000;
}

.problem-quote-box {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
}

.quote-content p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.45;
}

.quote-content strong {
  color: var(--color-white);
}

/* ==========================================================================
   3. PARA QUEM É vs. PARA QUEM NÃO É (QUALIFICAÇÃO)
   ========================================================================== */
.audience-section {
  background-color: var(--color-accent-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.comp-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
}

/* ==========================================================================
   4. SEÇÃO DE TELAS DA SOLUÇÃO (SHOWCASE DE TELAS)
   ========================================================================== */
.solution-section {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

/* Cards de Destaque dos Indicadores */
.diff-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.diff-card-item {
  background-color: var(--color-accent-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.diff-card-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.diff-card-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-card-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.diff-card-text p {
  font-size: 0.85rem;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Showcase do Manual de Uso Lado a Lado */
.manual-showcase-wrapper {
  margin-top: 10px;
  margin-bottom: 36px;
  width: 100%;
}

.manual-header {
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.manual-tag {
  display: inline-block;
  background-color: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.manual-title {
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.manual-subtitle {
  font-size: 0.92rem;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 0;
}

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

.manual-card {
  background-color: var(--color-accent-subtle);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.manual-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.manual-media {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: zoom-in;
}

.screens-intro-box {
  margin-bottom: 20px;
}

.screens-intro-heading {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 700;
}

.solution-screens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.screen-card {
  background-color: var(--color-accent-subtle);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.screen-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.screen-header {
  margin-bottom: 14px;
}

.screen-header h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.screen-header p {
  font-size: 0.88rem;
  color: #000000;
  line-height: 1.45;
}

.screen-media {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9.5;
  position: relative;
  cursor: zoom-in;
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background-color: #ffffff;
  cursor: zoom-in;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.is-for-you {
  border-color: var(--color-primary);
}

.is-not-for-you {
  border-color: var(--color-border);
}

.comp-header {
  margin-bottom: 16px;
}

.comp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.comp-badge.positive {
  background-color: #d1fae5;
  color: #065f46;
}

.comp-badge.negative {
  background-color: #fee2e2;
  color: #991b1b;
}

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

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #000000;
}

.comp-icon-pos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.comp-icon-neg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #e5e7eb;
  color: #000000;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ==========================================================================
   5. SEÇÃO DE OFERTA & PREÇO
   ========================================================================== */
.offer-section {
  background: linear-gradient(150deg, #335450 0%, #1e3330 100%);
  color: var(--color-white);
  padding: 48px 0 54px 0;
}

/* Pricing Card Principal */
.pricing-card-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--color-white);
  color: #000000;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 2.5px solid var(--color-accent);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.pricing-product-name {
  font-size: 1.3rem;
  margin: 10px 0 18px 0;
  color: var(--color-primary);
}

.pricing-checklist {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--color-accent-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: #000000;
}

.pricing-price-box {
  margin-bottom: 18px;
}

.old-price {
  display: block;
  font-size: 0.85rem;
  color: #444444;
  text-decoration: line-through;
}

.installment-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 4px 0;
}

.install-times {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000;
}

.install-value {
  font-size: 2.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
}

.cash-price {
  font-size: 0.9rem;
  color: #000000;
}

.pricing-security {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: #000000;
  font-weight: 600;
  flex-wrap: wrap;
}

/* ==========================================================================
   7. SEÇÃO DE GARANTIA (CARD COMPACTO SEM SELO)
   ========================================================================== */
.guarantee-section {
  background-color: var(--color-white);
}

.guarantee-box-compact {
  max-width: 740px;
  margin: 0 auto;
  border: 1.5px solid var(--color-accent-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfb 100%);
  box-shadow: var(--shadow-sm);
}

.guarantee-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.guarantee-content p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #000000;
}

.guarantee-highlight {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-top: 8px;
}

/* ==========================================================================
   8. FAQ (ACCORDION COMPACTO)
   ========================================================================== */
.faq-section {
  background-color: var(--color-accent-subtle);
}

.faq-container {
  max-width: 760px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.accordion-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #ffffff;
}

.accordion-body p {
  padding: 0 18px 16px 18px;
  font-size: 0.88rem;
  color: #000000;
}

.faq-whatsapp-box {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.faq-whatsapp-box p {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
}

/* ==========================================================================
   9. FOOTER (COMPACTO)
   ========================================================================== */
.main-footer {
  background-color: #1f3330;
  color: #ffffff;
  padding-top: 36px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: inline-block;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-desc {
  font-size: 0.85rem;
  max-width: 300px;
  color: #ffffff;
  margin-bottom: 8px;
}

.btn-footer-license {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-footer-license:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.footer-links h4, .footer-security h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-light);
}

.footer-security p {
  font-size: 0.8rem;
  margin-bottom: 8px;
  color: #ffffff;
}

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

.badge-pill {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.footer-bottom {
  padding: 16px 0;
  font-size: 0.75rem;
  color: #ffffff;
  opacity: 0.85;
}

/* ==========================================================================
   STICKY FLOATING CTA BAR
   ========================================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

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

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-info strong {
  font-size: 0.9rem;
  color: var(--color-primary);
}

.sticky-price {
  font-size: 0.75rem;
  color: #000000;
  font-weight: 500;
}

.btn-sticky {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .solution-screens-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header-container {
    justify-content: center;
  }

  .header-nav {
    display: none;
  }

  .badge-tag {
    display: inline-block;
  }

  .section {
    padding: 36px 0;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

  .problem-grid, .comparison-grid {
    grid-template-columns: 1fr;
  }

  .diff-cards-grid {
    grid-template-columns: 1fr;
  }

  .manual-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 24px 18px;
  }

  .install-value {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   MODAL LIGHTBOX COM ZOOM INTERATIVO & FECHAR CENTRALIZADO
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  user-select: none;
  touch-action: none;
}

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

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 14, 12, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Barra Flutuante Centralizada */
.lightbox-floating-controls {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  width: auto;
  max-width: 95vw;
}

.lightbox-actions-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 38, 35, 0.92);
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: bold;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.lightbox-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: scale(1.06);
}

.lightbox-btn:active {
  transform: scale(0.95);
}

.lightbox-zoom-display {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
  padding: 0 4px;
}

.lightbox-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 4px;
}

.lightbox-btn-close {
  width: auto;
  padding: 0 16px;
  height: 38px;
  border-radius: 20px;
  font-size: 0.88rem;
  background: #e63946;
  border-color: #e63946;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lightbox-btn-close:hover {
  background: #d62828;
  border-color: #d62828;
  color: #ffffff;
}

/* Título Flutuante */
.lightbox-floating-title {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 45;
  pointer-events: none;
  background: rgba(14, 26, 24, 0.85);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.lightbox-title-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Área de visualização */
.lightbox-viewport {
  position: relative;
  z-index: 10;
  flex: 1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.lightbox-viewport.is-dragging {
  cursor: grabbing;
}

.lightbox-pan-container {
  position: relative;
  transform-origin: center center;
  transition: transform 0.05s ease-out;
  will-change: transform;
  max-width: 94vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-element {
  max-width: 90vw;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: block;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-footer-tip {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 45;
  background: rgba(14, 26, 24, 0.85);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  text-align: center;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  white-space: nowrap;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsividade Mobile Específica */
@media (max-width: 768px) {
  .lightbox-floating-controls {
    top: 12px;
  }
  .lightbox-actions-pill {
    padding: 4px 8px;
    gap: 4px;
  }
  .lightbox-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .lightbox-zoom-display {
    font-size: 0.8rem;
    min-width: 42px;
  }
  .lightbox-btn-close {
    height: 36px;
    padding: 0 12px;
  }
  .lightbox-btn-close .close-label {
    display: none; /* Deixa apenas o ícone ✕ no celular para economizar espaço */
  }
  .lightbox-floating-title {
    top: 60px;
    max-width: 85vw;
  }
  .lightbox-title-text {
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .lightbox-image-element {
    max-width: 94vw;
    max-height: 72vh;
  }
  .lightbox-footer-tip {
    font-size: 0.7rem;
    bottom: 8px;
    padding: 4px 12px;
  }
}
