SectionDestinations.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <section class="bg-[url('/img/destinations_bg.png')] bg-cover bg-center py-12 md:py-16 lg:py-26 flex justify-center lg:justify-end">
  3. <div class="w-full px-4 lg:w-[85%] xl:w-8/10 lg:px-2 flex flex-col gap-6 md:gap-10">
  4. <div class="flex flex-col gap-2 lg:gap-5">
  5. <h1 class="text-3xl md:text-4xl lg:text-[45px] font-bold uppercase text-white lg:leading-6">
  6. Próximos destinos...
  7. </h1>
  8. <p class="text-base md:text-lg lg:text-xl text-white font-medium">
  9. Veja as oportunidades que temos pela Frente!
  10. </p>
  11. </div>
  12. <div class="grid grid-cols-1 md:grid-cols-2 lg:flex lg:flex-row lg:items-center lg:justify-between gap-4 md:gap-6 xl:gap-8">
  13. <div class="md:col-span-2 lg:contents">
  14. <DestinationCard
  15. image="/img/paraguay.png"
  16. name="Em breve Paraguay"
  17. date="18/19 de Maio"
  18. class="h-[260px] sm:h-[300px] lg:h-[390px] lg:w-[630px] bg-position-[center_15%]! md:bg-position-[center_20%] lg:bg-position-[center_40%]"
  19. />
  20. </div>
  21. <DestinationCard
  22. image="/img/china.jpg"
  23. label="Em breve"
  24. name="China"
  25. class="h-40 sm:h-50 lg:h-[280px] lg:w-md"
  26. bg-position-class="md:bg-bottom lg:bg-position-[center_380%]"
  27. />
  28. <DestinationCard
  29. image="/img/dubai.jpg"
  30. label="Em breve"
  31. name="Dubai"
  32. class="h-40 md:h-50 lg:h-[280px] lg:w-md"
  33. bg-position-class="md:bg-bottom lg:bg-position-[center_800%]"
  34. />
  35. </div>
  36. <button
  37. class="self-stretch lg:self-start group bg-linear-to-r from-[#8DC63F] to-[#5F980F] text-white text-base md:text-lg lg:text-[23px] font-semibold flex justify-center items-center gap-4 border border-[#E3FA6D] rounded-lg py-3 px-8 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">
  38. Fale com um especialista agora!
  39. <NuxtImg
  40. src="/img/cta_btn_icon.svg"
  41. class="w-6 md:w-8 lg:w-10 transition-transform duration-300 group-hover:translate-x-1.5"
  42. />
  43. </button>
  44. </div>
  45. </section>
  46. </template>