{{-- Título reutilizable con estilos consistentes Uso: @include('emails.partials.heading', ['level' => 2, 'text' => 'Mi título']) level: 2, 3, 4 (corresponde a h2, h3, h4) --}} @php $level = $level ?? 2; $tag = 'h' . $level; $sizes = ['2' => '22px', '3' => '18px', '4' => '16px']; $size = $sizes[$level] ?? '18px'; @endphp <{{ $tag }} style="margin: 24px 0 16px; font-size: {{ $size }}; color: #1f5ba8; font-weight: 700; line-height: 1.3;"> {{ $text ?? $slot }}