FaqSection.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <section class="w-full bg-[#F6FFE9] py-24">
  3. <div class="max-w-[1200px] mx-auto flex items-start justify-between gap-16">
  4. <div class="flex flex-col items-start gap-4">
  5. <span class="inline-flex items-center justify-center w-[127px] h-[53.05px] rounded-[154.87px]
  6. border-[1.55px] border-[var(--color-primary)] bg-[var(--color-primary)] text-white text-2xl font-bold">
  7. FAQ</span>
  8. <p style="font-family: var(--font-inter)" class="font-semibold text-[88px] leading-[106px] tracking-[-0.03em]">
  9. Perguntas <br>Frequentes
  10. </p>
  11. </div>
  12. <div class="flex flex-col items-end gap-5">
  13. <div class="w-[677px] h-20 bg-[#0C0D17] border border-white/10 rounded-[25px] px-8 py-7 flex items-center justify-between">
  14. <p class="font-inter font-normal text-[21.07px] leading-[31.61px] text-white">
  15. A Kyon substitui todos os sistemas que uso hoje?
  16. </p>
  17. <span class="text-white text-[26.34px] leading-none">+</span>
  18. </div>
  19. <div class="w-[677px] h-20 bg-[#0C0D17] border border-white/10 rounded-[25px] px-8 py-7 flex items-center justify-between">
  20. <p class="font-inter font-normal text-[21.07px] leading-[31.61px] text-white">
  21. Como funciona o Prontuário unificado?
  22. </p>
  23. <span class="text-white text-[26.34px] leading-none">+</span>
  24. </div>
  25. <div class="w-[677px] h-20 bg-[#0C0D17] border border-white/10 rounded-[25px] px-8 py-7 flex items-center justify-between">
  26. <p class="font-inter font-normal text-[21.07px] leading-[31.61px] text-white">
  27. O agente de IA realmente atende pacientes no WhatsApp?
  28. </p>
  29. <span class="text-white text-[26.34px] leading-none">+</span>
  30. </div>
  31. <div class="w-[677px] h-20 bg-[#0C0D17] border border-white/10 rounded-[25px] px-8 py-7 flex items-center justify-between">
  32. <p class="font-inter font-normal text-[21.07px] leading-[31.61px] text-white">
  33. A telemedicina é integrada ou preciso de outra plataforma?
  34. </p>
  35. <span class="text-white text-[26.34px] leading-none">+</span>
  36. </div>
  37. <div class="w-[677px] h-20 bg-[#0C0D17] border border-white/10 rounded-[25px] px-8 py-7 flex items-center justify-between">
  38. <p class="font-inter font-normal text-[21.07px] leading-[31.61px] text-white">
  39. Como funciona a auditoria LGPD?
  40. </p>
  41. <span class="text-white text-[26.34px] leading-none">+</span>
  42. </div>
  43. </div>
  44. </div>
  45. </section>
  46. </template>
  47. <script setup lang="ts">
  48. </script>