/* =====================================================
   PLANILHA FINANCEIRA — LANDING PAGE
   Paleta: Navy Profundo + Dourado + Verde Esmeralda
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  /* Backgrounds */
  --bg-dark:        #050A18;
  --bg-mid:         #0A1628;
  --bg-card:        rgba(10, 22, 48, 0.6);
  --bg-card-hover:  rgba(14, 30, 62, 0.8);
  --bg-lighter:     rgba(255, 255, 255, 0.06);

  /* Text */
  --text-main:      #F0F4FF;
  --text-muted:     #8899BB;
  --text-subtle:    #5566888;

  /* Accent — Dourado */
  --gold:           #F5B942;
  --gold-light:     #FFD680;
  --gold-dark:      #C8911A;
  --gold-glow:      rgba(245, 185, 66, 0.35);
  --gold-glow-soft: rgba(245, 185, 66, 0.12);

  /* Accent — Verde Esmeralda */
  --green:          #00C896;
  --green-dark:     #009B73;
  --green-glow:     rgba(0, 200, 150, 0.35);
  --green-glow-soft:rgba(0, 200, 150, 0.10);

  /* Vermelho / Dor */
  --danger:         #FF5A5A;
  --danger-glow:    rgba(255, 90, 90, 0.20);

  /* Azul destaque */
  --blue-accent:    #3B82F6;
  --blue-glow:      rgba(59, 130, 246, 0.25);

  /* Borders */
  --border-subtle:  rgba(255, 255, 255, 0.06);
  --border-gold:    rgba(245, 185, 66, 0.30);
  --border-green:   rgba(0, 200, 150, 0.25);

  /* Misc */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===================== LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  background: var(--gold-glow-soft);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ===================== BACKGROUND ===================== */
.bg-decoration {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
}

.blob-1 {
  background: radial-gradient(circle, var(--green), transparent);
  width: 700px;
  height: 700px;
  top: -15%;
  right: -12%;
  animation: float 22s infinite ease-in-out;
}

.blob-2 {
  background: radial-gradient(circle, var(--gold), transparent);
  width: 600px;
  height: 600px;
  bottom: -20%;
  left: -12%;
  animation: float 28s infinite ease-in-out reverse;
}

.blob-3 {
  background: radial-gradient(circle, var(--blue-accent), transparent);
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 18s infinite ease-in-out 5s;
  opacity: 0.10;
}

@keyframes float {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, -60px) scale(1.08); }
  66%  { transform: translate(-30px, 30px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Subtle grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
}

/* ===================== GLASSMORPHISM ===================== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px var(--border-gold);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 10, 24, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px var(--green-glow);
}

.navbar-cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px var(--gold-glow);
  letter-spacing: -0.01em;
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* ===================== BUTTONS ===================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #0A0A0A;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 22px 52px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  border: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-cta:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 48px var(--gold-glow); }
.btn-cta:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.btn-secondary:hover { border-color: var(--border-gold); color: var(--gold); }

.ml-2 { margin-left: 8px; }

/* ===================== PULSE ANIMATION ===================== */
@keyframes pulseGold {
  0%   { box-shadow: 0 8px 32px var(--gold-glow), 0 0 0 0 var(--gold-glow); }
  70%  { box-shadow: 0 8px 32px var(--gold-glow), 0 0 0 24px transparent; }
  100% { box-shadow: 0 8px 32px var(--gold-glow), 0 0 0 0 transparent; }
}
.pulse { animation: pulseGold 2.8s infinite; }

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal        { opacity: 0; transform: translateY(40px);   transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left   { opacity: 0; transform: translateX(-50px);  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right  { opacity: 0; transform: translateX(50px);   transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale  { opacity: 0; transform: scale(0.88);         transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }

/* ===================== SECTIONS ===================== */
.fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.section h2 {
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 64px;
}

/* ===================== HERO ===================== */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-glow-soft);
  border: 1px solid var(--border-green);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 4.75rem;
  max-width: 900px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 45%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero p {
  font-size: 1.35rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 52px;
  font-weight: 400;
  line-height: 1.7;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust i { color: var(--green); font-size: 0.75rem; }

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 72px;
  width: 100%;
  max-width: 720px;
}

.stat-item {
  background: var(--bg-card);
  padding: 24px 32px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounceAnim 2s infinite;
}

.scroll-indicator a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.scroll-indicator a:hover { color: var(--gold); }

@keyframes bounceAnim {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

/* ===================== PAIN SECTION ===================== */
.pain { background: linear-gradient(180deg, transparent, rgba(10, 22, 48, 0.4) 50%, transparent); }

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

.card {
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--danger), transparent);
  opacity: 0.6;
}

.icon-wrapper {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
}

.bg-red-glow {
  background: var(--danger-glow);
  border: 1px solid rgba(255, 90, 90, 0.25);
  box-shadow: 0 0 24px rgba(255, 90, 90, 0.15) inset;
}

.icon-pain { font-size: 1.75rem; color: var(--danger); }

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--text-main);
}

.card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===================== FEATURES ===================== */
.features-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.features-text { flex: 0 0 380px; }

.features-text h2 {
  text-align: left;
  margin-bottom: 16px;
}

.features-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 8px;
}

.feature-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 24px 28px;
  gap: 20px;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-item:hover { border-left-color: var(--green); }

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--green-glow-soft);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item i {
  font-size: 1.2rem;
  color: var(--green);
}

.feature-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.feature-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-green { color: var(--green); }
.text-gold  { color: var(--gold); }

/* ===================== TARGET / PARA QUEM É ===================== */
.target-content {
  max-width: 820px;
  width: 100%;
  padding: 64px 80px;
}

.target-content h2 { text-align: center; margin-bottom: 48px; }

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

.check-list li {
  font-size: 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.025);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.check-list li:hover {
  border-color: var(--border-green);
  background: var(--green-glow-soft);
  color: var(--text-main);
}

.check-list li .check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--green-glow-soft);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-list li .check-icon i { font-size: 0.75rem; color: var(--green); }

/* ===================== OFFER ===================== */
.offer-section {
  background: linear-gradient(180deg, transparent, rgba(245, 185, 66, 0.04), transparent);
}

.offer-box {
  padding: 80px 64px;
  max-width: 860px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 80px rgba(245, 185, 66, 0.08), inset 0 0 40px rgba(245, 185, 66, 0.03);
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--gold-glow-soft);
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.offer-box h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.offer-box > p {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.15rem;
}

.price-container {
  margin-bottom: 48px;
}

.old-price {
  display: block;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1.25rem;
  margin-bottom: 16px;
  opacity: 0.7;
}

.new-price {
  display: inline-block;
  padding: 32px 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.08), rgba(245, 185, 66, 0.03));
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.new-price::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.06), transparent);
}

.new-price-label {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.new-price strong {
  font-size: 5.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-shadow: 0 0 60px var(--gold-glow);
  letter-spacing: -0.04em;
}

.price-cents {
  font-size: 2rem;
  color: var(--gold);
  vertical-align: super;
  font-weight: 800;
}

.checkout-btn { font-size: 1.2rem; padding: 26px 64px; }

.safe-checkout {
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Garantia */
.garantia-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.garantia-strip i { font-size: 2rem; color: var(--gold); }

.garantia-strip-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-main);
}

.garantia-strip-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===================== FOOTER ===================== */
.footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.4);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.footer .copyright { opacity: 0.5; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .features-container { flex-direction: column; gap: 48px; }
  .features-text { flex: none; text-align: center; }
  .features-text h2 { text-align: center; }
  .card-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .hero h1 { font-size: 3.5rem; }
  .hero-stats { max-width: 100%; }
}

@media (max-width: 768px) {
  .navbar-cta { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.125rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .section h2 { font-size: 2rem; }
  .target-content, .offer-box { padding: 40px 24px; }
  .new-price strong { font-size: 4rem; }
  .btn-cta { width: 100%; padding: 20px 24px; font-size: 1rem; }
  .checkout-btn { padding: 22px 24px; }
  .features-text { flex: none; }
  .garantia-strip { flex-direction: column; text-align: center; }
  .hero-badge { font-size: 0.7rem; }
}
