﻿/* Hub de Guias - alinhado a wiki da loja */
.guides-hero {
  background: linear-gradient(135deg, #0f766e 0%, #155e75 100%);
  color: #fff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 18px;
}

.guides-hero h1 {
  margin: 0 0 8px;
  font-weight: 700;
}

.guides-hero p {
  margin: 0;
  color: #d1fae5;
  max-width: 920px;
}

.guides-badges {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guides-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
}

.guides-section {
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  margin-bottom: 14px;
}

.guides-section h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: #155e75;
  font-weight: 700;
}

.guide-card {
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  padding: 14px;
  height: 100%;
  background: #f8fafc;
}

.guide-card h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: #0f172a;
  font-weight: 700;
}

.guide-card p {
  margin: 0 0 10px;
  color: #334155;
  font-size: 0.92rem;
}

.label-chip {
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 3px 8px;
  margin-bottom: 8px;
  background: #ecfeff;
  border: 1px solid #a5f3fc;
  color: #155e75;
  font-weight: 700;
}

.stack-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stack-note {
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.stack-note strong {
  display: block;
  margin-bottom: 6px;
  color: #155e75;
}

.stack-note p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .stack-note-grid {
    grid-template-columns: 1fr;
  }
}


