/* Hero compacto para la página de reporte de incidentes */

.report-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 0.5rem;
}

/* Grid de items informativos */
.report-hero .info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin: 1.75rem auto 0;
}

.report-hero .info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.report-hero .info-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

/* Icono con gradiente y ring */
.report-hero .info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15);
}

.report-hero .info-icon svg {
  width: 24px;
  height: 24px;
}

/* Tipografía y colores */
.report-hero .info-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary, #fff);
}

.report-hero .info-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary, #9ca3af);
  line-height: 1.55;
}

/* Badge de confianza */
.report-hero .trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.25rem auto 0;
  padding: 0.75rem 1.25rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 10px;
  max-width: fit-content;
}

.report-hero .trust-badge svg {
  color: #10b981;
  flex-shrink: 0;
}

.report-hero .trust-badge span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .report-hero .info-box {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.25rem auto 0;
  }

  .report-hero .info-icon {
    width: 40px;
    height: 40px;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
  }

  .report-hero .info-icon svg {
    width: 20px;
    height: 20px;
  }

  .report-hero .trust-badge {
    margin: 2rem auto 0;
    padding: 0.625rem 1rem;
    max-width: 90%;
  }

  .report-hero .trust-badge span {
    font-size: 0.8125rem;
    text-align: center;
  }
}