FaqSection.vue 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <section class="w-full bg-[#F6FFE9] py-18">
  3. <div class="max-w-[1200px] mx-auto flex justify-between gap-30">
  4. <div class="flex flex-col gap-4 itens-center">
  5. <span class="inline-flex items-center justify-center max-w-[127px] h-[53.05px] rounded-full
  6. border-[1.55px] border-[#8DC63F] 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-4">
  13. <div class="min-w-[677px] bg-[#0C0D17] border border-white/10 rounded-3xl 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-3xl 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-3xl 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-3xl 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-3xl 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. import { ref } from 'vue'
  49. const openIndex = ref<number | null>(null)
  50. function toggleIsOpen(indexClicked: number) {
  51. openIndex.value = openIndex.value === indexClicked ? null : indexClicked
  52. }
  53. </script>