/* ============================================================
   ÍCONES SVG INLINE — Estilo Canva premium (Robilotti reference)
   Todos outline, stroke vermelho, 1.5pt. Não precisa de fonte externa.
   ============================================================ */

.icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--red);
}
.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon.lg { width: 56px; height: 56px; }
.icon.xl { width: 80px; height: 80px; }
.icon.xxl { width: 120px; height: 120px; }
.icon.white { color: var(--white); }
.icon.gray { color: var(--gray); }

.icon-circle {
  display: inline-flex;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.12), rgba(225, 29, 46, 0.03));
  border: 1px solid rgba(225, 29, 46, 0.3);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.icon-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(225, 29, 46, 0.15), transparent 70%);
}
.icon-circle .icon {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
}
.icon-circle.lg { width: 120px; height: 120px; }
.icon-circle.lg .icon { width: 56px; height: 56px; }
