/* ══════════════════════════════════════════════════════════════
   pages.css — Estilos compartilhados das páginas estáticas
   (Home, Sobre, FAQ, Contato, Privacidade, Termos)
══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Header ───────────────────────────────────────────────── */
.pages-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.pages-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.pages-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.pages-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}
.pages-logo:hover .pages-logo-img {
  transform: scale(1.05);
}
.pages-logo-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #1e1b4b, #4338ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.pages-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pages-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  padding: 7px 16px;
  border-radius: 999px;
  transition: all 0.15s ease;
}
.pages-nav a:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.pages-nav a.active {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* ── Main content ─────────────────────────────────────────── */
.pages-main {
  flex: 1;
  padding: 40px 20px 60px;
}
.pages-container {
  max-width: 820px;
  margin: 0 auto;
}

/* ── Placeholder (página sem conteúdo ainda) ──────────────── */
.page-placeholder {
  text-align: center;
  padding: 60px 24px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-placeholder-logo {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}
.page-placeholder h1 {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.page-placeholder p {
  font-size: 15px;
  color: #94a3b8;
}

/* ── Footer das páginas ───────────────────────────────────── */
.pages-footer {
  background: #0f172a;
  padding: 36px 20px;
  margin-top: auto;
}
.pages-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pages-footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.pages-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}
.pages-footer-nav a {
  font-size: 13px;
  color: #94a3b8;
  transition: color 0.15s;
}
.pages-footer-nav a:hover {
  color: #ffffff;
}
.pages-footer-copy {
  font-size: 12px;
  color: #64748b;
}

/* ── Home Page Styles ───────────────────────────────────────── */
.home-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.home-hero {
  text-align: center;
  padding: 40px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.home-hero-title {
  font-size: clamp(32px, 6.5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.gradient-text {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-hero-subtitle {
  font-size: clamp(17px, 3vw, 21px);
  font-weight: 600;
  color: #334155;
  max-width: 680px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.home-hero-desc {
  font-size: clamp(15px, 2.5vw, 17px);
  color: #64748b;
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.home-hero-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-home-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  text-align: center;
  max-width: 100%;
}
.btn-home-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  filter: brightness(1.05);
}
.btn-home-primary .btn-icon {
  font-size: 22px;
}

.btn-home-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}
.btn-home-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  background: #20ba5a;
}
.btn-home-whatsapp .btn-icon {
  font-size: 18px;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 340px;
}
.btn-whatsapp-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  background: #20ba5a;
}
.btn-whatsapp-large .btn-icon {
  font-size: 20px;
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

/* ── Steps Grid ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.step-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}
.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.step-num {
  font-size: 14px;
  font-weight: 900;
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.1);
  padding: 6px 12px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}
.step-icon {
  font-size: 32px;
  line-height: 1;
}
.step-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* ── Section CTA Box ──────────────────────────────────────── */
.section-cta-box {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(30, 27, 75, 0.25);
  margin-top: 32px;
}
.section-cta-box h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.section-cta-box p {
  font-size: 15px;
  color: #cbd5e1;
  max-width: 500px;
  margin-bottom: 8px;
}

/* ── "Como vai ficar" Card (Home) ──────────────────────────── */
.how-it-works-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  text-align: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto 32px;
  box-sizing: border-box;
  overflow: hidden;
}
.how-title {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 800;
  color: #1e1b4b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.how-subtitle {
  font-size: clamp(12px, 3.2vw, 14px);
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
  padding: 0 4px;
}
.how-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.5vw, 10px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 130px;
}
.how-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  max-width: 125px;
  border-radius: clamp(10px, 3.5vw, 18px);
  overflow: hidden;
  position: relative;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.how-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.how-thumb.frame-thumb img {
  object-fit: cover;
  background: transparent;
}
.how-thumb.result-thumb .frame-overlay-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.how-operator {
  font-size: clamp(15px, 4vw, 24px);
  font-weight: 900;
  color: #10b981;
  user-select: none;
  flex-shrink: 0;
  margin-bottom: 22px;
  padding: 0 1px;
}
.how-label {
  font-size: clamp(10px, 2.7vw, 13px);
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

/* ── Social Share Block ───────────────────────────────────── */
.social-share-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}
.social-share-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.social-share-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  user-select: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.social-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.social-badge.badge-facebook {
  background: #1877F2;
}
.social-badge.badge-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-badge.badge-whatsapp {
  background: #25D366;
}

.home-demo-action {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.btn-demo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
  transition: all 0.2s ease;
}
.btn-demo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
  filter: brightness(1.08);
}

/* ── Final CTA Section ────────────────────────────────────── */
.home-final-cta {
  padding: 10px 0 20px;
}
.final-cta-card {
  background: #ffffff;
  border-radius: 32px;
  border: 2px solid rgba(79, 70, 229, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  padding: 54px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}
.final-cta-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.final-cta-desc {
  font-size: clamp(16px, 2.5vw, 18px);
  color: #64748b;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.final-cta-action {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.final-cta-hint {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

/* ── About Page Styles ──────────────────────────────────────── */
.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-hero-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.about-hero-title {
  font-size: clamp(28px, 5.5vw, 42px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.about-hero-lead {
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 700;
  color: #4f46e5;
  margin-bottom: 20px;
  line-height: 1.4;
}
.about-hero-text {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 12px;
}

.about-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 36px;
}
.about-card-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-card-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 999px;
}
.about-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-card p:last-child {
  margin-bottom: 0;
}

/* ── Why Grid ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.why-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(99, 102, 241, 0.3);
}
.why-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: inline-block;
}
.why-item h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.why-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── Flow Container ───────────────────────────────────────── */
.flow-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.flow-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 20px;
}
.flow-step-badge {
  font-size: 13px;
  font-weight: 800;
  color: #4f46e5;
  background: rgba(79, 70, 229, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  flex-shrink: 0;
}
.flow-step-text {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}

.about-slogan {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: #4f46e5;
  letter-spacing: 0.04em;
  margin-top: 24px;
}

/* ── FAQ Page Styles ────────────────────────────────────────── */
.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-header-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-header-logo {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.faq-header-title {
  font-size: clamp(28px, 5.5vw, 40px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.faq-header-lead {
  font-size: 16px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  padding: 28px 28px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
}
.faq-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.faq-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.faq-card-question {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}
.faq-card-answer {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
}
.faq-card-action {
  margin-top: 18px;
}

/* ── Legal Pages Styles (Termos & Privacidade) ─────────────── */
.legal-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.legal-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 48px 36px;
}
.legal-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-logo {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.legal-title {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 14px;
  border-radius: 999px;
}
.legal-intro {
  font-size: 16px;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 32px;
  background: #f8fafc;
  padding: 20px 24px;
  border-radius: 18px;
  border-left: 4px solid #4f46e5;
}
.legal-section-block {
  margin-bottom: 28px;
}
.legal-section-block:last-child {
  margin-bottom: 0;
}
.legal-section-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.legal-section-block p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-section-block p:last-child {
  margin-bottom: 0;
}
.legal-list {
  padding-left: 20px;
  margin: 12px 0 16px;
}
.legal-list li {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-contact-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ── PIX Activation Page Styles (pages/ativar.php) ────────── */
.pix-page-wrapper {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pix-page-header {
  text-align: center;
  margin-bottom: 8px;
}
.pix-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.pix-page-title {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.15;
}
.pix-page-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* Summary Grid */
.pix-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pix-value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pix-value-tag {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.pix-value-amount {
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 12px;
}
.pix-value-benefits {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit-item {
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
}
.pix-validity-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.pix-validity-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pix-validity-icon {
  font-size: 24px;
}
.pix-validity-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}
.pix-validity-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* Box Pagamento via PIX */
.pix-box {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pix-box-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pix-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ecfdf5;
  color: #0f766e;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pix-box-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.pix-box-desc {
  font-size: 14px;
  color: #64748b;
}
.pix-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 0;
}
.pix-key-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pix-key-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
}
.pix-key-display {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.pix-key-icon {
  font-size: 18px;
  color: #0f766e;
  flex-shrink: 0;
}
.pix-key-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  overflow-x: auto;
  white-space: nowrap;
  user-select: all;
  flex: 1;
}
.btn-copy-pix {
  background: #16a34a;
  color: #ffffff;
  border-radius: 14px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.btn-copy-pix:hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
}
.btn-copy-pix.btn-copied-state {
  background: #047857 !important;
  transform: scale(0.98);
}
.pix-copy-hint {
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

/* Proof Card */
.pix-proof-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(30, 27, 75, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pix-proof-icon {
  font-size: 36px;
}
.pix-proof-title {
  font-size: 22px;
  font-weight: 800;
}
.pix-proof-desc {
  font-size: 15px;
  color: #cbd5e1;
  max-width: 480px;
  line-height: 1.6;
}
.btn-send-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 440px;
  margin-top: 6px;
}
.btn-send-proof:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
}

/* Info List */
.pix-info-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px 24px;
}
.pix-info-title {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}
.pix-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pix-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.info-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Home Pricing Card (Resumo Comercial) ─────────────────── */
.home-pricing-card {
  background: #ffffff;
  border: 2px solid #e0e7ff;
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(79, 70, 229, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
.home-pricing-badge {
  background: #eef2ff;
  color: #4f46e5;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.home-pricing-title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  color: #0f172a;
}
.home-pricing-desc {
  font-size: 15px;
  color: #64748b;
  max-width: 480px;
}
.home-pricing-value-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.home-pricing-price {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}
.home-pricing-features {
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
}
.home-pricing-validity {
  font-size: 13px;
  color: #64748b;
}
.home-pricing-alt-link {
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  text-decoration: underline;
  margin-top: 4px;
}
.home-pricing-alt-link:hover {
  color: #4338ca;
}

/* ── Responsivo ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .pix-summary-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-card {
    padding: 32px 20px;
  }
  .about-hero-card {
    padding: 36px 20px;
  }
  .faq-card, .faq-header-card {
    padding: 24px 18px;
  }
  .legal-card {
    padding: 28px 18px;
  }
  .home-wrapper {
    gap: 44px;
  }
  .btn-home-primary {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }
  .final-cta-card {
    padding: 36px 20px;
  }
}
@media (max-width: 640px) {
  .pages-header-inner { flex-direction: column; align-items: center; gap: 14px; }
  .pages-nav { justify-content: center; }
  .page-placeholder { padding: 40px 16px; }
  .page-placeholder-logo { width: 90px; height: 90px; }
  .about-card { padding: 26px 16px; }
  .about-hero-card { padding: 30px 16px; }
  .why-item { padding: 18px 16px; }
  .flow-step-item { padding: 12px 14px; gap: 10px; }
  .flow-step-text { font-size: 14px; }
  .about-hero-title { font-size: 26px; }
  .about-hero-lead { font-size: 15px; }
  .about-card-title { font-size: 20px; }
}

/* ── Floating Scroll-to-Top Button ───────────────────────── */
.btn-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
  outline: none;
}
.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btn-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.5);
  filter: brightness(1.1);
}
.btn-scroll-top:active {
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .btn-scroll-top {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}
