/* ══════════════════════════════════════════
   SNIPPETS — Componentes visuais do guia
   Partilhado entre site público e backoffice
   ══════════════════════════════════════════ */

/* ──────── 1. CALLOUT BOX ──────── */
.snippet-callout {
  background: rgba(226,255,61,0.04);
  border: 1px solid rgba(226,255,61,0.15);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
}

.snippet-callout-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.snippet-callout p {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.snippet-callout p:last-of-type {
  margin-bottom: 0;
}

.snippet-callout-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(226,255,61,0.12);
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}

/* ──────── 2. NUMBERED STEPS ──────── */
.snippet-steps {
  margin: 36px 0;
}

.snippet-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.snippet-step:first-child {
  padding-top: 0;
}

.snippet-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.snippet-step-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--text-tertiary);
  line-height: 1;
  min-width: 48px;
  opacity: 0.5;
}

.snippet-step.active .snippet-step-num {
  color: var(--accent);
  opacity: 1;
}

.snippet-step-body {
  flex: 1;
}

.snippet-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}

.snippet-step.active .snippet-step-title {
  color: var(--accent);
}

.snippet-step-body p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 15.5px;
  line-height: 1.65;
}

.snippet-step-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid rgba(226,255,61,0.3);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ──────── 3. TIER / PRICING LADDER ──────── */
.snippet-tiers {
  margin: 36px 0;
}

.snippet-tier {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.snippet-tier:first-child {
  padding-top: 0;
}

.snippet-tier:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.snippet-tier-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  min-width: 90px;
  letter-spacing: -0.02em;
}

.snippet-tier-body {
  flex: 1;
}

.snippet-tier-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}

.snippet-tier-body p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

/* ──────── 4. CONTRAST BLOCK ──────── */
.snippet-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.snippet-contrast-col {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.snippet-contrast-col.wrong {
  background: rgba(248,113,113,0.03);
  border-color: rgba(248,113,113,0.15);
}

.snippet-contrast-col.right {
  background: rgba(74,222,128,0.03);
  border-color: rgba(74,222,128,0.15);
}

.snippet-contrast-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.snippet-contrast-col.wrong .snippet-contrast-label {
  color: #F87171;
}

.snippet-contrast-col.right .snippet-contrast-label {
  color: #4ADE80;
}

.snippet-contrast-col p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.snippet-contrast-col p:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .snippet-contrast {
    grid-template-columns: 1fr;
  }
}

/* ──────── 5. PULL QUOTE ──────── */
.snippet-pullquote {
  text-align: center;
  padding: 40px 32px;
  margin: 40px 0;
  position: relative;
}

.snippet-pullquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.snippet-pullquote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.snippet-pullquote-source {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ──────── 6. KEY METRIC / STAT ──────── */
.snippet-metrics {
  display: flex;
  gap: 16px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.snippet-metric {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.snippet-metric-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.snippet-metric-label {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* Single metric (não em grupo) */
.snippet-metric-single {
  text-align: center;
  padding: 36px 20px;
  margin: 36px 0;
}

.snippet-metric-single .snippet-metric-value {
  font-size: 48px;
  margin-bottom: 10px;
}

.snippet-metric-single .snippet-metric-label {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ──────── 7. CONCEPT CARD ──────── */
.snippet-concept {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 2px 8px 8px 2px;
  padding: 24px 28px;
  margin: 36px 0;
}

.snippet-concept-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.snippet-concept p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 15.5px;
  line-height: 1.7;
}

.snippet-concept p:last-child {
  margin-bottom: 0;
}
