@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  width: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: #FFF;
}

.header-icons {
  display: flex;
  gap: 14px;
}

.header-icons a:hover i {
  animation: translateY 0.9s infinite alternate;
  color: purple;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-botton {
  border: 1px solid #FFF;
  padding: 8px 24px;
  border-radius: 4px;
  color: #FFF;
  background-color: transparent;
  transition: 0.8s;
}

.header-botton:hover {
  border: 1px solid purple;
  background-color: purple;
}

.header-logo {
  width: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 54px;
    font-size: 34px;
  }
  .header-logo img {
    width: 180px;
    margin-top: 2px;
  }
  .header-botton {
    display: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0, 1, 0, 0.189), #06121e), url("/bets-coin-main/asstes/arroz.jpeg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 2.5;
}

.hero {
  color: #FFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 46px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.botton-contato {
  padding: 14px 28px;
  color: white;
  background-color: black;
  font-size: 18px;
  border-radius: 150px;
  font-weight: 600;
  margin: 14px 0;
}

.POOCOIN {
  padding: 14px 28px;
  color: white;
  background-color: black;
  border-radius: 150px;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.AVE {
  padding: 14px 28px;
  color: white;
  background-color: black;
  border-radius: 150px;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.botton-contato:hover {
  animation: scaleBotton 0.8s alternate infinite;
}

@keyframes scaleBotton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.grafico2 {
  width: 100%;
  height: 100vh;
  border: 150px;
  padding: 105px;
}

@media screen and (max-width: 768px) {
  .grafico2 {
    width: 100%;
    align-items: center;
    height: 70vh;
    padding: 0;
  }
}
.sobre {
  background-color: #06121e;
  overflow: hidden;
  color: #FFF;
}

.sobre-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.sobre-content img {
  width: 50%;
  align-items: center;
  margin-left: 30px;
  border-radius: 50px;
  box-shadow: #06121e;
  margin-bottom: 80px;
}

.sobre-content div {
  flex: 1;
}

.sobre-descriçao h2 {
  align-items: center;
  font-size: 38px;
  margin-bottom: 24px;
  padding: auto;
}
.sobre-descriçao p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .sobre-content {
    flex-direction: column;
    align-items: center;
  }
  .sobre-content img {
    margin-left: 100px;
  }
}
.roteiro {
  background-color: #06121e;
  color: #222324;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.roteiro-content h2 {
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.passos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 44px 34px 44px;
}

.passo-1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.passo-1 img {
  width: 100%;
  max-width: 354px;
  transition: transform 0.2;
}

@media screen and (max-width: 768px) {
  .passos {
    flex-direction: column;
  }
  .passo-1 {
    max-width: 740px;
  }
}
.serviços {
  background-color: white;
  color: #222324;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.serviços-content h3 {
  padding: 5px;
  text-transform: uppercase;
}

.serviços-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.haircuts {
  width: 250px;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 44px 34px 44px;
}

.haircut {
  width: 300px;
  height: 100px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 0px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);
}
.haircut h6 {
  padding: 25px;
  word-spacing: 150px;
}

.haircut-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 14px;
  background-color: #FFF;
  z-index: 99;
}

.haircut-info button {
  color: #FFF;
  background-color: #56c850;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .haircuts {
    flex-direction: column;
  }
  .haircut {
    max-width: 740px;
  }
}
.footer {
  background-color: #06121e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #FFF;
}
.footer img {
  width: 200px;
}

.footer-icons {
  display: flex;
  gap: 8px;
  color: purple;
}

.btn-whats {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-whats img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-whats img:hover {
  transform: scale(1.1);
}

.btn-whats .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  background-color: #222324;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.9s;
}

.btn-whats:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .btn-whats img {
    max-width: 64px;
  }
}
.feedback .feedbacks {
  background-color: #06121e;
  color: #222324;
  display: flex;
  margin-left: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 5px;
}
.feedback .feedbacks img {
  width: 250px;
  border-radius: 22px;
  box-shadow: 0px -1px 80px -4px rgba(0, 0, 0, 0.45);
}
.feedback .feedbacks h2 {
  color: #FFF;
  text-transform: uppercase;
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .feedback .feedbacks {
    flex-direction: column;
  }
  .feedback h2 {
    width: -200px;
  }
}

.footer {
  overflow-x: hidden;
}

button {
  font-family: 100%;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}

header {
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

i {
  color: #FFF;
}

.header-icons {
  display: flex;
  gap: 14px;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #d34040;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #FFF;
  padding: 8px 24px;
  border-radius: 4px;
  color: #FFF;
  background-color: transparent;
}

.header-button :hover {
  border: 1px solid #d34040;
  background-color: #d34040;
}

body {
  font-family: "sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #06121e;
}

body {
  overflow-x: hidden;
}/*# sourceMappingURL=style.css.map */