SectionHero.vue 1.3 KB

12345678910111213141516171819202122
  1. <template>
  2. <section class="bg-[url('/img/hero_bg.png')] bg-cover h-screen flex justify-center">
  3. <AppHeader />
  4. <div class="w-[1241px] flex justify-between items-center absolute bottom-20">
  5. <div class="flex flex-col gap-5 w-1/2">
  6. <NuxtImg src="/img/logo.png" width="308" />
  7. <h1 class="max-w-[620px] text-[46px] font-bold text-gradient">
  8. Não apenas planeje. Execute sua expansão internacional com segurança.
  9. </h1>
  10. </div>
  11. <div class="flex flex-col gap-5 w-1/2 max-w-[516px]">
  12. <p class="text-white text-2xl font-medium">
  13. A Iguassu Alliance conecta sua empresa ao ecossistema de negócios do Paraguai através da 5ª edição do programa estratégico
  14. </p>
  15. <button class="group self-start bg-linear-to-r from-[#8DC63F] to-[#5F980F] text-white text-2xl font-semibold flex items-center gap-3 border border-[#E3FA6D] rounded-lg py-6 px-8 whitespace-nowrap transition-all duration-300 ease-in-out hover:scale-[1.03] hover:shadow-[0_0_28px_rgba(227,250,109,0.45)] hover:brightness-110 cursor-pointer">
  16. Fale com o um especialista agora!
  17. <NuxtImg src="/img/cta_btn_icon.svg" width="30" class="transition-transform duration-300 group-hover:translate-x-1.5" />
  18. </button>
  19. </div>
  20. </div>
  21. </section>
  22. </template>