{{-- Full screen overlay that cannot be closed --}}
{{-- Main container --}}
{{-- Logo --}} {{-- Progress indicator --}}
@for ($i = 1; $i <= 3; $i++)
@if ($i < 3)
@endif @endfor
Paso {{ $currentStep }} de 3
{{-- Step 1: Event Type --}} @if($currentStep === 1)

¿Qué gran día vamos a organizar?

Selecciona el tipo de evento que celebrarás

@foreach($eventTypes as $eventType) @endforeach
@endif {{-- Step 2: Month Selection --}} @if($currentStep === 2)

¿En qué mes será el festejo?

No te preocupes, podrás cambiar la fecha exacta más adelante.

@php $months = [ 1 => 'Ene', 2 => 'Feb', 3 => 'Mar', 4 => 'Abr', 5 => 'May', 6 => 'Jun', 7 => 'Jul', 8 => 'Ago', 9 => 'Sep', 10 => 'Oct', 11 => 'Nov', 12 => 'Dic' ]; $monthsFull = [ 1 => 'Enero', 2 => 'Febrero', 3 => 'Marzo', 4 => 'Abril', 5 => 'Mayo', 6 => 'Junio', 7 => 'Julio', 8 => 'Agosto', 9 => 'Septiembre', 10 => 'Octubre', 11 => 'Noviembre', 12 => 'Diciembre' ]; @endphp
@foreach($months as $monthNum => $monthName) @php $isHighlighted = in_array($monthNum, $highlightedMonths); $isCurrent = $monthNum === $currentMonth; @endphp @endforeach
@endif {{-- Step 3: Country Selection --}} @if($currentStep === 3)

Por último, ¿desde qué país nos visitas?

Esto nos ayuda a personalizar tu experiencia

{{-- Country Search Input --}}
{{-- Country Dropdown --}}
@forelse($filteredCountries as $country) @empty
No se encontraron países
@endforelse
{{-- Selected Country Display --}} @if($selectedCountry) @php $selected = collect($countries)->firstWhere('code', $selectedCountry); @endphp
{{ $selected['flag'] ?? '' }} {{ $selected['name'] ?? '' }}
@endif {{-- Final CTA Button --}}
@endif {{-- Loading overlay during transitions --}}
{{-- Scoped styles for onboarding --}}