/* ==========================================================================
   MÁQUINA DE RECEITA SOLAR - DESIGN SYSTEM & MAIN STYLES
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-primary: #0A0D12;
  --bg-secondary: #0F131A;
  --bg-card: #141822;
  --bg-card-hover: #19202D;
  --bg-input: #10141D;
  
  --solar-gold: #F59E0B;
  --solar-yellow: #FBBF24;
  --solar-amber: #D97706;
  --solar-gold-glow: rgba(245, 158, 11, 0.25);
  
  --color-green: #10B981;
  --color-green-dark: rgba(16, 185, 129, 0.12);
  --color-red: #EF4444;
  --color-red-dark: rgba(239, 68, 68, 0.12);
  
  --text-primary: #FFFFFF;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #0A0D12;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(245, 158, 11, 0.45);
  --border-green: rgba(16, 185, 129, 0.4);
  --border-red: rgba(239, 68, 68, 0.35);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Layout */
  --container-max-width: 1220px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.55;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 100% 30%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

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

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography Helpers */
.text-solar {
  color: var(--solar-yellow);
}

.highlight-gold {
  color: var(--solar-yellow);
  font-weight: 700;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

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

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

.logo-icon-img {
  width: 34px;
  height: 34px;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-main-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  line-height: 1.2;
}

.logo-sub-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--solar-yellow);
  line-height: 1.2;
}

.header-tagline {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #A0ABBA;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 56px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: start;
}

/* Left Hero Column */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-title .highlight-line {
  display: block;
  color: var(--solar-yellow);
}

.hero-subheadline {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hero-pitch {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-pitch strong {
  color: var(--solar-yellow);
  font-weight: 600;
}

/* Checklist */
.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #E2E8F0;
}

.check-icon-solar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-full);
  color: var(--solar-yellow);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  max-width: 500px;
}

.avatars-img {
  width: 104px;
  height: 30px;
  flex-shrink: 0;
}

.social-proof-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Hero Trust Footer (BR Performance + Renan Baia) */
.hero-trust-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748B;
  text-transform: uppercase;
}

.trust-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.trust-signature-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   RIGHT COLUMN: QUIZ / LEAD DIAGNOSTIC CARD
   ========================================================================== */
.quiz-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.06);
  position: relative;
  transition: var(--transition-normal);
}

.quiz-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.quiz-top-badge {
  text-align: center;
  margin-bottom: 20px;
}

.quiz-badge-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Quiz Progress */
.quiz-progress-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.quiz-step-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
}

.quiz-progress-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.quiz-progress-bar {
  height: 100%;
  width: 14.28%; /* 1/7 */
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* Quiz Question */
.quiz-question-box {
  margin-bottom: 24px;
}

.quiz-question-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 8px;
}

.quiz-question-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Quiz Options */
.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.quiz-option-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  color: #E2E8F0;
  text-align: left;
  transition: var(--transition-fast);
  width: 100%;
  cursor: pointer;
  position: relative;
}

.quiz-option-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.quiz-option-btn.selected {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--solar-yellow);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.option-radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.quiz-option-btn.selected .option-radio-indicator {
  border-color: var(--solar-yellow);
  background: var(--solar-yellow);
}

.quiz-option-btn.selected .option-radio-indicator::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: #0A0D12;
}

.option-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.option-label-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

/* Quiz CTA Button */
.btn-quiz-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(180deg, #FBBF24 0%, #F59E0B 100%);
  color: #0A0D12;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}

.btn-quiz-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.5);
  background: linear-gradient(180deg, #FCD34D 0%, #FBBF24 100%);
}

.btn-quiz-cta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.quiz-sub-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Quiz Navigation Buttons (Back & Next) */
.quiz-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-quiz-back {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-quiz-back:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* Quiz Final Lead Capture Form */
.quiz-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.quiz-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quiz-input-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.quiz-input-field {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition-fast);
}

.quiz-input-field:focus {
  outline: none;
  border-color: var(--solar-yellow);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

.quiz-input-field::placeholder {
  color: #64748B;
}

/* ==========================================================================
   PARTNERS & TECH BAR
   ========================================================================== */
.partners-section {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(15, 19, 26, 0.6);
}

.partners-header-text {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #94A3B8;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.partners-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.partner-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.partner-logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   SECTION 2: PROBLEM VS SOLUTION ("Mais leads não é o problema")
   ========================================================================== */
.comparison-section {
  padding: 90px 0;
  position: relative;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.section-title .highlight-line {
  color: var(--solar-yellow);
  display: block;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

/* Comparison Cards */
.comparison-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition-normal);
}

/* Red Problem Card */
.comparison-card.card-problem {
  border: 1px solid var(--border-red);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04) 0%, rgba(20, 24, 34, 0.95) 100%);
}

.comparison-card.card-problem:hover {
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
}

/* Green Solution Card */
.comparison-card.card-solution {
  border: 1px solid var(--border-green);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, rgba(20, 24, 34, 0.95) 100%);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.08);
}

.comparison-card.card-solution:hover {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 15px 45px rgba(16, 185, 129, 0.2);
}

.comp-badge-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-badge-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-problem .comp-badge-tag {
  color: #F87171;
}

.card-solution .comp-badge-tag {
  color: #34D399;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: #E2E8F0;
  line-height: 1.45;
}

.comp-icon-box {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.card-problem .comp-icon-box {
  background: rgba(239, 68, 68, 0.18);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.card-solution .comp-icon-box {
  background: rgba(16, 185, 129, 0.18);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* Center Arrow */
.comparison-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: #0A0D12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transition: var(--transition-fast);
}

.arrow-circle:hover {
  transform: scale(1.1);
  background: var(--solar-yellow);
}

/* ==========================================================================
   SECTION: AGÊNCIA DE TRÁFEGO PAGO VS MÁQUINA DE RECEITA SOLAR
   ========================================================================== */
.matrix-section {
  padding: 80px 0 100px;
  position: relative;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.95) 0%, rgba(15, 19, 26, 0.8) 100%);
}

.text-danger {
  color: #EF4444;
}

.matrix-table-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.05);
}

.matrix-header-row {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.matrix-header-col-left {
  text-align: left;
}

.matrix-header-col-center {
  text-align: center;
}

.matrix-header-col-right {
  text-align: left;
}

.matrix-badge-agency {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #EF4444;
  text-transform: uppercase;
}

.matrix-badge-machine {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--solar-yellow);
  text-transform: uppercase;
}

.matrix-rows-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.matrix-row:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(245, 158, 11, 0.2);
}

.matrix-col-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #94A3B8;
  line-height: 1.4;
}

.matrix-col-left .m-icon-cross {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.matrix-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.m-pillar-icon {
  font-size: 16px;
}

.m-pillar-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--solar-yellow);
  text-transform: uppercase;
}

.matrix-col-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}

.matrix-col-right .m-icon-check {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.18);
  color: var(--solar-yellow);
  border: 1px solid rgba(245, 158, 11, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 3: FEATURES GRID ("Tudo que sua integradora precisa")
   ========================================================================== */
.features-section {
  padding: 90px 0;
  background: rgba(15, 19, 26, 0.4);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-normal);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.1);
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.1);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--solar-yellow);
  font-size: 24px;
  transition: var(--transition-fast);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--solar-yellow);
  color: #0A0D12;
  transform: scale(1.08);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.35;
}

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

/* ==========================================================================
   INTERACTIVE SYSTEM SHOWCASE: FUNNEL BLUEPRINT & LEAD JOURNEY
   ========================================================================== */
.showcase-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.05) 0%, rgba(10, 13, 18, 0.98) 70%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.showcase-tab-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.showcase-tab-btn.active {
  background: var(--solar-yellow);
  color: #0A0D12;
  border-color: var(--solar-yellow);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

.showcase-panel {
  display: none;
}

.showcase-panel.active {
  display: block;
}

/* Funnel Blueprint Interactive Canvas */
.blueprint-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.blueprint-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 16px;
}

.blueprint-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blueprint-pill {
  background: rgba(245, 158, 11, 0.15);
  color: var(--solar-yellow);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.blueprint-subnav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blueprint-nav-item {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.blueprint-nav-item:hover, .blueprint-nav-item.active {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
}

/* Funnel Node Grid Layout */
.blueprint-flow-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.flow-column {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition-fast);
}

.flow-column:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.flow-col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.col-number-badge {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  color: var(--solar-yellow);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.col-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
}

.col-objective {
  font-size: 10px;
  color: var(--text-muted);
}

/* Blueprint Node Cards */
.blueprint-node-card {
  background: #181E29;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  cursor: pointer;
}

.blueprint-node-card:hover {
  transform: translateY(-3px);
  border-color: var(--solar-yellow);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.node-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.node-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.icon-youtube { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.icon-google { background: rgba(66, 133, 244, 0.15); color: #4285F4; }
.icon-meta { background: rgba(0, 129, 251, 0.15); color: #0081FB; }
.icon-tiktok { background: rgba(254, 44, 85, 0.15); color: #FE2C55; }
.icon-lp { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.icon-email { background: rgba(168, 85, 247, 0.15); color: #A855F7; }
.icon-agenda { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.icon-tracking { background: rgba(16, 185, 129, 0.15); color: #10B981; }

.node-label {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.node-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
}

.node-metrics-bar {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: #94A3B8;
}

.metric-stat-box {
  display: flex;
  flex-direction: column;
}

.metric-val {
  color: var(--solar-yellow);
  font-weight: 700;
}

/* ==========================================================================
   LEAD JOURNEY TIMELINE COMPONENT
   ========================================================================== */
.journey-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.journey-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
}

.journey-timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.journey-timeline-list::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 24px;
  left: 95px;
  width: 2px;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.6) 0%, rgba(59, 130, 246, 0.6) 20%, rgba(16, 185, 129, 0.8) 100%);
  z-index: 1;
}

.journey-item {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 16px;
}

.journey-timestamp {
  width: 78px;
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  text-align: right;
  flex-shrink: 0;
}

.journey-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: #1E232D;
  border: 2px solid #94A3B8;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  margin-left: 10px;
}

.dot-red { border-color: #EF4444; background: #EF4444; }
.dot-blue { border-color: #3B82F6; background: #3B82F6; }
.dot-green { border-color: #22C55E; background: #22C55E; }
.dot-orange { border-color: #F59E0B; background: #F59E0B; }
.dot-purple { border-color: #A855F7; background: #A855F7; }
.dot-win { border-color: #10B981; background: #10B981; box-shadow: 0 0 15px #10B981; }

.journey-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.journey-content:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.journey-info-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.journey-channel-icon {
  font-size: 15px;
  flex-shrink: 0;
}

.journey-event-title {
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
}

.journey-event-sub {
  font-size: 11px;
  color: #64748B;
}

.journey-tag {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-topo { background: rgba(168, 85, 247, 0.15); color: #C084FC; }
.tag-meio { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.tag-perdido { background: rgba(239, 68, 68, 0.15); color: #F87171; }
.tag-ganho {
  background: #10B981;
  color: #0A0D12;
  font-weight: 900;
  padding: 5px 12px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.journey-item-win .journey-content {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.journey-item-win .journey-event-title {
  color: #34D399;
  font-weight: 700;
  font-size: 14px;
}

/* ==========================================================================
   SECTION 4: IMPACT METRICS ("Resultados que nossos clientes estão alcançando")
   ========================================================================== */
.metrics-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #0A0D12 0%, #10141D 100%);
}

.metrics-header-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 48px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  border-right: 1px solid var(--border-subtle);
}

.metric-item:last-child {
  border-right: none;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--solar-yellow);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.metric-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 170px;
}

/* ==========================================================================
   SECTION 5: 5-STEP PROCESS ("Como funciona nossa Máquina de Receita")
   ========================================================================== */
.process-section {
  padding: 100px 0;
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

/* Horizontal dotted connector line behind steps */
.steps-container::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.18);
  z-index: 1;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 8px;
}

.step-number-badge {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--solar-yellow);
  color: #0A0D12;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
  transition: var(--transition-fast);
}

.step-card:hover .step-number-badge {
  transform: scale(1.12);
  background: #FFFFFF;
}

.step-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 6: TESTIMONIALS ("Integradores solares que já estão colhendo...")
   ========================================================================== */
.testimonials-section {
  padding: 80px 0 100px;
}

.testimonial-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.testimonial-image-col {
  position: relative;
  min-height: 280px;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-badge-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--solar-yellow);
  color: #0A0D12;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.badge-stat-big {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.badge-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 2px;
}

.testimonial-content-col {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  position: relative;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--solar-yellow);
  margin-bottom: 4px;
}

.testimonial-author-role {
  font-size: 13px;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--solar-yellow);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   SECTION 7: BOTTOM CTA BANNER (SOLAR GOLD HIGHLIGHT)
   ========================================================================== */
.bottom-cta-section {
  background: linear-gradient(135deg, #FFB800 0%, #F59E0B 100%);
  color: #0A0D12;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.cta-banner-content {
  padding-bottom: 60px;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #0A0D12;
  margin-bottom: 16px;
}

.cta-banner-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #1E232D;
  line-height: 1.5;
  margin-bottom: 28px;
}

.btn-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #0A0D12;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}

.btn-cta-dark:hover {
  background: #19202D;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.cta-banner-note {
  font-size: 12px;
  font-weight: 600;
  color: rgba(10, 13, 18, 0.7);
  margin-top: 12px;
}

.cta-devices-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}

.cta-devices-img {
  width: 100%;
  max-width: 560px;
  transform: translateY(20px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #06080B;
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: #64748B;
}

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

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--solar-yellow);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blueprint-flow-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .metric-item:nth-child(3) {
    border-right: none;
  }
  
  .steps-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .bottom-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-banner-content {
    padding-bottom: 20px;
  }
  
  .cta-devices-wrapper {
    justify-content: center;
  }
  
  .cta-devices-img {
    transform: translateY(0);
    max-width: 440px;
  }
}

@media (max-width: 768px) {
  .header-tagline {
    display: none;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .matrix-table-card {
    padding: 20px 14px;
  }
  
  .matrix-header-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .matrix-header-col-center {
    display: none;
  }
  
  .matrix-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 12px;
  }
  
  .matrix-col-center {
    order: -1;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 6px;
  }
  
  .arrow-circle {
    transform: rotate(90deg);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .blueprint-flow-wrapper {
    grid-template-columns: 1fr;
  }
  
  .journey-card {
    padding: 24px 16px;
  }
  
  .journey-timeline-list::before {
    left: 80px;
  }
  
  .journey-timestamp {
    width: 65px;
    font-size: 10px;
  }
  
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .metric-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .testimonial-card-main {
    grid-template-columns: 1fr;
  }
  
  .testimonial-image-col {
    height: 220px;
  }
  
  .cta-banner-title {
    font-size: 28px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
