@extends('layout.front.master') @section('title', config('site.name') . ' | ' . config('site.tagline', __('Welcome'))) @section('description', config('site.seo.description') ?? config('site.description', '')) @section('keywords', config('site.seo.keywords') ?? '') {{-- Open Graph Meta Tags --}} @section('og_title', config('site.name')) @section('og_description', config('site.og.description') ?? config('site.description', '')) @section('og_image', brand_og_image()) @section('og_type', 'website') @section('og_url', url()->current()) {{-- Twitter Card Meta Tags --}} @section('twitter_title', config('site.name')) @section('twitter_description', config('site.twitter.description') ?? config('site.description', '')) @section('twitter_image', brand_twitter_image()) @section('content') {{-- ══════════════════════════════════════════════════════════ HERO ══════════════════════════════════════════════════════════ --}}
{{-- Columna de contenido --}}

{!! config('site.welcome.hero_line1', config('site.tagline', __('Welcome'))) !!}
{!! config('site.welcome.hero_line2', '') !!}

{{ config('site.welcome.hero_subpoint_1', __('100% digital')) }}

{{ config('site.welcome.hero_subpoint_2', __('Simple, ágil y seguro.')) }}

{{-- Partners --}} @php $partners = config('site.welcome.partners', []); if (is_string($partners)) { $partners = json_decode($partners, true) ?? []; } @endphp @if(!empty($partners))

{{ config('site.welcome.partners_label', __('Our Partners')) }}

@foreach($partners as $partner) @endforeach
@if(config('site.welcome.hero_footnote'))

{{ config('site.welcome.hero_footnote') }}

@endif
@endif
{{-- Columna visual --}}
{{-- ══════════════════════════════════════════════════════════ ABOUT US (Piedra) ══════════════════════════════════════════════════════════ --}}

{{ config('site.welcome.about_heading', __('About Us')) }}

Separator

{{ config('site.welcome.about_subtitle', '') }}

@if(config('site.welcome.about_subtitle_accent'))

{{ config('site.welcome.about_subtitle_accent') }}

@endif
@if(config('site.welcome.about_footnote'))

{{ config('site.welcome.about_footnote') }}

@endif
{{-- ══════════════════════════════════════════════════════════ FINANZAS ══════════════════════════════════════════════════════════ --}}

{{ config('site.welcome.section2_heading', config('site.tagline', __('Welcome'))) }}

{{ config('site.welcome.section2_cta', __('CONTACT US')) }}
Data Visualization

{{ config('site.welcome.process_heading', __('Our Process')) }}

@php $steps = config('site.welcome.process_steps', []); if (is_string($steps)) { $steps = json_decode($steps, true) ?? []; } @endphp @if(!empty($steps))
    @foreach($steps as $index => $step)
  • {{ is_array($step) ? ($step['text'] ?? '') : $step }}
  • @endforeach
@endif

{{ config('site.welcome.process_description', config('site.description', '')) }}

{{-- ══════════════════════════════════════════════════════════ INSTRUMENTOS (Stack Cards) — config-driven ══════════════════════════════════════════════════════════ --}} @php $instruments = config('site.welcome.instruments', []); if (is_string($instruments)) { $instruments = json_decode($instruments, true) ?? []; } @endphp @if(!empty($instruments))

{!! config('site.welcome.instruments_heading', __('What We Offer')) !!}

{{ config('site.welcome.instruments_subtitle', '') }}

@foreach($instruments as $index => $instrument)
{{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }}

{!! str_replace(['\n', "\n"], '
', e($instrument['title'] ?? '')) !!}

@if(!empty($instrument['description']))

{{ $instrument['description'] }}

@endif @if(!empty($instrument['checks']))
    @foreach($instrument['checks'] as $check)
  • {{ is_array($check) ? ($check['text'] ?? '') : $check }}
  • @endforeach
@endif
@if(!empty($instrument['image']))
{{ strip_tags($instrument['title'] ?? '') }}
@endif
@endforeach
@endif {{-- ══════════════════════════════════════════════════════════ EJES CENTRALES (Evolution / Pillars) ══════════════════════════════════════════════════════════ --}}
{{ config('site.welcome.evolution_eyebrow', config('site.name')) }}

{{ config('site.welcome.evolution_heading', config('site.tagline', __('Welcome'))) }}

{{ config('site.welcome.evolution_description', config('site.description', '')) }}

{{ config('site.welcome.pillars_heading', __('Our Core Values')) }}


@php $pillars = config('site.welcome.pillars', []); if (is_string($pillars)) { $pillars = json_decode($pillars, true) ?? []; } @endphp @foreach($pillars as $pillar)
{{ $pillar['eyebrow'] ?? '' }}
{{ $pillar['title'] ?? '' }}

{{ $pillar['text'] ?? '' }}

@endforeach
{{-- ══════════════════════════════════════════════════════════ SERVICIOS HOME — Dynamic from DB ══════════════════════════════════════════════════════════ --}} @if(is_module_active('services') && isset($services) && $services->isNotEmpty())
@php $servicesConfig = get_module_page_header_config('services'); $servicesTitle = $servicesConfig['title'] ?? config('cd-system.modules.services.name', __('Services')); @endphp {{ $servicesTitle }}

{{ config('site.welcome.services_heading', __('Why choose')) }} {{ config('site.name') }}


@foreach($services->take(3) as $service)
@if($service->subtitle) {{ $service->subtitle }} @endif

{{ $service->title }}

@if($service->description)

{{ Str::limit(strip_tags($service->description), 155) }}

@endif {{ __('Ver más') }}
@endforeach
@endif {{-- ══════════════════════════════════════════════════════════ CONTACTO SPLIT ══════════════════════════════════════════════════════════ --}}

{{ config('site.welcome.contact_heading', __('Contact Us')) }}

{{ config('site.welcome.contact_subtitle', config('site.description', '')) }}

@csrf
{{ __('¡Listo!') }} {{ __('Tu mensaje fue enviado correctamente.') }}
{{ __('Error.') }} {{ __('No se pudo enviar el mensaje.') }}

{{ config('site.welcome.cta_heading', __('Get in touch with us today')) }}

{{ config('site.welcome.cta_description', config('site.description', '')) }}

{{ config('site.contact.address', '') }}

{{ config('site.welcome.about_cta_label', __('Conócenos')) }}
@endsection