SectionDestinations.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. <CtaButton class="self-stretch lg:self-start justify-center" />
  37. </div>
  38. </section>
  39. </template>