/* ═══ Guia & Solução Documental — Vanilla CSS ═══ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy: #1a2744;
  --navy-light: #243356;
  --navy-fg: #f8f8fa;
  --gold: #c4973b;
  --gold-light: #d4ab50;
  --gold-fg: #1a2040;
  --bg: #faf9f6;
  --fg: #1a2744;
  --card: #ffffff;
  --card-fg: #1a2744;
  --muted: #f3f2ee;
  --muted-fg: #6b7280;
  --accent: #c4973b;
  --accent-fg: #1a2040;
  --border: #e8e6e0;
  --destructive: #dc3545;
  --success: #22a55b;
  --radius: 0.75rem;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--fg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  border: none; transition: all 0.2s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--gold-fg);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-hero {
  background: rgba(255,255,255,0.12); color: var(--navy-fg); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-hero:hover { background: rgba(255,255,255,0.2); }
.btn-outline {
  background: transparent; border: 1px solid var(--border); color: var(--fg);
}
.btn-outline:hover { background: var(--muted); }
.btn-dark {
  background: var(--fg); color: #fff; border: none;
}
.btn-dark:hover { opacity: 0.9; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); height: 64px;
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.125rem; }
.header-logo-icon {
  width: 36px; height: 36px; border-radius: 8px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem;
}
.header nav { display: flex; gap: 2rem; }
.header nav a { font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); transition: color 0.2s; }
.header nav a:hover { color: var(--fg); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--fg); cursor: pointer; }
.mobile-menu {
  position: absolute; top: 64px; left: 0; right: 0;
  background: var(--card); border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12); padding: 0.5rem 1rem 1rem;
}
.mobile-menu a { display: block; padding: 0.85rem 0; font-size: 0.9rem; font-weight: 500; color: var(--fg); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-gold { margin-top: 0.75rem; width: 100%; color: var(--navy); border-bottom: none; }
.mobile-menu.hidden { display: none; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #2e3f6a 100%);
  padding-top: 64px;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 4rem 1rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-img { border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3); width: 100%; max-width: 420px; margin: 0 auto; }
.hero-text { color: var(--navy-fg); }
.hero-text h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; }
.hero-text h1 .gold { color: var(--gold); }
.hero-text p { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(248,248,250,0.8); max-width: 520px; }
.hero-buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badges { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.badge-trust {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.5rem 1rem; border-radius: 9999px;
  background: rgba(255,255,255,0.15); color: var(--navy-fg);
  font-size: 0.8125rem; font-weight: 500; backdrop-filter: blur(8px);
}
.hero-disclaimer { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(248,248,250,0.5); }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-muted { background: var(--muted); }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; }
.section-title .accent { color: var(--accent); }
.section-sub { text-align: center; color: var(--muted-fg); margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── Feature Cards ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.card-feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px); padding: 2rem;
  transition: all 0.3s;
}
.card-feature:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(196,151,59,0.15); transform: translateY(-2px); }
.card-feature .icon-circle {
  width: 48px; height: 48px; border-radius: 9999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-fg); font-size: 1.25rem; margin-bottom: 1rem;
}
.card-feature h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.card-feature p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.step-item { text-align: center; }
.step-number {
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--gold-fg); font-weight: 700; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(26,39,68,0.08); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--navy); font-size: 1.5rem;
}
.step-item h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.step-item p { font-size: 0.875rem; color: var(--muted-fg); max-width: 300px; margin: 0 auto; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px); padding: 1.5rem;
}
.testimonial-card .quote { font-size: 2rem; color: rgba(196,151,59,0.35); margin-bottom: 0.75rem; }
.testimonial-card .text { color: var(--fg); line-height: 1.7; margin-bottom: 1rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 600; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-card .author-name { font-weight: 600; font-size: 0.875rem; }
.testimonial-card .author-type { font-size: 0.75rem; color: var(--muted-fg); }

/* ── FAQ ── */
.faq-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.faq-tab {
  padding: 0.625rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--card); color: var(--fg);
  cursor: pointer; transition: all 0.2s;
}
.faq-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.faq-category { display: none; }
.faq-category.active { display: block; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px); padding: 0 1.5rem; margin-bottom: 0.75rem;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; cursor: pointer; font-weight: 500; color: var(--fg);
  border: none; background: none; width: 100%; text-align: left; font-size: 0.95rem;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--muted-fg); transition: transform 0.2s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { padding: 0 0 1rem; color: var(--muted-fg); line-height: 1.7; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--navy-fg); padding: 5rem 0; text-align: center;
}
.cta-section h2 { font-size: 2rem; font-weight: 700; }
.cta-section p { margin-top: 1rem; color: rgba(248,248,250,0.7); font-size: 1.125rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn { margin-top: 2rem; }
.cta-section .small { margin-top: 1rem; font-size: 0.875rem; color: rgba(248,248,250,0.5); }

/* ── Footer ── */
.footer { background: var(--navy); color: var(--navy-fg); }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 4rem 1rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem;
}
.footer h3 { font-weight: 600; margin-bottom: 1rem; }
.footer p, .footer li { font-size: 0.875rem; color: rgba(248,248,250,0.7); line-height: 1.7; }
.footer a:hover { color: var(--navy-fg); }
.footer .footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-weight: 700; font-size: 1.125rem; }
.footer .footer-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center; color: var(--gold-fg); font-size: 1rem;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  background: rgba(248,248,250,0.1); font-size: 0.75rem; font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(248,248,250,0.1);
  max-width: 1280px; margin: 0 auto; padding: 1.5rem 1rem;
}
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.75rem; color: rgba(248,248,250,0.5); }
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(248,248,250,0.8); }
.footer-legal { border-top: 1px solid rgba(248,248,250,0.1); padding-top: 1rem; margin-top: 1.5rem; text-align: center; font-size: 0.75rem; color: rgba(248,248,250,0.4); }
.footer-legal p { margin-top: 0.5rem; }
.footer-contact li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-contact .icon { color: var(--gold); font-size: 0.875rem; }

/* ── Info Cards (shared with features) ── */
.info-card .num-icon { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.info-card .num {
  width: 40px; height: 40px; border-radius: 9999px; font-size: 0.875rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--gold-fg); font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── Form Page ── */
.form-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #2e3f6a 100%); padding-top: 64px; }
.form-hero-inner { max-width: 900px; margin: 0 auto; padding: 3rem 1rem 4rem; color: var(--navy-fg); }
.form-hero h1 { font-size: 2.25rem; font-weight: 800; }
.form-hero h1 .gold { color: var(--gold); }
.form-hero p { margin-top: 1rem; color: rgba(248,248,250,0.8); font-size: 1.125rem; }

.form-container { max-width: 900px; margin: 0 auto; padding: 3rem 1rem; }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; }

/* Stepper */
.stepper { display: flex; align-items: center; justify-content: space-between; }
.stepper-step { display: flex; align-items: center; gap: 0.5rem; flex: 1; }
.stepper-circle {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem; transition: all 0.3s;
}
.stepper-circle.active { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--gold-fg); }
.stepper-circle.inactive { background: var(--muted); color: var(--muted-fg); }
.stepper-label { font-size: 0.875rem; font-weight: 500; }
.stepper-line { flex: 1; height: 2px; margin: 0 0.75rem; border-radius: 1px; }
.stepper-line.active { background: var(--accent); }
.stepper-line.inactive { background: var(--border); }

/* Form fields */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-group input, .form-group select {
  width: 100%; padding: 0.625rem 0.875rem; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; background: var(--card); color: var(--fg); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-group .error { border-color: var(--destructive); }
.form-group .error-text { font-size: 0.75rem; color: var(--destructive); margin-top: 0.25rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.form-grid-3-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; }
.form-actions { display: flex; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.tip-box {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem; border-radius: 12px; background: rgba(196,151,59,0.06);
  border-left: 4px solid var(--accent); margin-bottom: 2rem;
}
.tip-box p { font-size: 0.875rem; color: var(--muted-fg); }
.progress-bar { height: 4px; background: rgba(196,151,59,0.2); border-radius: 2px; margin-bottom: 1.5rem; }
.progress-bar .fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.3s; }
.step-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.step-header h2 { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.step-header span { font-size: 0.875rem; color: var(--muted-fg); }
.step-content { display: none; }
.step-content.active { display: block; }

/* ── Planos Page ── */
.planos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.plano-card {
  position: relative; background: var(--card); border-radius: 1rem; border: 2px solid var(--border);
  padding: 1.5rem; cursor: pointer; transition: all 0.3s;
}
.plano-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.plano-card.selected { border-color: var(--accent); box-shadow: 0 8px 24px rgba(196,151,59,0.15); }
.plano-card .badge-top {
  position: absolute; top: -12px; right: 16px;
  padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 700; color: #fff;
}
.plano-card .badge-destructive { background: var(--destructive); }
.plano-card .badge-success { background: var(--success); }
.plano-card .check-icon { position: absolute; top: 16px; right: 16px; color: var(--accent); font-size: 1.25rem; display: none; }
.plano-card.selected .check-icon { display: block; }
.plano-card h3 { font-size: 1.125rem; font-weight: 700; min-height: 3.5rem; line-height: 1.4; }
.plano-card .desc { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); min-height: 3rem; }
.plano-card .price { margin-top: 1.5rem; font-size: 1.875rem; font-weight: 700; color: var(--accent); }
.info-box { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem 2rem; margin-top: 2.5rem; }
.info-box h3 { display: flex; align-items: center; gap: 0.5rem; font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.info-box li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
.info-box .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; margin-top: 6px; }

/* ── Pagamento Page ── */
.payment-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2rem; }
.payment-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem 2rem; }
.payment-steps { list-style: none; }
.payment-steps li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.payment-steps .num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: var(--accent-fg);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qr-wrapper { background: #fff; padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(0,0,0,0.05); display: inline-block; }
.pix-code-box {
  word-break: break-all; font-size: 0.7rem; color: var(--muted-fg);
  background: var(--muted); padding: 0.75rem; border-radius: var(--radius);
  margin-top: 1rem; max-height: 80px; overflow: hidden;
}
.status-banner {
  border-radius: 1rem; padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.status-pending { background: rgba(196,151,59,0.1); border: 1px solid rgba(196,151,59,0.3); }
.status-paid { background: rgba(34,165,91,0.1); border: 1px solid rgba(34,165,91,0.3); }
.security-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.security-badge {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem;
  padding: 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center;
}
.security-badge span { font-size: 0.75rem; font-weight: 500; color: var(--muted-fg); }
.receipt-box { background: var(--card); border: 2px solid rgba(196,151,59,0.3); border-radius: 1rem; padding: 1.5rem 2rem; }
.email-notice {
  background: rgba(196,151,59,0.05); border: 1px solid rgba(196,151,59,0.2);
  border-radius: 1rem; padding: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem;
}
.email-notice p { font-size: 0.875rem; }

/* ── Review ── */
.review-section { background: var(--muted); border-radius: 12px; padding: 1rem; margin-bottom: 1.5rem; }
.review-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.375rem 0; }
.review-row .label { color: var(--muted-fg); }
.review-row .value { font-weight: 500; }

/* ── Checkbox ── */
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img { max-width: 300px; }
  .hero-text h1 { font-size: 2.25rem; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .header nav { display: none; }
  .header-inner .btn-gold { display: none; }
  .mobile-menu .btn-gold { display: inline-flex; }
  .mobile-menu-btn { display: block; }
  .planos-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .form-grid-2, .form-grid-3, .form-grid-3-2 { grid-template-columns: 1fr; }
  .stepper-label { display: none; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
}
