diff --git a/src/assets/imgs/logo-top.png b/src/assets/imgs/logo-top.png
new file mode 100644
index 0000000..efeffee
Binary files /dev/null and b/src/assets/imgs/logo-top.png differ
diff --git a/src/assets/imgs/logo-whatsapp.png b/src/assets/imgs/logo-whatsapp.png
new file mode 100644
index 0000000..06c276c
Binary files /dev/null and b/src/assets/imgs/logo-whatsapp.png differ
diff --git a/src/components/ButtonsFixed/ButtonsFixed.module.scss b/src/components/ButtonsFixed/ButtonsFixed.module.scss
new file mode 100644
index 0000000..83800b5
--- /dev/null
+++ b/src/components/ButtonsFixed/ButtonsFixed.module.scss
@@ -0,0 +1,57 @@
+@import '../../variaveis';
+
+.buttons-fixeds {
+ position: fixed;
+ bottom: 229px;
+ top: auto;
+ right: 0;
+ left: auto;
+ z-index: 3;
+
+ padding-right: 16px;
+
+ @media #{$mq-tablet} {
+ bottom: 22px;
+ }
+
+ @media #{$mq-mobile} {
+ bottom: 16px;
+ }
+
+ &__list {
+ list-style: none;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ gap: 5px;
+
+ &__item {
+ button {
+ border: none;
+ border-radius: 100%;
+ background: transparent;
+ background-image: url('../../assets/imgs/logo-top.png');
+ width: 66px;
+ height: 66px;
+ cursor: pointer;
+
+ @media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile} {
+ width: 34px;
+ height: 34px;
+ }
+
+ img {
+ width: 66px;
+ height: 66px;
+
+ @media #{$mq-desktop}, #{$mq-tablet}, #{$mq-mobile} {
+ width: 34px;
+ height: 34px;
+ }
+ }
+ }
+ }
+ }
+
+}
diff --git a/src/components/ButtonsFixed/ButtonsFixed.tsx b/src/components/ButtonsFixed/ButtonsFixed.tsx
new file mode 100644
index 0000000..f44d4a4
--- /dev/null
+++ b/src/components/ButtonsFixed/ButtonsFixed.tsx
@@ -0,0 +1,31 @@
+
+import styles from "./ButtonsFixed.module.scss"
+
+import wpp from '../../assets/imgs/logo-whatsapp.png'
+
+const ButtonsFixeds = () => {
+
+ const scrollTop = () => {
+ window.scrollTo({
+ top: 0,
+ behavior: 'smooth',
+ })
+ }
+
+ return (
+
+
+