/* ============================================
   Giants — Public landing styles
   ============================================ */

body.public { background: var(--color-bg); color: var(--color-text); }

.public-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}
.public-nav__wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.public-nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px;
}
.public-nav__logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
}
.public-nav__links { display: flex; align-items: center; gap: 24px; }
.public-nav__link { font-weight: 500; color: var(--color-text-secondary); transition: color 150ms; }
.public-nav__link:hover { color: var(--color-text); }

.public-main { min-height: 70vh; }

/* Hero */
.hero { padding: 100px 24px 80px; overflow: hidden; position: relative; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(108,92,231,0.2), transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(0,212,255,0.15), transparent 50%);
  z-index: 0; pointer-events: none;
}
.hero__wrap { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(108,92,231,0.15);
  border: 1px solid rgba(108,92,231,0.3);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--color-primary-light);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__accent {
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 20px; line-height: 1.5;
  color: var(--color-text-secondary);
  max-width: 680px; margin: 0 auto 36px;
}
.hero__cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__trust {
  font-size: 13px; color: var(--color-text-muted);
}

/* Sections */
.features, .how-it-works, .plans-teaser, .cta-final {
  padding: 80px 24px;
}
.features__wrap { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-sub {
  text-align: center; font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 640px; margin: 0 auto 48px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-normal);
}
.feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card__icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--color-text-secondary); line-height: 1.6; }

/* How it works */
.how-it-works { background: var(--color-bg-card); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.step { text-align: center; padding: 24px 16px; }
.step__num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  font-size: 22px; font-weight: 800;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--color-text-secondary); font-size: 15px; line-height: 1.5; }

/* Plans teaser + dedicated /precos */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.plan-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}
.plan-card--featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}
.plan-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: white; padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.plan-card__name {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.plan-card__price { margin-bottom: 10px; }
.plan-card__currency { font-size: 18px; vertical-align: super; color: var(--color-text-muted); }
.plan-card__amount { font-size: 48px; font-weight: 800; color: var(--color-text); }
.plan-card__period { font-size: 15px; color: var(--color-text-muted); }
.plan-card__fee {
  font-size: 13px; color: var(--color-text-secondary);
  margin-bottom: 22px;
}
.plan-card__desc {
  font-size: 14px; color: var(--color-text-secondary);
  line-height: 1.5; margin-bottom: 20px;
  min-height: 44px;
}
.plan-card__features {
  list-style: none; padding: 0;
  text-align: left; margin-bottom: 28px;
}
.plan-card__features li {
  padding: 8px 0; font-size: 14px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}
.plan-card__features li:last-child { border-bottom: none; }
.plan-card__features li::before {
  content: '\2713';
  color: var(--color-green);
  margin-right: 10px;
  font-weight: 700;
}

.btn--lg { padding: 14px 28px; font-size: 16px; font-weight: 700; }
.btn--md { padding: 10px 22px; font-size: 14px; font-weight: 600; }

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,212,255,0.1));
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-final p {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 560px; margin: 0 auto 32px;
}

/* Footer */
.public-footer {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 48px 24px 20px;
}
.public-footer__wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.public-footer__wrap p { color: var(--color-text-muted); font-size: 14px; margin-top: 6px; }
.public-footer__wrap a {
  display: block;
  color: var(--color-text-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: color 150ms;
}
.public-footer__wrap a:hover { color: var(--color-text); }
.public-footer__legal {
  max-width: 1200px; margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 13px; color: var(--color-text-muted);
}

/* FAQ */
.pricing-faq { max-width: 780px; margin: 0 auto; }
.faq {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 40px;
}
.faq__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.faq__item h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.faq__item p { color: var(--color-text-secondary); line-height: 1.6; }
