/* default values */
html,
body {
  height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
  background-color: #fff;
  overflow-x: hidden;
  color: var(--black-txt);
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
}
a,
a:hover {
  text-decoration: none !important;
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}
:root {
  --black-txt: #000;
  --yellow: #FFDC24;
}
h1,
h2,
h3 {
  font-family: "Inter", sans-serif;
}
p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--black-txt);
}
/* css custom */

/* header - index */
.header-hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 700px;
}
.hero-wrapper {
  padding: 20px 0 100px 0;
}
.header-hero .hero-bg {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url('/src/assets/img/banner-shopping.webp');
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  z-index: -1;
}
.header-hero .block-txt {
  margin-top: 50px;
  margin-bottom: 120px;
}
/* end header - index */
/* buttons */
.btn-custom {
  border-radius: 32px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 400 !important;
  letter-spacing: 1px;
  padding: 23px 30px 25px 30px;
  font-size: 15px;
  display: inline-block;
}
  .btn-custom.btn-white {
    color: #2F2F2F;
    background: #fff;
  }
  .btn-custom.btn-white:hover {
    color: #2F2F2F;
    background: #fff;
  }
  .btn-custom.btn-black {
    color: #fff;
    background: #2F2F2F;
  }
  .btn-custom.btn-black:hover {
    color: #fff;
    background: #2F2F2F;
  }
  .btn-custom.btn-yellow {
    color: var(--black-txt);
    background: #FFDC24;
  }
  .btn-custom.btn-yellow:hover {
    color: var(--black-txt);
    background: #FFDC24;
  }
.grey {
  background-color: #F3F3F3;
}
.img-falcao {
  position: relative;
  margin-top: -80px;
  z-index: 2;
}
.floating {
  position: fixed;
  bottom: 30px;
  right: 6%;
  z-index: 9999; 
}

.floating img {
  width: 45px;
  height: 45px;
}

.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
} 

@-webkit-keyframes bounce {
  0%, 20%, 40%, 60%, 80%, 100% {-webkit-transform: translateY(0);}
  50% {-webkit-transform: translateY(-8px);}
} 

@keyframes bounce { 
  0%, 20%, 40%, 60%, 80%, 100% {transform: translateY(0);}
  50% {transform: translateY(-8px);}
} 

.bounce { 
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
