@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap);
/**
 * General reset
 */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  /**
   * Custom scrollbar
   */
  /**
   * Custom selection color
   */
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background-color: #fff;
}
html::-webkit-scrollbar-thumb {
  background-color: #610631;
  outline: none;
  border-radius: 10px;
}
html ::-moz-selection {
  background-color: #CF3290;
  color: #fff;
}
html ::selection {
  background-color: #CF3290;
  color: #fff;
}

html,
body {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  font-size: 1.6rem;
}
body main {
  flex: 1;
}

/**
 * Bootstrap reset
*/
.tooltip {
  font-size: 16px;
}
.tooltip .tooltip-arrow::before {
  border-right-color: rgba(58, 58, 58, 0.9);
}
.tooltip .tooltip-inner {
  padding: 8px 16px;
  background-color: rgba(58, 58, 58, 0.9);
  border-radius: 4px;
}

img {
  -webkit-user-drag: none;
}
img.px {
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
}
img.aa {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

a {
  text-decoration: none;
  color: white-500;
}

ul {
  list-style: none;
}

/* Animations */
/* Helpers */
.padding-4 {
  padding: 4rem 1rem;
}

.padding-5 {
  padding: 5rem 1rem;
}

.margin-bottom-6 {
  margin-bottom: 6rem;
}

.color-bege {
  color: #FFF0C9;
}

.color-white {
  color: #fff;
}

.color-wine {
  color: #610631;
}

.color-gold {
  color: #A5832A;
}

.color-blue {
  color: #2CBFC7;
}

.color-rose {
  color: #C45E85;
}

.color-wine-400 {
  color: #B13250;
}

.bg-config {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-wine-500 {
  background-color: #610631;
}

.bg-blue {
  background-color: #2CBFC7;
}

.bg-rose {
  background-color: #C45E85;
}

.bg-wine-400 {
  background-color: #B13250;
}

/* Buttons */
button {
  all: unset;
}

.form-control:focus {
  box-shadow: none;
}

@font-face {
  font-family: "DK-Cool-Crayon";
  src: local("Pacifico Regular"), url(/fonts/dk_cool_crayon-webfont.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Helvetica-Regular";
  src: local("Pacifico Regular"), url(/fonts/helvetica-webfont.woff2) format("woff2");
  font-display: swap;
}
* {
  font-family: "Helvetica-Regular", sans-serif;
}

h1 {
  font-size: calc(1vw + 1.5rem);
}

h2 {
  font-size: calc(1vw + 3.4rem);
  font-family: "Poppins", sans-serif;
}

h3 {
  font-size: calc(1vw + 1.2rem);
  font-family: "DK-Cool-Crayon";
}

p {
  font-size: calc(1vw + 0.2rem);
  color: #666666;
}

@media (max-width: 1399.98px) {
  p {
    font-size: calc(1vw + 0.4rem);
  }
}
@media (max-width: 1199.98px) {
  p {
    font-size: calc(1vw + 0.6rem);
  }
}
@media (max-width: 991.98px) {
  p {
    font-size: calc(1vw + 0.8rem);
  }
}
@media (max-width: 767.98px) {
  p {
    font-size: calc(1vw + 0.9rem);
  }
}
@media (max-width: 575.98px) {
  p {
    font-size: calc(1vw + 1rem);
  }
  h1,
h2,
h3,
h4,
p {
    text-align: center;
  }
}
.text-black {
  color: #000 !important;
}

.bg-black {
  background-color: #000 !important;
}

.text-white-500 {
  color: #fff !important;
}

.bg-white-500 {
  background-color: #fff !important;
}

.text-grey-200 {
  color: #9E9E9E !important;
}

.bg-grey-200 {
  background-color: #9E9E9E !important;
}

.text-grey-300 {
  color: #717171 !important;
}

.bg-grey-300 {
  background-color: #717171 !important;
}

.text-bege-500 {
  color: #FFF0C9 !important;
}

.bg-bege-500 {
  background-color: #FFF0C9 !important;
}

.text-gold-500 {
  color: #A5832A !important;
}

.bg-gold-500 {
  background-color: #A5832A !important;
}

.text-pink-700 {
  color: #CF3290 !important;
}

.bg-pink-700 {
  background-color: #CF3290 !important;
}

.text-rose-700 {
  color: #C45E85 !important;
}

.bg-rose-700 {
  background-color: #C45E85 !important;
}

.text-wine-400 {
  color: #B13250 !important;
}

.bg-wine-400 {
  background-color: #B13250 !important;
}

.text-wine-500 {
  color: #610631 !important;
}

.bg-wine-500 {
  background-color: #610631 !important;
}

.text-blue-200 {
  color: #2CBFC7 !important;
}

.bg-blue-200 {
  background-color: #2CBFC7 !important;
}

.text-gradient {
  color: linear-gradient(to right, #610631, #B132A5) !important;
}

.bg-gradient {
  background-color: linear-gradient(to right, #610631, #B132A5) !important;
}

.media-home-wrapper {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .media-home-wrapper {
    padding: 5rem 0;
  }
}
.media-home-wrapper .bg-config {
  width: 60%;
  height: 500px;
  border-radius: 0 15px 15px 0;
}
@media (max-width: 767.98px) {
  .media-home-wrapper .bg-config {
    width: 100%;
    border-radius: 0;
    background-attachment: fixed;
  }
}
@media (max-width: 575.98px) {
  .media-home-wrapper .bg-config {
    padding: 5rem 0;
  }
}
.media-home-wrapper .media-buttons {
  top: 184px;
  position: absolute;
  left: 57%;
}
@media (max-width: 991.98px) {
  .media-home-wrapper .media-buttons {
    left: 52%;
  }
}
@media (max-width: 767.98px) {
  .media-home-wrapper .media-buttons {
    top: 50%;
    transform: translate(-27%, -50%);
  }
}
.media-home-wrapper .media-buttons > div {
  transform: translateX(-82px);
  background-color: white;
  padding: 6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.24);
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .media-home-wrapper .media-buttons > div {
    padding: 4rem 1rem;
  }
}
.media-home-wrapper .media-buttons .box-facebook {
  background-color: #1877F2;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-home-wrapper .media-buttons .box-facebook ::before {
  content: "";
  background: url("/assets/img/elements/facebook-transparent.png");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: -134px;
}
.media-home-wrapper .media-buttons .box-instagram {
  background: linear-gradient(98.2deg, #FEDA75 -5.93%, #FA7E1E 26.59%, #D62976 52.98%, #962FBF 82.44%, #4F5BD5 111.89%);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-home-wrapper .media-buttons .box-instagram ::before {
  content: "";
  background: url("/assets/img/elements/instagram-transparent.png");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: -116px;
}

.novidades-wrapper {
  overflow-x: hidden;
}

.franqueados-wrapper .bg-config {
  height: 30rem;
  border-radius: 10px;
}
@media screen and (min-width: 767px) and (max-width: 1440px) {
  .franqueados-wrapper {
    padding: 8rem 11rem;
  }
}

.media-home-buttons {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 70px;
  right: 40px;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
}
.media-home-buttons i {
  color: #610631;
  font-size: 50px;
  transition: all 0.3s ease-in-out;
}
.media-home-buttons i:hover {
  color: #CF3290;
}
@media (max-width: 575.98px) {
  .media-home-buttons {
    display: none;
  }
}

.sobre-wrapper img {
  max-width: 300px;
}

.banner-header {
  height: 60vh;
}
@media (max-width: 991.98px) {
  .banner-header {
    height: 40vh;
  }
}
.banner-header .img-element-sobre {
  transform: translateY(1px);
  width: 100%;
  position: absolute;
}

.section-formulario {
  height: 600px;
}
@media (max-width: 991.98px) {
  .section-formulario {
    height: inherit;
  }
}
.section-formulario .text-wrapper {
  margin-top: 6rem;
}
.section-formulario .social-media i, .section-formulario .social-media span {
  color: #610631;
  font-size: 2rem;
  transition: all 0.2s ease-in-out;
}
.section-formulario .social-media i:hover, .section-formulario .social-media span:hover {
  color: #CF3290;
  cursor: pointer;
}

.form-wrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 4rem 3rem;
  transform: translateY(-20px);
}
@media (max-width: 991.98px) {
  .form-wrapper {
    transform: translateY(0px);
  }
}

.contato-wrapper .section-formulario {
  height: 500px;
}
@media (max-width: 991.98px) {
  .contato-wrapper .section-formulario {
    height: inherit;
    padding-bottom: 2rem;
  }
}
.contato-wrapper .onde-estamos-wrapper {
  background-color: #610631;
}
.contato-wrapper .onde-estamos-wrapper .container-onde-estamos {
  transform: translateY(100px);
}
@media (max-width: 991.98px) {
  .contato-wrapper .onde-estamos-wrapper .container-onde-estamos {
    transform: translateY(0px);
    padding: 2rem 1rem;
  }
  .contato-wrapper .onde-estamos-wrapper .container-onde-estamos .img-mapa {
    max-width: 300px;
    margin-bottom: 1rem;
  }
}
.contato-wrapper .nav-pills .nav-item {
  width: 50%;
}
.contato-wrapper .nav-pills .nav-item .nav-link {
  width: -webkit-fill-available;
  text-align: center;
  color: #fff;
  font-family: "DK-Cool-Crayon";
  position: relative;
}
.contato-wrapper .nav-pills .nav-item .nav-link.active {
  background-color: #CF3290;
  border-radius: 10px;
}
.contato-wrapper .nav-pills .nav-item .nav-link.active::before {
  content: "";
  background: url("/assets/img/elements/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 34px;
  height: 67px;
  top: 5px;
  left: 117px;
}
.contato-wrapper .tab-pane iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}

.promocoes-wrapper {
  padding: 10rem 0 18rem;
}
@media (max-width: 768px) {
  .promocoes-wrapper {
    padding: 10rem 0 5rem;
  }
}

.btn-flat {
  display: inline-block;
  border-radius: 4px;
  padding: 12px 16px;
  border: none;
  transition: 0.2s ease-in-out;
  font-size: 16px;
}

/*** Button Pink */
.btn-pink {
  background-image: linear-gradient(to right, #610631, #B132A5);
  color: #fff;
  border: none;
  border-radius: 10px;
  background-size: 100% auto;
  font-family: inherit;
  font-size: 17px;
  padding: 0.6em 1.5em;
  text-align: center;
}
@media (max-width: 575.98px) {
  .btn-pink {
    padding: 0.6em 1em;
  }
}
.btn-pink:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: pulse512 1.5s infinite;
}

@-webkit-keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 5, 218, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(206, 68, 218, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(213, 68, 218, 0);
  }
}

@keyframes pulse512 {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 5, 218, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(206, 68, 218, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(213, 68, 218, 0);
  }
}
/**
 * Flat button
 */
.btn-flat {
  background-color: transparent;
  color: #202020;
  box-shadow: none;
}
.btn-flat:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #202020;
}
.btn-flat:active {
  background-color: rgba(0, 0, 0, 0.2);
  color: #202020;
}
.btn-flat:focus-visible {
  background-color: rgba(0, 0, 0, 0.2);
}

.btn-border-bottom {
  color: #fff;
  border-bottom: 4px solid #610631;
  background-size: 100% auto;
  font-family: inherit;
  font-weight: 800;
  font-size: 17px;
  padding: 0.6em 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  transition: all 0.4s ease-in-out;
}
.btn-border-bottom:hover {
  border-bottom: 3px solid #FFF0C9;
}

.card {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 16px;
}
.card .card-content {
  padding: 24px;
}
.card .card-actions {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(197, 197, 197, 0.8);
  margin-top: 24px;
  text-align: right;
}

.card-promocoes {
  padding: 12rem 2rem 1rem;
  border-radius: 70px 70px 20px 20px;
  position: relative;
  margin-bottom: 6rem;
}
.card-promocoes:hover {
  cursor: pointer;
}
.card-promocoes:hover .content p {
  color: #FFF0C9;
}
.card-promocoes:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(360deg, rgba(62, 39, 4, 0.5803921569), rgba(0, 0, 0, 0));
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.card-promocoes .content-card {
  position: inherit;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.card-promocoes .content-card p {
  font-size: 5rem;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  color: white;
  text-align: center;
  line-height: 43px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 768px) {
  .card-promocoes .content-card p {
    font-size: 3.5rem;
  }
}

.layer-locations {
  padding: 4rem 1rem 5rem;
  background-color: #CF3290;
}
.layer-locations .img-marcas {
  padding: 2rem;
  transition: all 0.2s ease-in-out;
  border-radius: 40px;
}
.layer-locations .img-marcas:hover {
  background-color: #fff;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 20px;
}

.div-image-element img {
  transform: translateY(10px);
  width: 100%;
}

.layer-footer {
  padding: 4rem 1rem 5rem;
  background-color: #FFF0C9;
}
.layer-footer .logo-img {
  width: 150px;
}
.layer-footer .title {
  color: #717171;
  font-weight: bold;
}
.layer-footer a {
  color: #CF3290;
}
.layer-footer a:hover {
  color: #C45E85;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  padding: 22px;
  border-radius: 22px;
}
.swiper .swiper-button-prev {
  left: 6px;
  border: 1px solid #2CBFC7;
  background-color: #ffffff;
}
.swiper .swiper-button-prev::after {
  color: #2CBFC7;
  font-size: 25px;
}
.swiper .swiper-button-next {
  border: 1px solid #2CBFC7;
  right: 6px;
  background-color: #ffffff;
}
.swiper .swiper-button-next::after {
  color: #2CBFC7;
  font-size: 25px;
}
.swiper .swiper-pagination-bullet {
  background-color: #fff;
  border: 2px solid #2CBFC7;
  opacity: initial;
  width: 15px;
  height: 15px;
  bottom: -8px;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #2CBFC7;
}
@media (max-width: 767.98px) {
  .swiper .swiper-button-prev,
.swiper .swiper-button-next {
    background-color: transparent;
    border: none;
  }
}

.swiper.swiperSorvetes .swiper-pagination {
  bottom: -3px;
}
.swiper.swiperSorvetes .swiper-slide {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.24);
  border-radius: 65px 65px 25px 25px;
  height: auto;
  cursor: pointer;
}
.swiper.swiperSorvetes .swiper-slide .swiper-header {
  border-radius: 63px 63px 25px 25px;
  padding: 10rem 0;
  cursor: pointer;
}
.swiper.swiperSorvetes .swiper-slide .swiper-content {
  font-family: "Poppins";
  font-weight: 800;
  padding: 1rem;
  text-align: center;
}
.swiper.swiperSorvetes .swiper-slide .swiper-content p {
  color: #fff;
}

.swiper.swiperNovidades {
  max-width: 500px;
  width: 100%;
  height: 320px;
}
@media (max-width: 575.98px) {
  .swiper.swiperNovidades {
    max-width: 250px;
  }
}
.swiper.swiperNovidades .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.swiper.swiperNovidades .swiper-slide {
  background-color: #FFF0C9;
}

.navbar.bg-bege {
  background-color: #FFF0C9;
  box-shadow: 1px 7px 14px -4px rgba(0, 0, 0, 0.18);
}
.navbar.bg-bege .logo-brand {
  width: 100px;
}

.media {
  display: none;
}
.media i {
  color: #CF3290;
  font-size: 25px;
  transition: all 0.3s ease-in-out;
}
.media i:hover {
  color: #610631;
}
@media (max-width: 575.98px) {
  .media {
    display: block;
  }
}

.navbar {
  padding: 1rem 0;
  transition: 0.2s ease-in-out;
  z-index: 4;
}
@media (max-width: 991.98px) {
  .navbar {
    background-color: #FFF0C9;
    box-shadow: 1px 7px 14px -4px rgba(0, 0, 0, 0.18);
  }
}
.navbar .logo-brand {
  width: 260px;
  transition: 0.2s ease-in-out;
  filter: drop-shadow(0px 0px 19px #fff0c9);
}
@media (max-width: 767.98px) {
  .navbar .logo-brand {
    width: 140px;
  }
}
.navbar .navbar-toggler {
  border-color: #C45E85;
}
.navbar .navbar-toggler:focus {
  color: #C45E85;
}
.navbar .navbar-toggler i.fas {
  color: #CF3290;
  font-size: 2rem;
}
.navbar .navbar-nav {
  background-color: #FFF0C9;
  padding: 1rem;
  border-radius: 10px;
}
.navbar .navbar-nav .nav-item {
  position: relative;
}
@media (max-width: 992px) {
  .navbar .navbar-nav .nav-item {
    text-align: center;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #610631;
}
.navbar .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}
.navbar .navbar-nav .nav-item:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .navbar .navbar-nav .nav-item:not(:last-child) {
    margin: 0;
  }
}
.navbar .navbar-nav .nav-item:hover:not(.active) .nav-link {
  color: #C45E85;
}

.form-control {
  background-color: rgba(158, 158, 158, 0.1294117647);
  border-radius: 8px;
  color: #9E9E9E;
  font-size: 14px;
}
.form-control:focus {
  background-color: rgba(158, 158, 158, 0.1294117647);
  border-color: #CF3290;
  box-shadow: none;
}

.form-floating label {
  color: #9E9E9E;
}
.form-floating span {
  color: #999999;
  font-size: 13px;
}
.form-floating textarea.form-control {
  height: 15rem;
  resize: none;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 12px);
  line-height: 1.25;
}

.form-floating > .form-control:-webkit-autofill {
  padding-top: 24px;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 24px;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 24px;
}

.form-check-input:checked {
  background-color: #CF3290;
  border-color: #CF3290;
}

.form-check-input:focus {
  border-color: #ee86fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(231, 13, 253, 0.25);
}

.banner-hero {
  position: relative;
  text-align: center;
  background-image: linear-gradient(270deg, rgba(255, 247, 226, 0.6784313725), rgba(0, 0, 0, 0));
  color: white;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 992px) {
  .banner-hero {
    background-size: auto 100%;
    background-position: -23vw center;
  }
}
@media screen and (min-width: 1400px) {
  .banner-hero {
    background-size: auto 100%;
    background-position: -10vw center;
  }
}
.banner-hero:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(270deg, #fff7e2 43%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991.98px) {
  .banner-hero:before {
    background-image: none;
  }
}
.banner-hero .inner-header {
  height: 85vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 991.98px) {
  .banner-hero .inner-header .background-mobile {
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    padding: 2rem 1rem;
    background-color: rgba(255, 247, 226, 0.4784313725);
    border-radius: 15px;
  }
}
.banner-hero .inner-header .mt-7 {
  margin-top: 7rem;
}
.banner-hero .inner-header .title {
  font-size: calc(2vw + 1.5rem);
  font-family: "DK-Cool-Crayon";
  color: #610631;
}
.banner-hero .inner-header .subtitle {
  font-family: "Poppins", sans-serif;
  color: #3a3939;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

.content {
  position: relative;
  height: 20vh;
  text-align: center;
  background-color: white;
}

/* Animation */
.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

@-webkit-keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
  .content {
    height: 30vh;
  }
}
.modal-theme .modal-dialog .modal-content {
  font-size: 1.6rem;
  padding: 1.6rem;
  border-radius: 1rem;
}

/* MODAL STYLE*/
.modalProdutos {
  /* SWIPER DO MODAL*/
}
.modalProdutos .tabela-nutricional {
  display: flex;
  justify-content: space-between;
  border: 1px solid #E2E2E2;
  border-radius: 25px;
  padding: 10px 19px 11px 26px;
  margin: 4px;
}
@media (max-width: 575.98px) {
  .modalProdutos .tabela-nutricional {
    width: 80vw;
  }
}
.modalProdutos .modal-content {
  border-radius: 30px;
  background-color: #FFFFFF;
  width: 600px;
  height: 800px;
  overflow: hidden;
}
@media (max-width: 500px) {
  .modalProdutos .modal-content {
    width: 98vw;
    height: 1080px;
  }
}
.modalProdutos .modal-subtitle {
  font-family: "Poppins", sans-serif;
  color: #2CBFC7;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 110.9%;
  padding: 71px 0px 0px 56px;
  position: absolute;
}
.modalProdutos .modal-title {
  font-family: "Poppins", sans-serif;
  color: #CBCBCB;
  font-style: normal;
  font-size: 30px;
  position: absolute;
  padding: 1px 0px 0px 56px;
}
.modalProdutos h1 {
  color: #610631;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 20px;
  padding-bottom: 12px;
  margin-bottom: 0px;
}
@media (max-width: 575.98px) {
  .modalProdutos h1 {
    position: relative;
  }
}
@media (max-width: 575.98px) {
  .modalProdutos .tabela-nutri {
    padding-block: 12px;
    display: flex;
    justify-content: center;
  }
}
.modalProdutos span {
  font-family: "Poppins";
  text-align: justify;
  color: #AFAFAF;
}
@media (max-width: 575.98px) {
  .modalProdutos span {
    text-align: justify;
    display: flex;
  }
}
.modalProdutos ul li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #AFAFAF;
}
.modalProdutos ul li:nth-child(2) {
  color: #610631;
  font-weight: 1000;
}
.modalProdutos .modal-header {
  border: none;
  padding: 0px;
  margin: 0px;
}
.modalProdutos .modal-header div {
  border-radius: 30px;
}
.modalProdutos .modal-body {
  font-family: "Poppins";
}
.modalProdutos .modal-footer {
  border: none;
}
.modalProdutos .modal-footer img {
  border-radius: 30px;
  position: absolute;
  top: 732px;
  right: -4px;
  margin: 0px;
  padding: 2px;
}
@media (max-width: 575.98px) {
  .modalProdutos .modal-footer img {
    position: absolute;
    top: 1011px;
    right: -10px;
  }
}
.modalProdutos .button-close {
  position: absolute;
  padding-right: 50px;
}
@media (max-width: 575.98px) {
  .modalProdutos .button-close {
    position: absolute;
    left: 83vw;
  }
}
.modalProdutos .swiper-inside {
  padding: 10px;
  margin-bottom: 16px;
  /* SLIDE INFERIOR */
  /* SLIDE SUPERIOR */
  /* SLIDE INFERIOR */
  /* SLIDE INFERIOR */
  /* IMG CONFIG */
}
@media (max-width: 575.98px) {
  .modalProdutos .swiper-inside {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
  }
}
.modalProdutos .swiper-inside .swiper {
  width: 150px;
  height: 150px;
  margin: 10px;
}
.modalProdutos .swiper-inside .mySwiper2 {
  height: 150px;
  width: 180px;
}
.modalProdutos .swiper-inside .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 4px 0;
  margin-inline: 25px;
}
.modalProdutos .swiper-inside .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.modalProdutos .swiper-inside .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.modalProdutos .swiper-inside .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.toast-alert {
  position: fixed;
  top: 85px;
  right: 24px;
  z-index: 10;
  max-width: 100%;
}
.toast-alert .alert {
  border-radius: 8px;
}
.toast-alert .alert .close {
  position: absolute;
  top: 8px;
  right: 8px;
}

/*# sourceMappingURL=main.css.map*/