/* Brand Design Tokens (Nobre & Teixeira Theme) */
:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #111827;
  --bg-tertiary: #1f2937;
  --text-primary: #f8f9fa;
  --text-secondary: #a0a0b0;
  --text-muted: #6c757d;
  --gold-primary: #facc15;
  --gold-light: #fef08a;
  --gold-dark: #ca8a04;
  --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  --border-color: rgba(250, 204, 21, 0.15);
  --border-color-hover: rgba(250, 204, 21, 0.4);
  --font-serif: 'Outfit', -apple-system, sans-serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
  
  /* Alert colors */
  --red-primary: #ff3366;
  --red-border: rgba(255, 51, 102, 0.2);
  --green-primary: #00f5a0;
  --green-border: rgba(0, 245, 160, 0.25);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bold-text {
  font-weight: 700;
  color: var(--text-primary);
}

/* Layout Utilities */
.container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 100px 0;
}

.small-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}

.grid-card-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mt-50 { margin-top: 50px; }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0f19;
  border: none;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-30deg);
  transition: 0.75s;
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.45);
}

.btn-glow {
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.25);
  }
  100% {
    box-shadow: 0 4px 25px rgba(250, 204, 21, 0.6);
  }
}

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 500;
  margin-top: 2px;
}

.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  animation: blink 1.5s infinite alternate;
}

@keyframes blink {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  text-align: center;
  background: radial-gradient(circle at center, #1b1b24 0%, var(--bg-primary) 70%);
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(10, 10, 12, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 10, 12, 0.4) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 850px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

/* Section Decorators */
.accent-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 0 auto 30px;
}

.intro-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.intro-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-paragraph {
  font-size: 1.05rem;
  font-family: var(--font-sans);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
}

.highlight-intro {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 500;
  border-left: 3px solid var(--gold-primary);
  padding-left: 20px;
  text-align: left;
  max-width: 700px;
}

/* Brand Sections */
.brand-section {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.bg-alt {
  background-color: var(--bg-secondary);
}

.section-badge {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
}

/* Glassmorphic Cards Styling */
.glass-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-5px);
}

.card-glow {
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold-gradient);
}

.card-glow.bg-red {
  background: var(--red-primary);
}

/* Info Cards inside Grid */
.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-card:hover {
  border-color: var(--border-color-hover);
}

.info-card.border-alert {
  border-color: var(--red-border);
}

.info-card.border-alert:hover {
  border-color: var(--red-primary);
}

.info-card.border-gold {
  border-color: rgba(250, 204, 21, 0.35);
}

.info-card.border-gold:hover {
  border-color: var(--gold-primary);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(250, 204, 21, 0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-icon i {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
}

.card-icon.r {
  background: rgba(255, 51, 102, 0.05);
  border-color: var(--red-border);
}

.card-icon.r i {
  color: var(--red-primary);
}

.card-icon.g {
  background: rgba(0, 245, 160, 0.05);
  border-color: var(--green-border);
}

.card-icon.g i {
  color: var(--green-primary);
}

.info-card h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.info-card p strong {
  color: var(--text-primary);
}

/* Highlighted numbers in cards */
.highlight-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 20px;
  line-height: 1;
}

.highlight-number span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-left: 6px;
}

.highlight-number.r {
  color: var(--red-primary);
}

.highlight-number.g {
  color: var(--green-primary);
}

/* Consolidated Proposal Section */
.consolidated-section {
  border-bottom: 1px solid var(--border-color);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 15px auto 0;
}

/* Custom Styled Table */
.table-container {
  margin-top: 60px;
  padding: 0 !important;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th, td {
  padding: 22px 25px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

th {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  background: rgba(250, 204, 21, 0.02);
}

td {
  color: var(--text-secondary);
}

.total-row {
  background: rgba(250, 204, 21, 0.04);
}

.total-row td {
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: none;
}

.highlight-leads {
  color: var(--text-primary);
  background: rgba(250, 204, 21, 0.1);
  border-radius: 4px;
}

/* Desktop and Mobile Responsiveness Elements */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mobile-cards-comparison {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-comp-card {
  padding: 35px 30px !important;
}

.mobile-comp-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: var(--text-secondary);
}

.comp-row:last-child {
  margin-bottom: 0;
}

.comp-row span {
  font-weight: 400;
}

.comp-row strong {
  color: var(--text-primary);
  font-weight: 600;
}

.total-comp-card {
  border-color: rgba(250, 204, 21, 0.35);
  background: rgba(250, 204, 21, 0.02);
}

.highlight-leads-pill {
  color: #0b0f19 !important;
  background: var(--gold-gradient);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Reinvestment Widget */
.reinvestment-card {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  padding: 35px !important;
}

.reinvestment-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold-gradient);
}

.reinvest-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reinvest-icon i {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.reinvest-body h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reinvest-body p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.reinvest-body p strong {
  color: var(--text-primary);
}

/* Timeline 30/60/90 */
.timeline-container {
  margin-top: 90px;
}

.timeline-title {
  margin-bottom: 50px;
  font-size: 1.75rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.time-badge {
  background: var(--gold-gradient);
  color: #0b0f19;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 3px;
  width: fit-content;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-card h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.timeline-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Impact Stacking Section */
.impact-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stack-block {
  padding: 45px 40px;
  border-radius: 6px;
  position: relative;
}

.stack-hell {
  background: linear-gradient(145deg, rgba(255, 51, 102, 0.04) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--red-border);
}

.stack-heaven {
  background: linear-gradient(145deg, rgba(250, 204, 21, 0.04) 0%, var(--bg-tertiary) 100%);
  border: 1px solid rgba(250, 204, 21, 0.2);
}

.stack-price {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

.stack-final {
  padding: 50px 40px !important;
  background: linear-gradient(145deg, rgba(0, 245, 160, 0.03) 0%, var(--bg-tertiary) 50%, rgba(250, 204, 21, 0.03) 100%) !important;
}

.stack-label {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.stack-label-small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.stack-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stack-item {
  flex: 1;
  text-align: center;
}

.stack-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stack-value.red {
  color: var(--red-primary);
}

.stack-value.gold {
  color: var(--gold-primary);
}

.stack-value.white {
  color: var(--text-primary);
}

.stack-value.big {
  font-size: 2.8rem;
}

.stack-value.massive {
  font-size: 2.5rem;
}

.stack-unit {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stack-divider {
  width: 1px;
  height: 60px;
  background: var(--red-border);
  flex-shrink: 0;
}

.stack-divider.gold-div {
  background: rgba(250, 204, 21, 0.2);
}

.stack-punch {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--red-border);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.stack-punch.gold-punch {
  border-top-color: rgba(250, 204, 21, 0.2);
  color: var(--text-primary);
  font-weight: 500;
}

/* Stack Price Columns */
.stack-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.stack-contrast {
  margin-top: 30px;
  padding: 18px 25px;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: 4px;
  text-align: center;
}

.stack-contrast span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.stack-contrast strong {
  color: var(--text-primary);
}

/* Final 12-Month Grid */
.final-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.final-item {
  text-align: center;
}

.final-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.final-number.green {
  color: var(--green-primary);
}

.final-number.white {
  color: var(--text-primary);
}

.final-number.gold-grad {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
}

.final-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA Wrap */
.cta-wrap {
  margin-top: 100px;
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
}

.cta-wrap h3 {
  font-size: 2.25rem;
  margin-bottom: 15px;
}

.cta-wrap p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: var(--text-secondary);
}

.btn-large {
  padding: 18px 48px;
  font-size: 0.95rem;
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  background-color: #050507;
  text-align: center;
}

.footer-container p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Responsive Breakpoints */
@media(max-width: 1199px) {
  .grid-card-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
}

@media(max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: flex !important;
  }

  .grid-card-layout {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.35rem;
  }
  
  .highlight-intro {
    font-size: 1.05rem;
    padding-left: 15px;
  }

  .reinvestment-card {
    flex-direction: column;
    gap: 20px;
    padding: 30px 25px !important;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-wrap h3 {
    font-size: 1.65rem;
  }

  .container {
    padding: 70px 0;
  }

  /* Impact Stack Mobile */
  .stack-block {
    padding: 30px 22px;
  }

  .stack-row {
    flex-direction: column;
    gap: 25px;
  }

  .stack-divider {
    width: 60px;
    height: 1px;
  }

  .stack-value {
    font-size: 1.8rem;
  }

  .stack-value.big {
    font-size: 2.4rem;
  }

  .stack-value.massive {
    font-size: 2.2rem;
  }

  .stack-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .final-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .final-number {
    font-size: 2rem;
  }

  .final-number.gold-grad {
    font-size: 2.5rem;
  }
}
