/* Radar Chat site v1 — Programa de Afiliados (estilos específicos da página) */

.page-afiliados .fab-wa { display: none; }

/* Hero */
.aff-hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.aff-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.aff-hero-media {
  position: relative;
}
.aff-hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bloco introdutório (O que é o programa) */
.aff-intro {
  max-width: 760px;
}
.aff-intro p + p { margin-top: 12px; }
.aff-intro-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.aff-intro-points li {
  padding-left: 16px;
  position: relative;
  color: var(--rc-muted);
  font-size: 0.94rem;
}
.aff-intro-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--rc-accent);
}

/* Como funciona — 5 etapas */
.aff-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aff-step {
  position: relative;
  padding: 26px 20px 22px;
  border-radius: var(--rc-radius);
  border: 1px solid var(--rc-border);
  background: var(--rc-surface);
  text-align: center;
}
.aff-step-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--rc-surface-raised);
  border: 1px solid var(--rc-border);
  color: var(--rc-muted);
  font-weight: 700;
  font-size: 0.68rem;
}
.aff-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: block;
}
.aff-step h3 {
  margin: 0 0 6px;
  font-family: var(--rc-display);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.aff-step p {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* Para quem é — nota de rodapé da seção */
.aff-persona-note {
  margin: 20px auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--rc-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Preview do painel */
.aff-dashboard-card {
  max-width: 960px;
  margin: 0 auto;
}
.aff-dashboard-card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--rc-mock-bg);
}
.aff-mockup-caption {
  margin: 14px 0 0;
  text-align: center;
  color: var(--rc-muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* FAQ nativo com <details>/<summary> */
.aff-faq {
  display: grid;
  gap: 8px;
}
.aff-faq-item {
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-sm);
  background: var(--rc-surface);
  overflow: hidden;
}
.aff-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--rc-ink);
}
.aff-faq-item summary::-webkit-details-marker { display: none; }
.aff-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--rc-muted);
  transition: transform 0.15s ease;
}
.aff-faq-item[open] summary::after {
  content: '\2212';
}
.aff-faq-item[open] {
  border-color: color-mix(in srgb, var(--rc-accent) 30%, var(--rc-border));
}
.aff-faq-body {
  padding: 0 16px 16px;
  color: var(--rc-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .aff-steps { flex-direction: row; }
  .aff-step { flex: 1; }
}

@media (min-width: 960px) {
  .aff-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
}
