@prosistemas/sca-web-kit 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/README.md +33 -0
  2. package/assets/icons/newsletter-success.svg +85 -0
  3. package/assets/icons/not-found.svg +36 -0
  4. package/assets/logos/sca/sca-s-gradient.svg +9 -0
  5. package/dist/components/layout/footer/footer.d.ts +1 -0
  6. package/dist/components/layout/footer/footer.js +11 -0
  7. package/dist/components/layout/footer/footer.module.scss +198 -0
  8. package/dist/components/shared/autoplayer/autoplayer-row/autoplayer-row.d.ts +8 -0
  9. package/dist/components/shared/autoplayer/autoplayer-row/autoplayer-row.js +11 -0
  10. package/dist/components/shared/autoplayer/autoplayer-row/autoplayer-row.module.scss +43 -0
  11. package/dist/components/shared/autoplayer/autoplayer.d.ts +1 -0
  12. package/dist/components/shared/autoplayer/autoplayer.js +16 -0
  13. package/dist/components/shared/autoplayer/autoplayer.module.scss +20 -0
  14. package/dist/components/shared/footer-banner/footer-banner.d.ts +1 -0
  15. package/dist/components/shared/footer-banner/footer-banner.js +9 -0
  16. package/dist/components/shared/footer-banner/footer-banner.module.scss +103 -0
  17. package/dist/components/shared/footer-banner-autoplayer/footer-banner-autoplayer.d.ts +3 -0
  18. package/dist/components/shared/footer-banner-autoplayer/footer-banner-autoplayer.js +10 -0
  19. package/dist/components/shared/footer-banner-autoplayer/footer-banner-autoplayer.module.scss +108 -0
  20. package/dist/components/shared/index-header/index-header.d.ts +2 -0
  21. package/dist/components/shared/index-header/index-header.js +35 -0
  22. package/dist/components/shared/index-header/index-header.module.scss +17 -0
  23. package/dist/components/shared/index-header/indexed-section-button/indexed-section-button.d.ts +6 -0
  24. package/dist/components/shared/index-header/indexed-section-button/indexed-section-button.js +8 -0
  25. package/dist/components/shared/index-header/indexed-section-button/indexed-section-button.module.scss +38 -0
  26. package/dist/components/shared/info-header/info-header.d.ts +18 -0
  27. package/dist/components/shared/info-header/info-header.js +14 -0
  28. package/dist/components/shared/info-header/info-header.module.scss +10 -0
  29. package/dist/components/shared/newsletter-modal/newsletter-modal.d.ts +4 -0
  30. package/dist/components/shared/newsletter-modal/newsletter-modal.js +10 -0
  31. package/dist/components/shared/newsletter-modal/newsletter-modal.module.scss +47 -0
  32. package/dist/components/shared/newsletter-modal-dialog/newsletter-modal-dialog.d.ts +5 -0
  33. package/dist/components/shared/newsletter-modal-dialog/newsletter-modal-dialog.js +11 -0
  34. package/dist/components/shared/newsletter-modal-dialog/newsletter-modal-dialog.module.scss +15 -0
  35. package/dist/components/shared/newsletter-strip/newsletter-strip.d.ts +7 -0
  36. package/dist/components/shared/newsletter-strip/newsletter-strip.js +10 -0
  37. package/dist/components/shared/newsletter-strip/newsletter-strip.module.scss +128 -0
  38. package/dist/components/shared/phone/phone.d.ts +6 -0
  39. package/dist/components/shared/phone/phone.js +16 -0
  40. package/dist/components/shared/phone/phone.module.scss +322 -0
  41. package/dist/components/shared/success-cases/success-cases-swiper/success-case-card/success-case-card.d.ts +10 -0
  42. package/dist/components/shared/success-cases/success-cases-swiper/success-case-card/success-case-card.js +9 -0
  43. package/dist/components/shared/success-cases/success-cases-swiper/success-case-card/success-case-card.module.scss +154 -0
  44. package/dist/components/shared/success-cases/success-cases-swiper/success-cases-swiper.d.ts +3 -0
  45. package/dist/components/shared/success-cases/success-cases-swiper/success-cases-swiper.js +15 -0
  46. package/dist/components/shared/success-cases/success-cases-swiper/success-cases-swiper.module.scss +81 -0
  47. package/dist/components/shared/success-cases/success-cases.d.ts +5 -0
  48. package/dist/components/shared/success-cases/success-cases.js +9 -0
  49. package/dist/components/shared/success-cases/success-cases.module.scss +60 -0
  50. package/dist/components/shared/support-sticky-button/support-sticky-button.d.ts +1 -0
  51. package/dist/components/shared/support-sticky-button/support-sticky-button.js +7 -0
  52. package/dist/components/shared/support-sticky-button/support-sticky-button.module.scss +63 -0
  53. package/dist/components/ui/accordion/accordion.d.ts +4 -0
  54. package/dist/components/ui/accordion/accordion.js +7 -0
  55. package/dist/components/ui/accordion/accordion.module.scss +114 -0
  56. package/dist/components/ui/button/button.d.ts +34 -0
  57. package/dist/components/ui/button/button.js +31 -0
  58. package/dist/components/ui/button/button.module.scss +22 -0
  59. package/dist/components/ui/decal/decal.d.ts +6 -0
  60. package/dist/components/ui/decal/decal.js +9 -0
  61. package/dist/components/ui/decal/decal.module.scss +7 -0
  62. package/dist/components/ui/icon-with-background/icon-with-background.d.ts +13 -0
  63. package/dist/components/ui/icon-with-background/icon-with-background.js +22 -0
  64. package/dist/components/ui/icon-with-background/icon-with-background.module.scss +18 -0
  65. package/dist/components/ui/progress-bar/progress-bar.d.ts +5 -0
  66. package/dist/components/ui/progress-bar/progress-bar.js +9 -0
  67. package/dist/components/ui/progress-bar/progress-bar.module.scss +12 -0
  68. package/dist/components/ui/pulse-effect/pulse-effect.d.ts +1 -0
  69. package/dist/components/ui/pulse-effect/pulse-effect.js +5 -0
  70. package/dist/components/ui/pulse-effect/pulse-effect.module.scss +63 -0
  71. package/dist/components/ui/stacks/stacks.d.ts +1 -0
  72. package/dist/components/ui/stacks/stacks.js +5 -0
  73. package/dist/components/ui/stacks/stacks.module.scss +32 -0
  74. package/dist/components/ui/subtitle/subtitle.d.ts +5 -0
  75. package/dist/components/ui/subtitle/subtitle.js +7 -0
  76. package/dist/components/ui/subtitle/subtitle.module.scss +8 -0
  77. package/dist/components/ui/tag-label/tag-label.d.ts +18 -0
  78. package/dist/components/ui/tag-label/tag-label.js +15 -0
  79. package/dist/components/ui/tag-label/tag-label.module.scss +17 -0
  80. package/dist/components/ui/three-dots/three-dots.d.ts +3 -0
  81. package/dist/components/ui/three-dots/three-dots.js +5 -0
  82. package/dist/components/ui/three-dots/three-dots.module.scss +28 -0
  83. package/dist/components/ui/title/title.d.ts +8 -0
  84. package/dist/components/ui/title/title.js +10 -0
  85. package/dist/components/ui/title/title.module.scss +8 -0
  86. package/dist/fonts.d.ts +2 -0
  87. package/dist/fonts.js +9 -0
  88. package/dist/index.d.ts +26 -0
  89. package/dist/index.js +29 -0
  90. package/dist/styles/variables.scss +50 -0
  91. package/dist/types/index.d.ts +7 -0
  92. package/dist/types/index.js +1 -0
  93. package/package.json +39 -0
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # SCA Web Kit
2
+
3
+ Componentes reutilizáveis para projetos de desenvolvimento web do Sistema SCA que utilizam a framework [NextJS](https://nextjs.org/).
4
+
5
+ ## Uso
6
+
7
+ 1. Em seu projeto com NextJS (versão >= 15.0), adicione o pacote através do seu gerenciador de pacotes:
8
+
9
+ via HTTPS:
10
+
11
+ ```sh
12
+ pnpm install git+https://github.com/ezboy4life/sca-web-kit.git
13
+ ```
14
+
15
+ ou via SSH:
16
+
17
+ ```sh
18
+ pnpm install git+git@github.com:ezboy4life/sca-web-kit.git
19
+ ```
20
+
21
+ 2. Se o pacote foi instalado com sucesso, basta usar importar os componentes e usá-los em seu código:
22
+
23
+ ```typescript
24
+ import { Button } from 'sca-web-kit';
25
+
26
+ export default function Home() {
27
+ return (
28
+ <div>
29
+ <Button label='Cadastrar' />
30
+ </div>
31
+ )
32
+ }
33
+ ```
@@ -0,0 +1,85 @@
1
+ <svg width="190" height="178" viewBox="0 0 190 178" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M95.066 126.5C127.866 126.5 154.466 100.1 154.466 67.4995C154.466 34.8995 127.866 8.49951 95.066 8.49951C62.266 8.49951 35.666 34.8995 35.666 67.4995C35.666 100.1 62.266 126.5 95.066 126.5Z" fill="url(#paint0_linear_8215_22978)"/>
3
+ <path d="M152.948 39.2996C155.212 39.2996 157.048 37.464 157.048 35.1996C157.048 32.9352 155.212 31.0996 152.948 31.0996C150.683 31.0996 148.848 32.9352 148.848 35.1996C148.848 37.464 150.683 39.2996 152.948 39.2996Z" fill="#BDE8FF"/>
4
+ <path d="M148.851 25.9994C150.397 25.9994 151.651 24.7458 151.651 23.1994C151.651 21.653 150.397 20.3994 148.851 20.3994C147.304 20.3994 146.051 21.653 146.051 23.1994C146.051 24.7458 147.304 25.9994 148.851 25.9994Z" fill="#BDE8FF"/>
5
+ <path d="M35.4484 35.1996C36.9948 35.1996 38.2484 33.946 38.2484 32.3996C38.2484 30.8532 36.9948 29.5996 35.4484 29.5996C33.902 29.5996 32.6484 30.8532 32.6484 32.3996C32.6484 33.946 33.902 35.1996 35.4484 35.1996Z" fill="#BDE8FF"/>
6
+ <path d="M29.1492 96.7994C32.0211 96.7994 34.3492 94.4713 34.3492 91.5994C34.3492 88.7275 32.0211 86.3994 29.1492 86.3994C26.2773 86.3994 23.9492 88.7275 23.9492 91.5994C23.9492 94.4713 26.2773 96.7994 29.1492 96.7994Z" fill="#BDE8FF"/>
7
+ <g filter="url(#filter0_d_8215_22978)">
8
+ <path d="M149.792 52.8925V107.033C149.792 107.256 149.792 107.368 149.792 107.591C149.68 110.717 148.229 113.396 145.996 115.294C144.099 116.968 141.531 118.085 138.74 118.085H51.334C49.4363 118.085 47.6502 117.638 46.0874 116.745C45.4176 116.41 44.7478 115.964 44.1897 115.405C42.9617 114.401 41.8454 112.95 41.2873 111.387C40.8407 110.27 40.5059 109.043 40.5059 107.815V52.8925C40.5059 52.8925 45.0827 48.9855 51.6689 43.6272C58.4783 37.9341 67.4087 30.5665 75.2229 24.0919C79.6881 20.2965 79.2415 20.743 86.1626 14.9383C91.4092 10.4731 99.1117 10.4731 104.358 14.9383C105.698 16.0546 107.149 17.3941 108.489 18.5104C111.391 20.8547 114.517 23.5338 117.866 26.3245C124.898 32.1293 132.601 38.6039 138.629 43.6272C144.768 48.6506 149.234 52.446 149.792 52.8925Z" fill="url(#paint1_linear_8215_22978)"/>
9
+ </g>
10
+ <path d="M138.628 43.5155V62.9391L119.54 74.437L113.847 77.8976L101.791 85.1535L96.0974 88.6141L93.6415 90.0652L91.2973 88.6141L85.939 85.1535L74.4411 77.8976L69.0829 74.437L51.4453 63.3856V43.6271C58.2548 37.9339 67.1852 30.5663 74.9993 24.0918L117.754 26.2128C124.898 32.1292 132.6 38.4921 138.628 43.5155Z" fill="#002ACC"/>
11
+ <path d="M134.834 28.1106V62.2695L117.42 72.6511L112.285 75.7767L101.234 82.2513L96.0985 85.3769L93.8659 86.6048L91.745 85.3769L86.8332 82.2513L76.34 75.7767L71.4283 72.6511L55.3535 62.6043V28.1106C55.3535 24.5384 58.2559 21.6361 61.9397 21.6361H128.248C131.82 21.5244 134.834 24.5384 134.834 28.1106Z" fill="white"/>
12
+ <path opacity="0.5" d="M40.9531 52.6694L93.4193 56.13L149.011 52.6694L146.89 62.6045C146.89 62.6045 94.6472 89.8423 94.9821 89.8423C95.317 89.8423 41.0648 57.5812 41.0648 57.5812L40.9531 52.6694Z" fill="url(#paint2_linear_8215_22978)"/>
13
+ <path d="M149.792 52.8926V107.591C149.68 110.717 148.229 113.396 145.996 115.294C144.099 116.968 141.531 118.085 138.74 118.085H51.334C49.4363 118.085 47.6502 117.638 46.0874 116.745C45.4176 116.41 44.7478 115.964 44.1897 115.405C42.9617 114.401 41.8454 112.95 41.2873 111.387C40.8407 110.27 40.5059 109.043 40.5059 107.815V107.703V52.8926L89.3999 83.4793L93.6418 86.1584L95.093 85.2653L96.4326 84.4839L149.792 52.8926Z" fill="#738DFF"/>
14
+ <g filter="url(#filter1_d_8215_22978)">
15
+ <path d="M146.108 115.294C144.21 116.968 141.643 118.085 138.852 118.085H51.334C49.4363 118.085 47.6502 117.638 46.0874 116.745C45.4176 116.41 44.7478 115.964 44.1897 115.405C42.9617 114.401 41.8454 112.95 41.2873 111.387C40.8407 110.27 40.5059 109.043 40.5059 107.815V107.703V52.8926L46.199 56.3531L95.093 85.2653L96.4326 86.0467L96.5442 86.1584L140.415 112.057L146.108 115.294Z" fill="url(#paint3_linear_8215_22978)"/>
16
+ </g>
17
+ <path d="M96.4324 84.3724V88.1678L46.0872 116.745C45.4174 116.41 44.7476 115.964 44.1895 115.406C42.9616 114.401 41.8453 112.95 41.2871 111.387L90.2928 82.363L94.5347 85.0422L95.0929 85.2654L96.4324 84.3724Z" fill="url(#paint4_linear_8215_22978)"/>
18
+ <path d="M40.5059 52.8926L95.093 85.2653" stroke="white" stroke-miterlimit="10"/>
19
+ <g filter="url(#filter2_d_8215_22978)">
20
+ <path d="M149.792 52.8926V107.591C149.68 110.717 148.229 113.396 145.996 115.294C144.098 116.968 141.531 118.085 138.74 118.085H51.3338C49.4361 118.085 47.65 117.638 46.0872 116.745C45.4174 116.41 44.7476 115.964 44.1895 115.405L49.771 112.057L93.6416 86.1584L95.0928 85.2653L96.4324 84.4839L143.987 56.2415L149.792 52.8926Z" fill="url(#paint5_linear_8215_22978)"/>
21
+ </g>
22
+ <path d="M149.792 52.8926L96.4324 84.3723L95.0928 85.2653L93.6416 86.1584L44.1895 115.294" stroke="white" stroke-miterlimit="10"/>
23
+ <path d="M136.619 91.1817H107.595C106.925 91.1817 106.367 90.6235 106.367 89.9538C106.367 89.284 106.925 88.7258 107.595 88.7258H136.619C137.289 88.7258 137.847 89.284 137.847 89.9538C137.959 90.6235 137.4 91.1817 136.619 91.1817Z" fill="#BDE8FF"/>
24
+ <path d="M136.619 99.554H107.595C106.925 99.554 106.367 98.9959 106.367 98.3261C106.367 97.6563 106.925 97.0981 107.595 97.0981H136.619C137.289 97.0981 137.847 97.6563 137.847 98.3261C137.959 98.9959 137.4 99.554 136.619 99.554Z" fill="#BDE8FF"/>
25
+ <path d="M142.648 116.968L146.221 115.182C146.109 115.294 146.109 115.294 145.997 115.405C145.997 115.405 145.997 115.405 145.886 115.405L142.648 116.968Z" fill="#526DFF"/>
26
+ <path d="M92.3007 64.3149C91.4355 64.3149 90.6212 63.9969 89.9595 63.308L78.7121 51.5959C77.4397 50.2711 77.4397 48.0452 78.7121 46.7204C79.9844 45.3955 82.1219 45.3955 83.3943 46.7204L92.3007 55.9946L113.269 34.2134C114.541 32.8885 116.679 32.8885 117.951 34.2134C119.223 35.5383 119.223 37.7641 117.951 39.089L94.6418 63.308C94.031 63.9969 93.1658 64.3149 92.3007 64.3149Z" fill="url(#paint6_linear_8215_22978)"/>
27
+ <defs>
28
+ <filter id="filter0_d_8215_22978" x="18.5059" y="0.589355" width="153.287" height="150.495" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
29
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
30
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
31
+ <feOffset dy="11"/>
32
+ <feGaussianBlur stdDeviation="11"/>
33
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.27 0"/>
34
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8215_22978"/>
35
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8215_22978" result="shape"/>
36
+ </filter>
37
+ <filter id="filter1_d_8215_22978" x="0.723473" y="33.0014" width="185.168" height="144.757" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
38
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
39
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
40
+ <feOffset dy="19.8912"/>
41
+ <feGaussianBlur stdDeviation="19.8912"/>
42
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.27 0"/>
43
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8215_22978"/>
44
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8215_22978" result="shape"/>
45
+ </filter>
46
+ <filter id="filter2_d_8215_22978" x="4.40707" y="33.0014" width="185.168" height="144.757" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
47
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
48
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
49
+ <feOffset dy="19.8912"/>
50
+ <feGaussianBlur stdDeviation="19.8912"/>
51
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.27 0"/>
52
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8215_22978"/>
53
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8215_22978" result="shape"/>
54
+ </filter>
55
+ <linearGradient id="paint0_linear_8215_22978" x1="134.821" y1="-15.1252" x2="76.6051" y2="151.292" gradientUnits="userSpaceOnUse">
56
+ <stop stop-color="#448CEE"/>
57
+ <stop offset="0.386754" stop-color="#B5D1F8"/>
58
+ <stop offset="1" stop-color="white" stop-opacity="0"/>
59
+ </linearGradient>
60
+ <linearGradient id="paint1_linear_8215_22978" x1="95.1051" y1="12.8377" x2="95.1051" y2="92.3286" gradientUnits="userSpaceOnUse">
61
+ <stop stop-color="#0038F9"/>
62
+ <stop offset="1" stop-color="#1986F0"/>
63
+ </linearGradient>
64
+ <linearGradient id="paint2_linear_8215_22978" x1="94.9341" y1="101.627" x2="94.9341" y2="55.1744" gradientUnits="userSpaceOnUse">
65
+ <stop stop-color="#5CC4FE"/>
66
+ <stop offset="1" stop-color="#5CC4FE" stop-opacity="0"/>
67
+ </linearGradient>
68
+ <linearGradient id="paint3_linear_8215_22978" x1="93.2725" y1="51.3846" x2="93.2725" y2="118.787" gradientUnits="userSpaceOnUse">
69
+ <stop stop-color="#FDFEFF"/>
70
+ <stop offset="0.9964" stop-color="#E0F2FE"/>
71
+ </linearGradient>
72
+ <linearGradient id="paint4_linear_8215_22978" x1="72.0087" y1="102.703" x2="67.7283" y2="96.4377" gradientUnits="userSpaceOnUse">
73
+ <stop stop-color="#D5D8E4"/>
74
+ <stop offset="1" stop-color="#E1E4F0" stop-opacity="0"/>
75
+ </linearGradient>
76
+ <linearGradient id="paint5_linear_8215_22978" x1="96.9561" y1="51.3846" x2="96.9561" y2="118.787" gradientUnits="userSpaceOnUse">
77
+ <stop stop-color="#FDFEFF"/>
78
+ <stop offset="0.9964" stop-color="#E0F2FE"/>
79
+ </linearGradient>
80
+ <linearGradient id="paint6_linear_8215_22978" x1="98.3348" y1="34.2999" x2="98.3348" y2="51.7533" gradientUnits="userSpaceOnUse">
81
+ <stop stop-color="#30E482"/>
82
+ <stop offset="1" stop-color="#15C164"/>
83
+ </linearGradient>
84
+ </defs>
85
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg width="255" height="223" viewBox="0 0 255 223" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M127.247 191.135C177.879 191.135 218.927 150.087 218.927 99.2742C218.927 48.4613 177.698 7.41309 127.247 7.41309C76.6146 7.41309 35.5664 48.4613 35.5664 99.2742C35.5664 150.087 76.6146 191.135 127.247 191.135Z" fill="url(#paint0_linear_8215_22946)"/>
3
+ <path d="M223.809 10.1264C226.606 10.1264 228.873 7.85955 228.873 5.06321C228.873 2.26688 226.606 0 223.809 0C221.013 0 218.746 2.26688 218.746 5.06321C218.746 7.85955 221.013 10.1264 223.809 10.1264Z" fill="#BDE8FF"/>
4
+ <path d="M40.4499 38.8789C43.2463 38.8789 45.5131 36.612 45.5131 33.8157C45.5131 31.0193 43.2463 28.7524 40.4499 28.7524C37.6536 28.7524 35.3867 31.0193 35.3867 33.8157C35.3867 36.612 37.6536 38.8789 40.4499 38.8789Z" fill="#BDE8FF"/>
5
+ <path d="M9.52811 136.529C14.7213 136.529 18.9312 132.319 18.9312 127.126C18.9312 121.933 14.7213 117.723 9.52811 117.723C4.33491 117.723 0.125 121.933 0.125 127.126C0.125 132.319 4.33491 136.529 9.52811 136.529Z" fill="#BDE8FF"/>
6
+ <g filter="url(#filter0_d_8215_22946)">
7
+ <path d="M214.609 51.0213V157.417C214.609 160.539 212.007 163.14 208.886 163.14H47.2113C44.0896 163.27 41.4883 160.669 41.4883 157.547V51.0213C41.4883 47.7696 44.0896 45.2983 47.2113 45.2983H208.886C212.137 45.2983 214.609 47.8997 214.609 51.0213Z" fill="url(#paint1_linear_8215_22946)"/>
8
+ </g>
9
+ <path d="M214.609 51.0213V59.2156H41.4883V51.0213C41.4883 47.7696 44.0896 45.2983 47.2113 45.2983H208.886C212.137 45.2983 214.609 47.8997 214.609 51.0213Z" fill="#0038F9"/>
10
+ <path d="M104.18 100.448C106.838 100.448 108.992 98.2936 108.992 95.6358C108.992 92.9779 106.838 90.8232 104.18 90.8232C101.522 90.8232 99.3672 92.9779 99.3672 95.6358C99.3672 98.2936 101.522 100.448 104.18 100.448Z" fill="#1986F0"/>
11
+ <path d="M152.047 100.448C154.705 100.448 156.859 98.2936 156.859 95.6358C156.859 92.9779 154.705 90.8232 152.047 90.8232C149.389 90.8232 147.234 92.9779 147.234 95.6358C147.234 98.2936 149.389 100.448 152.047 100.448Z" fill="#1986F0"/>
12
+ <path d="M135.919 132.056H120.831C118.49 132.056 116.539 130.105 116.539 127.764C116.539 125.423 118.49 123.472 120.831 123.472H135.789C138.13 123.472 140.081 125.423 140.081 127.764C140.211 130.105 138.26 132.056 135.919 132.056Z" fill="#1986F0"/>
13
+ <path d="M49.162 54.6677C50.2395 54.6677 51.113 53.7942 51.113 52.7166C51.113 51.6391 50.2395 50.7656 49.162 50.7656C48.0844 50.7656 47.2109 51.6391 47.2109 52.7166C47.2109 53.7942 48.0844 54.6677 49.162 54.6677Z" fill="#F9FAFB"/>
14
+ <path d="M55.2752 54.6677C56.3528 54.6677 57.2263 53.7942 57.2263 52.7166C57.2263 51.6391 56.3528 50.7656 55.2752 50.7656C54.1977 50.7656 53.3242 51.6391 53.3242 52.7166C53.3242 53.7942 54.1977 54.6677 55.2752 54.6677Z" fill="#F9FAFB"/>
15
+ <path d="M61.5174 54.6677C62.5949 54.6677 63.4684 53.7942 63.4684 52.7166C63.4684 51.6391 62.5949 50.7656 61.5174 50.7656C60.4399 50.7656 59.5664 51.6391 59.5664 52.7166C59.5664 53.7942 60.4399 54.6677 61.5174 54.6677Z" fill="#F9FAFB"/>
16
+ <defs>
17
+ <filter id="filter0_d_8215_22946" x="1.70589" y="25.4071" width="252.686" height="197.411" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
18
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
19
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
20
+ <feOffset dy="19.8912"/>
21
+ <feGaussianBlur stdDeviation="19.8912"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0.397708 0 0 0 0 0.47749 0 0 0 0 0.575 0 0 0 0.27 0"/>
23
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_8215_22946"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_8215_22946" result="shape"/>
25
+ </filter>
26
+ <linearGradient id="paint0_linear_8215_22946" x1="188.606" y1="-29.3699" x2="97.3465" y2="229.24" gradientUnits="userSpaceOnUse">
27
+ <stop stop-color="#448CEE"/>
28
+ <stop offset="0.386754" stop-color="#B5D1F8"/>
29
+ <stop offset="1" stop-color="white"/>
30
+ </linearGradient>
31
+ <linearGradient id="paint1_linear_8215_22946" x1="127.992" y1="42.5724" x2="127.992" y2="164.415" gradientUnits="userSpaceOnUse">
32
+ <stop stop-color="#FDFEFF"/>
33
+ <stop offset="0.9964" stop-color="#E0F2FE"/>
34
+ </linearGradient>
35
+ </defs>
36
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="248" height="343" viewBox="0 0 248 343" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M169.941 34.6277C169.941 54.2897 154.442 69.9651 134.496 69.9651C115.227 69.9651 99.3465 54.3106 99.3465 34.6486C99.3465 15.6545 115.227 2.08485e-05 134.496 2.08485e-05C154.442 -0.0208518 169.941 15.6336 169.941 34.6277ZM224.063 141.621C224.05 141.646 224.023 141.663 223.995 141.663H132.992C121.389 141.621 102.988 140.473 92.3378 144.835C77.2406 151.807 78.3628 167.753 94.2435 175.935C104.026 181.195 117.069 182.406 133.628 186.205C168.417 193.51 191.645 203.654 205.323 231.624C220.696 263.893 212.861 293.741 193.106 313.862C172.355 335.006 140.594 343 111.458 343C83.1906 343 54.2878 336.07 28.667 325.363C21.5793 322.387 14.73 319.085 8.24584 315.558C0.694709 311.451 -1.54929 301.87 2.81476 294.464L16.3723 271.458C20.9162 263.748 30.9096 261.272 38.9475 265.208C43.0339 267.209 47.4372 269.208 52.0857 271.156C72.4976 279.714 131.912 295.431 148.725 274.913C154.548 265.896 151.901 257.714 144.066 251.432C136.02 245.024 120.605 242.749 105.042 239.701C65.3195 232.187 31.6525 215.406 23.2252 180.903C17.6352 158.089 20.0491 136.069 35.0192 117.868C54.2243 92.1527 87.743 81.7581 123.612 81.7581C159.541 81.7084 195.389 81.7376 231.136 81.7518C243.487 81.7567 251.18 95.1566 244.955 105.823L224.063 141.621Z" fill="url(#paint0_linear_2805_8601)"/>
3
+ <defs>
4
+ <linearGradient id="paint0_linear_2805_8601" x1="259" y1="-23.5577" x2="-150.404" y2="395.368" gradientUnits="userSpaceOnUse">
5
+ <stop stop-color="#002FE6"/>
6
+ <stop offset="1" stop-color="#002FE6" stop-opacity="0"/>
7
+ </linearGradient>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1 @@
1
+ export default function Footer(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import styles from './footer.module.scss';
3
+ import Image from 'next/image';
4
+ import Link from 'next/link';
5
+ import Button from '../../ui/button/button';
6
+ import IconWithBackground from '../../ui/icon-with-background/icon-with-background';
7
+ import { EnvelopeIcon, FacebookLogoIcon, InstagramLogoIcon, PhoneIncomingIcon, YoutubeLogoIcon } from '@phosphor-icons/react/dist/ssr';
8
+ export default function Footer() {
9
+ const currentYear = new Date().getFullYear();
10
+ return (_jsxs("footer", { className: styles['footer'], children: [_jsxs("div", { className: styles['top'], children: [_jsxs("div", { className: styles['top-row'], children: [_jsxs("div", { className: styles['sca'], children: [_jsx(Image, { src: '/logos/sca/sca-white.svg', alt: 'Logo do Sistema SCA', width: 100, height: 50 }), _jsxs("p", { children: ["O SCA \u00E9 um sistema de gest\u00E3o e automa\u00E7\u00E3o feito para revolucionar o seu neg\u00F3cio Fitness.", _jsx("br", {}), _jsx("br", {}), "Estamos no mercado desde 2004."] })] }), _jsx("hr", { className: styles['mobile-separator'] }), _jsxs("div", { className: styles['etc'], children: [_jsxs("div", { className: styles['etc-sca'], children: [_jsx("p", { className: styles['title'], children: "O SCA" }), _jsx("p", { children: "Funcionalidades" }), _jsx("p", { children: "Cases de sucesso" }), _jsx("p", { children: "Pre\u00E7os" }), _jsx(Link, { href: '/equipamentos', children: _jsx("p", { children: "Equipamentos" }) })] }), _jsxs("div", { className: styles['content-transparency-wrapper'], children: [_jsxs("div", { className: styles['etc-content'], children: [_jsx("p", { className: styles['title'], children: "Conte\u00FAdo" }), _jsx("a", { href: 'TODO', target: '_blank', children: "Blog" }), _jsx("a", { href: 'https://app.sistemasca.com/ajuda/', target: '_blank', children: "Central de Ajuda" })] }), _jsxs("div", { className: styles['etc-transparency'], children: [_jsx("p", { className: styles['title'], children: "Transpar\u00EAncia" }), _jsx(Link, { href: '/quem-somos', children: "Sobre n\u00F3s" }), _jsx(Link, { href: '/politica-de-privacidade', children: "Pol\u00EDticas e Privacidade" })] })] })] })] }), _jsx("hr", { className: styles['separator'] }), _jsxs("div", { className: styles['bottom-row'], children: [_jsx("a", { href: 'https://app.sistemasca.com/cadastro', target: '_blank', children: _jsx(Button, { label: 'Teste agora', className: styles['button'] }) }), _jsxs("div", { className: styles['contact'], children: [_jsxs("div", { children: [_jsx(PhoneIncomingIcon, { size: 24 }), _jsx("p", { children: "(35) 3294-1066" })] }), _jsxs("div", { children: [_jsx(EnvelopeIcon, { size: 24 }), _jsx("p", { children: "contato@sistemasca.com" })] }), _jsxs("div", { className: styles['social'], children: [_jsx("a", { href: 'https://www.instagram.com/sistemasca/', target: '_blank', children: _jsx(IconWithBackground, { icon: InstagramLogoIcon, className: styles['icons'], iconSize: 25 }) }), _jsx("a", { href: 'https://www.facebook.com/sistemasca', target: '_blank', children: _jsx(IconWithBackground, { icon: FacebookLogoIcon, className: styles['icons'], iconSize: 25, weight: 'fill' }) }), _jsx("a", { href: 'https://www.youtube.com/channel/UCZ8KRjnlnuw7XwJWTtnfliA', target: '_blank', children: _jsx(IconWithBackground, { icon: YoutubeLogoIcon, className: styles['icons'], iconSize: 25, weight: 'fill' }) })] })] })] })] }), _jsx("div", { className: styles['bottom'], children: _jsxs("p", { children: ["Copyright \u00A9 2004 - ", currentYear, " Sistema SCA | ProSistemas - Todos os direitos reservados."] }) })] }));
11
+ }
@@ -0,0 +1,198 @@
1
+ .footer {
2
+ display: flex;
3
+ flex-direction: column;
4
+ color: white;
5
+ font-size: 14px;
6
+
7
+ @media (max-width: 1024px) {
8
+ font-size: 12px;
9
+ }
10
+
11
+ .top {
12
+ width: 100%;
13
+ padding: 112px;
14
+ background: var(--primary);
15
+
16
+ display: flex;
17
+ flex-direction: column;
18
+ gap: 64px;
19
+
20
+ @media (max-width: 1330px) {
21
+ padding: 64px;
22
+ gap: 32px;
23
+ }
24
+
25
+ @media (max-width: 768px) {
26
+ padding: 64px 24px 24px 24px;
27
+ }
28
+
29
+ .top-row,
30
+ .bottom-row {
31
+ display: flex;
32
+ flex-wrap: nowrap;
33
+ justify-content: space-between;
34
+ gap: 64px;
35
+ }
36
+
37
+ .top-row {
38
+ @media (max-width: 1024px) {
39
+ flex-direction: column;
40
+ gap: 32px;
41
+ }
42
+
43
+ .sca {
44
+ display: flex;
45
+ flex-direction: column;
46
+ width: 365px;
47
+ gap: 24px;
48
+
49
+ font-weight: 400;
50
+
51
+ @media (max-width: 900px) {
52
+ width: 100%;
53
+ }
54
+ }
55
+
56
+ .mobile-separator {
57
+ display: none;
58
+
59
+ @media (max-width: 1024px) {
60
+ display: inline;
61
+ }
62
+ }
63
+
64
+ .etc {
65
+ display: flex;
66
+ flex-wrap: nowrap;
67
+ gap: 64px;
68
+
69
+ @media (max-width: 1330px) {
70
+ gap: 32px;
71
+ }
72
+
73
+ @media (max-width: 1024px) {
74
+ gap: 16px;
75
+ }
76
+
77
+ .content-transparency-wrapper {
78
+ display: flex;
79
+ gap: 64px;
80
+
81
+ @media (max-width: 1330px) {
82
+ gap: 32px;
83
+ }
84
+
85
+ @media (max-width: 1024px) {
86
+ gap: 16px;
87
+ }
88
+
89
+ @media (max-width: 768px) {
90
+ flex-direction: column;
91
+ }
92
+ }
93
+ }
94
+
95
+ .etc-sca,
96
+ .etc-content,
97
+ .etc-transparency {
98
+ display: flex;
99
+ flex-direction: column;
100
+ gap: 12px;
101
+ min-width: 200px;
102
+
103
+ @media (max-width: 436px) {
104
+ min-width: 150px;
105
+ }
106
+
107
+ @media (max-width: 320px) {
108
+ min-width: 125px;
109
+ }
110
+
111
+ .title {
112
+ margin-bottom: 4px;
113
+ font-weight: 600;
114
+ }
115
+ }
116
+ }
117
+
118
+ .separator,
119
+ .mobile-separator {
120
+ opacity: 0.2;
121
+ }
122
+
123
+ .bottom-row {
124
+ align-items: center;
125
+
126
+
127
+ @media (max-width: 900px) {
128
+ flex-direction: column-reverse;
129
+ align-items: flex-start;
130
+ gap: 16px;
131
+ }
132
+
133
+ .button {
134
+ padding: 16px 42px;
135
+
136
+ @media (max-width: 900px) {
137
+ padding: 16px;
138
+ width: 175px;
139
+ }
140
+ }
141
+
142
+ .contact {
143
+ display: flex;
144
+ flex-wrap: nowrap;
145
+ gap: 64px;
146
+
147
+ @media (max-width: 1330px) {
148
+ gap: 32px;
149
+ }
150
+
151
+
152
+ @media (max-width: 768px) {
153
+ flex-direction: column-reverse;
154
+ }
155
+ }
156
+
157
+ .contact>* {
158
+ display: flex;
159
+ align-items: center;
160
+ width: 200px;
161
+ gap: 8px;
162
+
163
+ @media (max-width: 1024px) {
164
+ width: fit-content;
165
+ min-width: fit-content;
166
+ }
167
+ }
168
+
169
+ .social {
170
+ gap: 16px;
171
+
172
+ .icons {
173
+ width: 40px;
174
+ height: 40px;
175
+
176
+ background: var(--dark800);
177
+ border-radius: 50%;
178
+
179
+ }
180
+ }
181
+ }
182
+ }
183
+
184
+ .bottom {
185
+ width: 100%;
186
+ height: 88px;
187
+
188
+ padding: 0 112px;
189
+ background: var(--dark800);
190
+
191
+ display: flex;
192
+ align-items: center;
193
+
194
+ @media (max-width: 1330px) {
195
+ padding: 0 64px;
196
+ }
197
+ }
198
+ }
@@ -0,0 +1,8 @@
1
+ import { IconProps } from '@phosphor-icons/react';
2
+ export default function AutoplayerRow({ icon: Icon, title, subtitle, index, activeIndex, }: {
3
+ icon: React.ComponentType<IconProps>;
4
+ title: string;
5
+ subtitle: string;
6
+ index: number;
7
+ activeIndex: number;
8
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import styles from './autoplayer-row.module.scss';
3
+ export default function AutoplayerRow({ icon: Icon, title, subtitle, index, activeIndex, }) {
4
+ return (_jsxs("div", { className: styles['autoplayer-row'], children: [_jsxs("div", { className: `
5
+ ${styles['autoplayer-title']}
6
+ ${activeIndex == index ? styles['autoplayer-title-on'] : ''}
7
+ `, children: [_jsx(Icon, { size: 32, weight: 'light' }), _jsx("p", { children: title })] }), _jsx("p", { className: `
8
+ ${styles['autoplayer-subtitle']}
9
+ ${activeIndex == index ? styles['autoplayer-subtitle-on'] : ''}
10
+ `, children: subtitle })] }));
11
+ }
@@ -0,0 +1,43 @@
1
+ .autoplayer-row {
2
+ display: flex;
3
+ flex-direction: column;
4
+ justify-content: center;
5
+ position: relative;
6
+
7
+ .autoplayer-title {
8
+ display: flex;
9
+ align-items: center;
10
+ gap: 16px;
11
+
12
+ color: #FFF;
13
+ font-size: 16px;
14
+ font-weight: 600;
15
+ height: 32px;
16
+
17
+ transition: opacity 0.3s, height 0.3s, margin-top 0.3s;
18
+ opacity: 0.5;
19
+ }
20
+
21
+ .autoplayer-title-on {
22
+ opacity: 1;
23
+ }
24
+
25
+ .autoplayer-subtitle {
26
+ margin-left: 48px;
27
+ color: #FFF;
28
+ font-size: 14px;
29
+ font-weight: 400;
30
+ opacity: 0;
31
+ transition: opacity 0.3s, height 0.3s, margin 0.3s;
32
+ height: 0px;
33
+
34
+ @media (max-width: 1024px) {
35
+ margin-left: 0;
36
+ }
37
+ }
38
+
39
+ .autoplayer-subtitle-on {
40
+ opacity: 1;
41
+ margin: 24px 0;
42
+ }
43
+ }
@@ -0,0 +1 @@
1
+ export default function Autoplayer(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,16 @@
1
+ 'use client';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ import styles from './autoplayer.module.scss';
4
+ import { useState, useEffect } from 'react';
5
+ import AutoplayerRow from './autoplayer-row/autoplayer-row';
6
+ import { CurrencyCircleDollarIcon, HeadsetIcon, UsersFourIcon } from '@phosphor-icons/react';
7
+ export default function Autoplayer() {
8
+ const [activeIndex, setActiveIndex] = useState(0);
9
+ useEffect(() => {
10
+ const interval = setInterval(() => {
11
+ setActiveIndex(prev => (prev + 1) % 3);
12
+ }, 5000);
13
+ return () => clearInterval(interval);
14
+ }, []);
15
+ return (_jsxs("div", { className: styles['autoplayer'], children: [_jsx(AutoplayerRow, { icon: CurrencyCircleDollarIcon, title: 'Pague apenas uma vez por ano', subtitle: 'Assine o anual com 20% OFF, sai por menos de R$6,00 por dia. R$2.141,00 no total.', index: 0, activeIndex: activeIndex }), _jsx("div", { className: `${styles['separator']} ${activeIndex == 0 ? styles['separator-on'] : ''}` }), _jsx(AutoplayerRow, { icon: UsersFourIcon, title: 'Cadastros ilimitados', subtitle: 'Tenha quantos alunos e alunas voc\u00EA quiser, sem pagar nenhuma taxa extra.', index: 1, activeIndex: activeIndex }), _jsx("div", { className: `${styles['separator']} ${activeIndex == 1 ? styles['separator-on'] : ''}` }), _jsx(AutoplayerRow, { icon: HeadsetIcon, title: 'Suporte para sempre', subtitle: 'Equipe dedicada que vai te ajudar desde o inicio at\u00E9 o uso mais avan\u00E7ado do sistema.', index: 2, activeIndex: activeIndex }), _jsx("div", { className: `${styles['separator']} ${activeIndex == 2 ? styles['separator-on'] : ''}` })] }));
16
+ }
@@ -0,0 +1,20 @@
1
+ .autoplayer {
2
+ display: flex;
3
+ flex-direction: column;
4
+ flex-wrap: nowrap;
5
+ gap: 32px;
6
+ height: 100%;
7
+ justify-content: space-between;
8
+
9
+ .separator {
10
+ width: 100%;
11
+ height: 1px;
12
+ background: var(--light600);
13
+ opacity: 0.5;
14
+ transition: opacity 0.3s;
15
+ }
16
+
17
+ .separator-on {
18
+ opacity: 1;
19
+ }
20
+ }
@@ -0,0 +1 @@
1
+ export default function FooterBanner(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import styles from './footer-banner.module.scss';
3
+ import { montserrat } from '../../../fonts';
4
+ import Image from 'next/image';
5
+ import InfoHeader from '../info-header/info-header';
6
+ import { BrowsersIcon, CreditCardIcon, TimerIcon } from '@phosphor-icons/react/dist/ssr';
7
+ export default function FooterBanner() {
8
+ return (_jsxs("div", { className: styles['footer-banner'], children: [_jsx(InfoHeader, { tagLabel: 'ILIMITADO', title: 'Não importa quantos alunos e alunas você vai ter, o preço não muda.', buttonLabel: 'Conhe\u00E7a agora!', buttonHref: 'https://app.sistemasca.com/cadastro', buttonTarget: '_blank', className: styles['footer-banner-info-header'], dark: true }), _jsxs("div", { className: styles['image-person-wrapper'], children: [_jsx(Image, { src: '/gym/stock-gym-blurred.webp', alt: 'Foto borrada de uma academia', className: styles['image'], fill: true }), _jsx(Image, { src: '/people/person_03.webp', alt: 'Foto de uma pessoa', className: styles['person'], width: 420, height: 420 })] }), _jsxs("div", { className: styles['bullet-list-wrapper'], children: [_jsx("p", { className: `${styles['title']} ${montserrat.className}`, children: "Teste gr\u00E1tis o SCA!" }), _jsxs("div", { className: styles['bullet-list'], children: [_jsxs("div", { className: styles['list-item'], children: [_jsx(CreditCardIcon, { size: 40, color: 'var(--neutral000)', weight: 'thin' }), _jsx("p", { className: styles['text'], children: "Voc\u00EA n\u00E3o precisa adicionar cart\u00E3o de cr\u00E9dito." })] }), _jsx("div", { className: styles['separator'] }), _jsxs("div", { className: styles['list-item'], children: [_jsx(BrowsersIcon, { size: 40, color: 'var(--neutral000)', weight: 'thin' }), _jsx("p", { className: styles['text'], children: "Tenha acesso a todas das funcionalidades." })] }), _jsx("div", { className: styles['separator'] }), _jsxs("div", { className: styles['list-item'], children: [_jsx(TimerIcon, { size: 40, color: 'var(--neutral000)', weight: 'thin' }), _jsx("p", { className: styles['text'], children: "Cadastre-se em segundos." })] })] })] })] }));
9
+ }
@@ -0,0 +1,103 @@
1
+ .footer-banner {
2
+ display: flex;
3
+ align-items: center;
4
+ justify-content: space-between;
5
+ gap: 32px;
6
+
7
+ width: 100%;
8
+ height: 100%;
9
+
10
+ background: var(--dark900);
11
+
12
+ border-radius: 24px 24px 0 0;
13
+ padding: var(--global-padding);
14
+
15
+ @media(max-width: 1024px) {
16
+ flex-direction: column;
17
+ gap: 64px;
18
+ }
19
+
20
+ .footer-banner-info-header {
21
+ align-items: flex-start;
22
+ text-align: start;
23
+ max-width: 33%;
24
+
25
+ @media(max-width: 1024px) {
26
+ max-width: 75%;
27
+ align-items: center;
28
+ text-align: center;
29
+ }
30
+ }
31
+
32
+ .image-person-wrapper {
33
+ width: 33%;
34
+ height: 330px;
35
+ position: relative;
36
+ z-index: 0;
37
+
38
+ @media(max-width: 1024px) {
39
+ max-width: 75%;
40
+ width: 75%;
41
+ }
42
+
43
+ .image {
44
+ border-radius: 24px;
45
+ z-index: -1;
46
+ position: relative;
47
+ }
48
+
49
+ .person {
50
+ z-index: 1;
51
+ position: absolute;
52
+ bottom: 0;
53
+ left: 50%;
54
+ transform: translateX(-50%);
55
+ }
56
+ }
57
+
58
+ .bullet-list-wrapper {
59
+ display: flex;
60
+ flex-direction: column;
61
+ gap: 32px;
62
+
63
+ @media(max-width: 1024px) {
64
+ max-width: 75%;
65
+ width: 75%;
66
+ }
67
+
68
+ .title {
69
+ color: #FFF;
70
+ font-size: 32px;
71
+ font-weight: 600;
72
+ }
73
+
74
+ .bullet-list {
75
+ display: flex;
76
+ flex-direction: column;
77
+ gap: 24px;
78
+
79
+ .list-item {
80
+ display: flex;
81
+ align-items: center;
82
+ gap: 8px;
83
+
84
+ .text {
85
+ color: var(--neutral000);
86
+ font-size: 16px;
87
+ font-weight: 400;
88
+ line-height: 150%;
89
+ }
90
+ }
91
+
92
+ .separator {
93
+ width: 100%;
94
+ height: 1px;
95
+
96
+ opacity: 0.5;
97
+ background: var(--light600);
98
+ }
99
+ }
100
+
101
+
102
+ }
103
+ }
@@ -0,0 +1,3 @@
1
+ export default function FooterBannerAutoplayer({ className }: {
2
+ className?: string;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import styles from './footer-banner-autoplayer.module.scss';
3
+ import { montserrat } from '../../../fonts';
4
+ import Image from 'next/image';
5
+ import InfoHeader from '../info-header/info-header';
6
+ import Autoplayer from '../autoplayer/autoplayer';
7
+ import Button from '../../ui/button/button';
8
+ export default function FooterBannerAutoplayer({ className = '' }) {
9
+ return (_jsxs("div", { className: `${styles['footer-banner-autoplayer']} ${className}`, children: [_jsxs("div", { className: styles['left'], children: [_jsx(InfoHeader, { tagLabel: 'SISTEMA COMPLETO', title: 'Plano ideal para o seu negócio', className: styles['info-header'], dark: true }), _jsxs("p", { className: `${styles['monthly-fee']} ${montserrat.className}`, children: ["R$", _jsx("span", { className: `${styles['price']}`, children: "178,00" }), "/m\u00EAs"] }), _jsxs("p", { children: ["Menos de R$6,00 por dia ou em at\u00E9 6x sem juros no anual com ", _jsx("b", { children: "20% de desconto" }), "!"] }), _jsx("a", { href: 'https://app.sistemasca.com/cadastro', target: '_blank', style: { marginTop: `12px` }, children: _jsx(Button, { label: 'Teste agora', className: styles['button'] }) })] }), _jsxs("div", { className: styles['middle'], children: [_jsx(Image, { src: '/gym/stock-gym-blurred.webp', alt: 'Foto borrada de uma academia.', className: styles['image'], fill: true }), _jsx(Image, { src: '/people/person_15.webp', alt: 'Imagem de uma pessoa segurando um celular.', width: 400, height: 400, className: styles['person'] })] }), _jsx("div", { className: styles['right'], children: _jsx(Autoplayer, {}) })] }));
10
+ }