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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #020617;
  color: #111827;
  line-height: 1.6;
}

/* Página de suporte com fundo claro */
.support-page {
  background: #f3f4f6;
}

.support-page main {
  min-height: calc(100vh - 120px);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #020617;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #f9fafb;
}

.logo span {
  color: #22c55e;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.nav a {
  padding: 4px 0;
  position: relative;
  color: #e5e7eb;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #22c55e);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 56px 0 40px;
  background: #020617;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 3vw + 1rem, 2.6rem);
  margin-bottom: 10px;
  color: #f9fafb;
}

.hero-text h1 span {
  color: #16a34a; /* verde mais sóbrio, sem neon */
}

.hero-text p {
  color: #e5e7eb;
  max-width: 520px;
}

.hero-benefits {
  list-style: none;
  margin: 16px 0 18px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
}

.hero-benefits li::before {
  content: "✔";
  color: #22c55e;
  font-size: 0.9rem;
}

.hero-security {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #111827;
}

.per {
  font-size: 0.9rem;
  color: #6b7280;
}

.hero-card-title {
  margin-top: 10px;
  font-weight: 600;
  color: #111827;
}

.hero-card-list {
  list-style: none;
  margin: 14px 0 16px;
  color: #4b5563;
  font-size: 0.9rem;
}

.hero-card-list li {
  margin-bottom: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-main {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.35);
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.45);
}

.btn-secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-full {
  width: 100%;
}

.section {
  padding: 48px 0;
  background: #f3f4f6;
}

.section-light {
  background: #ffffff;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.section-subtitle {
  color: #6b7280;
  margin-bottom: 22px;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
  gap: 24px;
  margin-top: 10px;
}

.plan-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 18px;
  border: 1px solid #e5e7eb;
}

.plan-box h3 {
  margin-bottom: 6px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price .currency {
  font-size: 1.1rem;
  color: #6b7280;
}

.plan-price .value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
}

.plan-price .cycle {
  font-size: 0.9rem;
  color: #6b7280;
}

.plan-features {
  list-style: none;
  margin: 12px 0 14px;
  color: #4b5563;
  font-size: 0.92rem;
}

.plan-features li {
  margin-bottom: 4px;
}

.plan-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 6px;
}

.plan-info {
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px dashed #d1d5db;
  background: #f9fafb;
}

.info-list {
  list-style: none;
  margin-top: 10px;
  color: #4b5563;
  font-size: 0.92rem;
}

.info-list li + li {
  margin-top: 6px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.step {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid #e5e7eb;
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #020617;
  margin-bottom: 8px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.benefit {
  background: #f9fafb;
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid #e5e7eb;
}

.checkout-section {
  background: #f3f4f6;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 24px;
  margin-top: 14px;
}

.checkout-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  border: 1px solid #e5e7eb;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

label {
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

small {
  font-size: 0.75rem;
  color: #6b7280;
}

textarea {
  resize: vertical;
  min-height: 70px;
}

.summary-box {
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.summary-note {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 4px;
}

.security-text {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #6b7280;
}

.checkout-info {
  border-radius: 18px;
  padding: 20px 18px;
  border: 1px dashed #d1d5db;
  background: #ffffff;
  font-size: 0.92rem;
}

.after-list {
  margin: 10px 0 12px 18px;
}

.after-list li + li {
  margin-top: 4px;
}

.highlight-box {
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.8rem;
  color: #4b5563;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-cta-main {
  margin-top: 10px;
}

.hero-cta-secondary {
  margin-top: 8px;
}

.hero-cta-secondary .btn {
  padding-inline: 14px;
  font-size: 0.8rem;
}

.btn-whatsapp-outline {
  border: 1px solid #25d366;
  color: #4ade80;
  background: rgba(37, 211, 102, 0.08);
}

.btn-whatsapp-outline:hover {
  background: rgba(37, 211, 102, 0.18);
  color: #86efac;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
}

/* FAQ antes do checkout */
.faq-checkout-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.faq-checkout-list {
  max-width: 720px;
  margin: 20px auto 0;
}

.faq-checkout-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.faq-checkout-item summary {
  padding: 14px 16px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-checkout-item summary::-webkit-details-marker {
  display: none;
}

.faq-checkout-item summary::after {
  content: "+";
  font-weight: 700;
  color: #22c55e;
  font-size: 1.1rem;
}

.faq-checkout-item[open] summary::after {
  content: "−";
}

.faq-checkout-item p {
  padding: 0 16px 14px;
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

.checkout-trust-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  font-size: 0.85rem;
  color: #065f46;
}

.checkout-trust-box strong {
  display: block;
  margin-bottom: 4px;
  color: #047857;
}

/* Suporte */
.support-section {
  background: #f3f4f6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.support-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 18px 18px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.support-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.support-role {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 10px;
}

/* Selos de confiança */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #9ca3af;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #020617;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* Depoimentos */
.testimonials-section {
  background: #f3f4f6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 12px auto 0;
  max-width: 980px;
  justify-content: center;
}

.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.95), rgba(56, 189, 248, 0.8));
  opacity: 0.75;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.55;
  margin-top: 2px;
  flex: 1;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.testimonial-name {
  font-weight: 600;
  color: #111827;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: #9ca3af;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.order-result {
  margin-top: 24px;
  padding: 20px 18px 22px;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(6, 95, 70, 0.92));
  border: 1px solid rgba(34, 197, 94, 0.85);
  font-size: 0.9rem;
  color: #e5e7eb;
}

.order-result strong {
  color: #bbf7d0;
}

.order-result .title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #f9fafb;
}

.order-result-lead {
  margin-bottom: 12px;
  color: #d1d5db;
  font-size: 0.9rem;
}

.order-result pre {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #e5e7eb;
  margin-bottom: 14px;
  max-height: 280px;
  overflow-y: auto;
}

.order-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.pix-checkout-panel {
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.pix-checkout-title {
  font-size: 0.95rem;
  color: #f9fafb;
  margin-bottom: 16px;
  font-weight: 700;
}

.pix-option {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.pix-option--api {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pix-option-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #86efac;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.pix-option-empty {
  font-size: 0.82rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.45;
}

.pix-link-btn {
  display: inline-block;
}

.pix-qr-api-wrap {
  text-align: center;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  max-width: 220px;
  margin-top: 4px;
}

.pix-qr-wrap {
  text-align: center;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  max-width: 220px;
  margin-top: 8px;
}

.pix-qr-img {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.pix-qr-img--api {
  max-width: 100%;
  height: auto;
}

.pix-qr-caption {
  font-size: 0.75rem;
  color: #374151;
  margin-top: 8px;
  margin-bottom: 0;
}

.pix-placeholder-text {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.5;
  margin: 0;
}

.hidden {
  display: none;
}

/* Rodapé — layout profissional */
.footer {
  margin-top: auto;
  background: linear-gradient(180deg, #0f172a 0%, #020617 55%);
  border-top: 1px solid rgba(34, 197, 94, 0.12);
  padding: 2.25rem 0 1.75rem;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}

.footer-brand {
  min-width: min(100%, 220px);
}

.footer-logo {
  display: inline-block;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  color: #f9fafb;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-logo:hover {
  opacity: 0.92;
}

.footer-logo span {
  color: #22c55e;
}

.footer-tagline {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.4;
  max-width: 260px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e7eb;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #22c55e;
  transition: width 0.2s ease;
}

.footer-nav a:hover {
  color: #f1f5f9;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-nav a[aria-current="page"] {
  color: #22c55e;
  pointer-events: none;
}

.footer-nav a[aria-current="page"]::after {
  width: 100%;
}

.footer-divider {
  height: 1px;
  margin: 1.35rem 0 1.1rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(148, 163, 184, 0.22) 20%,
    rgba(148, 163, 184, 0.22) 80%,
    transparent 100%
  );
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-copy {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
}

.footer-note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #9ca3af;
  max-width: 640px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #9ca3af;
  max-width: 640px;
}

.footer-legal-links {
  margin-top: 0.15rem;
}

.footer-legal-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #cbd5e1;
  border-bottom-color: rgba(34, 197, 94, 0.5);
}

/* Suporte/política: mesmo rodapé escuro da index; só afasta do conteúdo claro */
.support-page .footer {
  margin-top: 2.5rem;
}

/* FAQ */
.faq-section {
  background: #f3f4f6;
}

.faq-grid {
  max-width: 820px;
  margin: 18px auto 0;
}

.faq-item {
  padding: 18px 20px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.faq-question {
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.faq-answer {
  font-size: 0.9rem;
  color: #4b5563;
}

/* CTA final */
.final-cta {
  text-align: center;
}

.final-cta p {
  margin-top: 6px;
  color: #6b7280;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #22c55e;
  color: #020617;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
}

.whatsapp-float a:hover {
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
  transform: translateY(-1px);
}

.whatsapp-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .plan-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .nav {
    gap: 12px;
    font-size: 0.8rem;
  }

  .topbar-inner {
    padding-inline: 4px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 24px;
    height: 24px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 12px 16px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-float a {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}


