/* ═══════════════════════════════════════════════
   GOING NORTH — index.css
   Estilos da landing page (index.html).
   ═══════════════════════════════════════════════ */

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ── Hero ── */
.hero {
  background: var(--nav-bg);
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 32px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,171,94,.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,171,94,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,171,94,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,171,94,.15);
  border: 1px solid rgba(26,171,94,.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.hero-tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s infinite;
}

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

.hero h1 {
  font-family: var(--font-d);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero h1 .hl { color: #4ade80; }

.hero-sub {
  color: rgba(255, 255, 255, .58);
  font-size: .96rem;
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  padding: 13px 26px;
  border-radius: 11px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .9rem;
  transition: all .25s;
}

.btn-primary:hover {
  background: var(--green-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--green-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 12px 22px;
  border-radius: 11px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s;
}

.btn-secondary:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 800;
  color: #4ade80;
}

.stat-label {
  font-size: .74rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 3px;
}

.stat-div {
  width: 1px;
  background: rgba(255, 255, 255, .1);
  align-self: stretch;
}

/* ── Dashboard card (visual hero) ── */
.hero-visual { position: relative; }

.dash-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r-xl);
  padding: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dc-title {
  font-family: var(--font-d);
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}

.dc-date { font-size: .74rem; color: rgba(255, 255, 255, .35); }

.dc-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.dc-scard {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 12px 14px;
}

.dc-scard-label {
  font-size: .68rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.dc-scard-val {
  font-family: var(--font-d);
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
}

.dc-scard:nth-child(1) .dc-scard-val { color: #4ade80; }
.dc-scard:nth-child(3) .dc-scard-val { color: #4ade80; }
.dc-scard-val.red { color: #f87171; }

.dc-chart-wrap    { margin-bottom: 20px; }
.dc-chart-label   { font-size: .72rem; color: rgba(255, 255, 255, .35); margin-bottom: 8px; }
.dc-chart-canvas  { height: 90px; position: relative; }
.dc-goals-label   { font-size: .72rem; color: rgba(255, 255, 255, .35); margin-bottom: 10px; }

.dc-goal { margin-bottom: 9px; }

.dc-goal-row {
  display: flex;
  justify-content: space-between;
  font-size: .76rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 4px;
}

.dc-goal-bar {
  height: 4px;
  background: rgba(255, 255, 255, .08);
  border-radius: 99px;
  overflow: hidden;
}

.dc-goal-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--green);
  width: 0;
  transition: width 1.2s ease;
}

/* Badges flutuantes */
.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.float-badge--tl { top: -18px; left: -32px; animation-delay: 0s; }
.float-badge--br { bottom: -14px; right: -28px; animation-delay: 1.8s; }

.fb-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-val  { font-family: var(--font-d); font-size: .84rem; font-weight: 700; color: #fff; }
.fb-lbl  { font-size: .68rem; color: rgba(255, 255, 255, .4); }

/* ── Trust strip ── */
.trust-strip {
  background-color: var(--nav-bg);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 18px 32px;
}

.trust-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-label { font-size: .74rem; color: rgba(255, 255, 255, .3); white-space: nowrap; font-weight: 500; }
.trust-logos { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-logo  { font-size: .78rem; font-weight: 700; color: rgba(255, 255, 255, .2); letter-spacing: .04em; }

/* ── Seções ── */
.section        { padding: 88px 32px; }
.section--light   { background: var(--bg); }
.section--surface { background: var(--surface); }
.section-inner  { max-width: 1300px; margin: 0 auto; }

.section-head  { text-align: center; margin-bottom: 52px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-tag::before { content: ''; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }

.section-title {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span { color: var(--green); }

.section-sub {
  font-size: .93rem;
  color: var(--text3);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,171,94,.2); }
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-family: var(--font-d);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(26,171,94,.22);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step-card h3 { font-family: var(--font-d); font-size: .98rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p  { font-size: .83rem; color: var(--text3); line-height: 1.65; }

/* ── Features ── */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.feat-list { display: flex; flex-direction: column; gap: 6px; }

.feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all .2s;
  border: 1px solid transparent;
}

.feat-item:hover,
.feat-item.active { background: var(--surface); border-color: var(--border); box-shadow: var(--shadow); }

.feat-icon {
  width: 38px;
  height: 38px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-title { font-family: var(--font-d); font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.feat-desc  { font-size: .78rem; color: var(--text3); line-height: 1.55; }

.feat-visual-card {
  background: var(--nav-bg);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.fvc-title {
  font-family: var(--font-d);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.fvc-rows  { display: flex; flex-direction: column; }

.fvc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.fvc-row:last-child { border-bottom: none; }

.fvc-info   { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255, 255, 255, .65); }
.fvc-dot    { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fvc-right  { display: flex; align-items: center; gap: 8px; }
.fvc-amount { font-family: var(--font-d); font-size: .84rem; font-weight: 700; }
.fvc-amount.pos { color: #4ade80; }
.fvc-amount.neg { color: rgba(255, 255, 255, .5); }

.fvc-tag { font-size: .66rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.tag-up  { background: rgba(74,222,128,.12); color: #4ade80; }
.tag-dn  { background: rgba(255,255,255,.07); color: rgba(255, 255, 255, .4); }
.tag-inv { background: rgba(200,169,110,.12); color: #c8a96e; }

.fvc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.fvc-footer span:first-child { font-size: .78rem; color: rgba(255, 255, 255, .35); }
.fvc-saldo { font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: #4ade80; }

/* ── Depoimentos ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: all .25s;
  opacity: 0;
  animation: testiIn .5s ease forwards;
}

.testi-card:nth-child(2) { animation-delay: .1s; }
.testi-card:nth-child(3) { animation-delay: .2s; }

@keyframes testiIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(26,171,94,.2); }

.testi-stars { color: #c8a96e; font-size: 1rem; margin-bottom: 14px; }
.testi-card p {
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name { font-family: var(--font-d); font-size: .84rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: .74rem; color: var(--text3); }

/* ── Preços ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  transition: all .25s;
}

.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-card--featured { background: var(--nav-bg); border-color: rgba(26,171,94,.3); }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: var(--font-d);
}

.pricing-name {
  font-family: var(--font-d);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text3);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pricing-card--featured .pricing-name  { color: rgba(255, 255, 255, .5); }

.pricing-price {
  font-family: var(--font-d);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-price { color: #fff; }
.pricing-price span { font-size: .9rem; font-weight: 400; color: var(--text3); }

.pricing-desc { font-size: .82rem; color: var(--text3); margin-bottom: 24px; line-height: 1.5; }
.pricing-card--featured .pricing-desc { color: rgba(255, 255, 255, .45); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li { display: flex; align-items: center; gap: 9px; font-size: .83rem; color: var(--text2); }
.pricing-card--featured .pricing-features li { color: rgba(255, 255, 255, .7); }

.btn-pricing-outline {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: .86rem;
  font-weight: 600;
  color: var(--text2);
  transition: all .2s;
  font-family: var(--font-d);
}

.btn-pricing-outline:hover { border-color: var(--green); color: var(--green); }

.btn-pricing-primary {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: var(--green);
  font-size: .86rem;
  font-weight: 700;
  color: #fff;
  transition: all .2s;
  font-family: var(--font-d);
}

.btn-pricing-primary:hover { background: var(--green-h); }

/* ── CTA ── */
.cta-section {
  background: var(--nav-bg);
  padding: 88px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,171,94,.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.cta-section p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .55);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { font-size: .76rem; color: rgba(255, 255, 255, .25); margin-top: 18px; position: relative; }

/* ── Footer ── */
.site-footer {
  background: #070f09;
  padding: 60px 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner { max-width: 1300px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
  line-height: 1.65;
  margin-top: 12px;
  max-width: 220px;
}

.footer-logo {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-family: var(--font-d);
  font-size: .76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .82rem; color: rgba(255, 255, 255, .35); transition: color .2s; }
.footer-col a:hover { color: rgba(255, 255, 255, .75); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: .78rem;
  color: rgba(255, 255, 255, .2);
}

.footer-socials { display: flex; gap: 14px; }
.footer-socials a { color: rgba(255, 255, 255, .25); transition: color .2s; }
.footer-socials a:hover { color: rgba(255, 255, 255, .7); }

/* ── Animação reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--nav-bg);
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: .86rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── Responsivo ── */
@media (max-width: 1100px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 48px; }
  .float-badge         { display: none; }
  .steps-grid          { grid-template-columns: 1fr 1fr; }
  .testi-grid          { grid-template-columns: 1fr 1fr; }
  .feat-grid           { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero                { padding: 48px 20px; }
  .hero h1             { font-size: 2rem; }
  .section             { padding: 60px 20px; }
  .steps-grid          { grid-template-columns: 1fr; }
  .testi-grid          { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .footer-top          { grid-template-columns: 1fr; }
  .footer-links-grid   { grid-template-columns: 1fr 1fr; }
}
