/* ==========================================================================
   OPERAÇÃO LUCRO OCULTO® - DESIGN SYSTEM & LUXURY STYLESHEET
   Author: Erisson Atalho
   Colors: Obsidian Black (#0E0E0E), Warm Gold (#b88a2b)
   Fonts: League Spartan (Headlines), Lato (Body), Anonymous Pro (Audit/Tags)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-obsidian: #0E0E0E;
  --bg-surface: #141414;
  --bg-surface-elevated: #1A1A1A;
  --bg-card: #1E1E1E;
  
  --gold-warm: #b88a2b;
  --gold-light: #d4a338;
  --gold-dim: #7a5a19;
  --gold-glow: rgba(184, 138, 43, 0.18);
  --gold-glow-intense: rgba(184, 138, 43, 0.35);
  --gold-border: rgba(184, 138, 43, 0.22);
  --gold-border-strong: rgba(184, 138, 43, 0.5);

  --text-bright: #F8F8F5;
  --text-main: #E2E2DC;
  --text-muted: #9E9E98;
  --text-dim: #6B6B66;

  /* Typography System */
  --font-headline: 'League Spartan', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-audit: 'Anonymous Pro', monospace;

  /* Layout & Spacing */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  overflow-x: hidden;
  background-color: var(--bg-obsidian);
  background-image: 
    radial-gradient(circle at 50% 0%, var(--gold-glow) 0%, transparent 50%),
    radial-gradient(circle at 100% 40%, rgba(184, 138, 43, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 4px;
  border: 2px solid var(--bg-obsidian);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-warm);
}

/* Selection */
::selection {
  background: var(--gold-warm);
  color: var(--bg-obsidian);
}

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

p {
  color: var(--text-main);
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

/* Audit Typography (No Badges Directive) */
.audit-tag {
  font-family: var(--font-audit);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-warm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 700;
}

.audit-tag::before {
  content: '//';
  color: var(--gold-dim);
  font-weight: 400;
}

.audit-code {
  font-family: var(--font-audit);
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

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

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

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

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar.scrolled {
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-family: var(--font-headline);
  text-decoration: none;
}

.logo-accent {
  color: var(--gold-warm);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-audit);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: var(--transition-fast);
  position: relative;
}

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

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-bright);
  cursor: pointer;
  padding: 8px;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-warm) 50%, var(--gold-dim) 100%);
  color: #050505;
  box-shadow: 0 4px 20px rgba(184, 138, 43, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 138, 43, 0.45);
  background: linear-gradient(135deg, #e6b84c 0%, #c99933 50%, #9e7522 100%);
}

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

.btn-nav {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   SEÇÃO 1: HERO / DOBRA PRINCIPAL
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 3.5rem;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-bright);
  font-weight: 800;
}

.hero-headline span {
  color: var(--gold-warm);
  background: linear-gradient(135deg, #F5F5F0 0%, var(--gold-light) 60%, var(--gold-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-subheadline strong {
  color: var(--text-bright);
  font-weight: 700;
}

.exclusivity-quote {
  background: rgba(20, 20, 20, 0.6);
  border-left: 3px solid var(--gold-warm);
  border-top: 1px solid var(--gold-border);
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  margin-bottom: 40px;
  position: relative;
}

.exclusivity-quote p {
  color: var(--text-main);
  font-size: 1.03rem;
  font-style: italic;
  line-height: 1.7;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-security-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-audit);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-security-note svg {
  width: 16px;
  height: 16px;
  color: var(--gold-warm);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  background: transparent;
}

.hero-image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05) brightness(0.95);
  transition: var(--transition-smooth);
}

.hero-image-card:hover img {
  filter: contrast(1.08) brightness(1.02);
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.95) 0%, rgba(14, 14, 14, 0.5) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-badge-info {
  border-left: 2px solid var(--gold-warm);
  padding-left: 12px;
}

.hero-badge-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
}

.hero-badge-sub {
  font-family: var(--font-audit);
  font-size: 0.8rem;
  color: var(--gold-warm);
}

/* Decorative ambient grid lines */
.tech-grid-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-image: linear-gradient(var(--gold-border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold-border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

/* ==========================================================================
   SEÇÃO 2: O SEU PROBLEMA REAL
   ========================================================================== */
.problem-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  position: relative;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-bright);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.problem-content {
  max-width: 900px;
  margin: 0 auto;
}

.problem-intro {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-bright);
  margin-bottom: 32px;
  text-align: center;
}

.problem-intro strong {
  color: var(--gold-light);
  font-weight: 700;
}

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

.leak-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition-smooth);
  position: relative;
}

.leak-card:hover {
  border-color: var(--gold-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
}

.leak-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(184, 138, 43, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  margin-bottom: 20px;
}

.leak-card-title {
  font-size: 1.2rem;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.leak-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.rule-box {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 25, 15, 0.6) 100%);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.rule-box-tag {
  font-family: var(--font-audit);
  font-size: 0.85rem;
  color: var(--gold-warm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.rule-box-text {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--text-bright);
  line-height: 1.4;
  font-weight: 600;
}

/* Interactive Profit Leak Diagnostic Widget */
.diagnostic-widget {
  margin-top: 64px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 20px;
  margin-bottom: 32px;
}

.widget-title-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.widget-title {
  font-size: 1.4rem;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: 12px;
}

.widget-title svg {
  color: var(--gold-warm);
  width: 24px;
  height: 24px;
}

.micro-instruction {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.01em;
  margin-left: 36px;
}

.calculator-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.control-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.control-value {
  font-family: var(--font-audit);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--gold-warm);
  background: #2a2a2a;
  height: 6px;
  border-radius: 3px;
  outline: none;
}

.diagnostic-result-box {
  background: rgba(14, 14, 14, 0.8);
  border: 1px dashed var(--gold-border-strong);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-label {
  font-size: 1rem;
  color: var(--text-muted);
}

.result-amount {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  color: var(--gold-warm);
  font-weight: 800;
}

/* ==========================================================================
   SEÇÃO 3: A OFERTA — O RAIO-X EMPRESARIAL
   ========================================================================== */
.offer-section {
  position: relative;
}

.offer-card-main {
  background: linear-gradient(180deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-lg);
  padding: 64px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.offer-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-warm), transparent);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.offer-text h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.offer-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 24px;
}

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

.offer-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-bright);
}

.offer-highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-warm);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   SEÇÃO DE GARANTIA ANTI-BLÁ-BLÁ-BLÁ (COMPATIBILIDADE TOTAL MULTI-BROWSER)
   ========================================================================== */
.guarantee-section {
  position: relative;
  width: 100%;
  background-color: #141414;
  background: var(--bg-surface, #141414);
  border-top: 1px solid rgba(184, 138, 43, 0.25);
  border-bottom: 1px solid rgba(184, 138, 43, 0.25);
  padding: 80px 0;
  box-sizing: border-box;
}

.guarantee-card {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #181818;
  background: linear-gradient(135deg, #1C1C1C 0%, #121212 100%);
  border: 1px solid rgba(184, 138, 43, 0.4);
  border-left: 4px solid #b88a2b;
  border-radius: 12px;
  padding: 48px 56px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(184, 138, 43, 0.15);
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.guarantee-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.guarantee-icon-wrap {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 6px;
  background-color: rgba(184, 138, 43, 0.12);
  border: 1px solid rgba(184, 138, 43, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b88a2b;
  flex-shrink: 0;
}

.guarantee-title {
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F8F8F5;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.guarantee-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guarantee-highlight {
  font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.4rem;
  color: #d4a338;
  font-weight: 700;
  margin: 0;
}

.guarantee-body p {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  color: #E2E2DC;
  line-height: 1.7;
  margin: 0;
}

.guarantee-action {
  font-weight: 700;
  color: #F8F8F5 !important;
}

.guarantee-quote {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.15rem;
  color: #F8F8F5;
  font-style: italic;
  border-left: 3px solid #b88a2b;
  padding-left: 20px;
  margin-top: 12px;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
}

/* ==========================================================================
   SEÇÃO 4: O QUE VOCÊ VAI DESCOBRIR
   ========================================================================== */
.discover-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.deliverable-banner {
  margin-top: 24px;
  background: rgba(184, 138, 43, 0.08);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.deliverable-banner-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-warm);
}

.deliverable-banner-sub {
  font-family: var(--font-audit);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.deliverable-callout {
  margin-top: 48px;
  background: var(--bg-surface-elevated);
  border-left: 3px solid var(--gold-warm);
  border-top: 1px solid var(--gold-border);
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.deliverable-callout p {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  color: var(--text-bright);
  font-weight: 600;
  line-height: 1.5;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.discover-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.discover-card:hover {
  border-color: var(--gold-border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--gold-glow);
}

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

.discover-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(184, 138, 43, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
}

.discover-num {
  font-family: var(--font-audit);
  font-size: 1.2rem;
  color: var(--gold-dim);
  font-weight: 700;
}

.discover-card h3 {
  font-size: 1.4rem;
  color: var(--text-bright);
  line-height: 1.3;
}

.discover-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ==========================================================================
   SEÇÃO 5: COMO FUNCIONA A NOSSA JORNADA
   ========================================================================== */
.journey-section {
  position: relative;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-step {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  transition: var(--transition-smooth);
}

.timeline-step:hover {
  border-color: var(--gold-warm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
  transform: translateX(6px);
}

.step-number {
  font-family: var(--font-audit);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-warm);
  text-align: center;
  border-right: 1px solid var(--gold-border);
  padding-right: 24px;
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 1rem;
  color: var(--text-muted);
}

.step-content strong {
  color: var(--text-bright);
}

/* ==========================================================================
   SEÇÃO 6: PARA QUEM É / PARA QUEM NÃO É
   ========================================================================== */
.fit-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

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

.fit-column {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.fit-column.for-you {
  border-top: 3px solid var(--gold-warm);
}

.fit-column.not-for-you {
  border-top: 3px solid #8b2626;
}

.fit-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fit-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-you .fit-title-icon {
  background: rgba(184, 138, 43, 0.2);
  color: var(--gold-warm);
}

.not-for-you .fit-title-icon {
  background: rgba(139, 38, 38, 0.2);
  color: #e55353;
}

.fit-column h3 {
  font-size: 1.5rem;
  color: var(--text-bright);
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.fit-item-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 3px;
}

.for-you .fit-item-icon {
  color: var(--gold-warm);
}

.not-for-you .fit-item-icon {
  color: #e55353;
}

.fit-item p {
  font-size: 1.03rem;
  color: var(--text-main);
  line-height: 1.6;
}

.fit-item p strong {
  color: var(--text-bright);
}

/* ==========================================================================
   SEÇÃO 7: QUEM VAI CONDUZIR A SUA INVESTIGAÇÃO
   ========================================================================== */
.bio-section {
  position: relative;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
}

.bio-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  background: transparent;
}

.bio-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bio-experience-stat {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--gold-warm);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.stat-number {
  font-family: var(--font-audit);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-warm);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bio-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.bio-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 20px;
}

.bio-content strong {
  color: var(--gold-light);
}

.bio-highlight-quote {
  border-left: 3px solid var(--gold-warm);
  padding-left: 20px;
  margin-top: 32px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-bright);
}

/* ==========================================================================
   SEÇÃO 8: PROVA VISUAL E BASTIDORES (MOSAICO DE FOTOS)
   ========================================================================== */
.gallery-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
  height: 280px;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 580px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.95) 0%, transparent 100%);
  color: var(--text-bright);
  font-size: 0.9rem;
  font-family: var(--font-audit);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ==========================================================================
   SEÇÃO 9: A METODOLOGIA POR TRÁS (OPERAÇÃO LUCRO OCULTO®)
   ========================================================================== */
.methodology-section {
  position: relative;
}

.methodology-phases {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.phase-card {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.phase-card:hover {
  border-color: var(--gold-warm);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px var(--gold-glow);
}

.phase-header {
  margin-bottom: 20px;
}

.phase-code {
  font-family: var(--font-audit);
  font-size: 0.85rem;
  color: var(--gold-warm);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.phase-card h3 {
  font-size: 1.25rem;
  color: var(--text-bright);
  line-height: 1.3;
}

.phase-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
  line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO 10: FECHAMENTO / CTA FINAL
   ========================================================================== */
.cta-final-section {
  background: linear-gradient(180deg, var(--bg-obsidian) 0%, #17130b 100%);
  border-top: 1px solid var(--gold-border-strong);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow-intense) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-box p {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 44px;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER / RODAPÉ
   ========================================================================== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-quote {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--text-bright);
  font-style: italic;
  letter-spacing: 0.02em;
}

.footer-quote span {
  color: var(--gold-warm);
}

.footer-copyright {
  font-family: var(--font-audit);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Lightbox Modal for Gallery */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-warm);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .offer-grid, .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-headline {
    font-size: 2.75rem;
  }

  .methodology-phases {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(14, 14, 14, 0.98);
    padding: 32px;
    border-bottom: 1px solid var(--gold-border);
  }

  .hero-headline {
    font-size: 2.2rem;
  }

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

  .leak-cards-grid, .discover-grid, .fit-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-number {
    text-align: left;
    border-right: none;
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 12px;
    padding-right: 0;
  }

  .calculator-controls {
    grid-template-columns: 1fr;
  }

  .diagnostic-result-box {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .methodology-phases {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    font-size: 2.2rem;
  }

  .offer-card-main {
    padding: 32px 24px;
  }

  .bio-experience-stat {
    right: 0;
    bottom: -16px;
  }
}
