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

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;
  transition: background-color 0.8s;
}

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

.header-logo {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  position: relative;
  animation: flutuar 1.6s ease-in-out infinite alternate;
}

#barbeiro {
  left: 20px;
  top: 250px;
  position: fixed;
  width: 100px;
  border-radius: 20px;
  display: none;
}

#barbeiroSumir {
  left: 50px;
  top: 20px;
  position: fixed;
  width: 80%;
  border-radius: 20px;
}

@keyframes flutuar {
  0% {
    top: 0;
  }
  100% {
    top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    width: 160px;
    margin-top: 46px;
  }
  .header-button {
    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(6, 18, 30, 0.1), #06121e), url("../assets/bg.svg");
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.9;
}

.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;
}

.button-contact {
  padding: 14px 28px;
  color: #FFF;
  background-color: #D94140;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
  border-radius: 8px;
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  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;
  }
}
.about {
  background-color: #06121E;
  overflow: hidden;
  color: #FFF;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 570px;
}

.about-content div {
  flex: 1;
}

.about-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  text-align: start;
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.services {
  background-color: #FFF;
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

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

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

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

.haircut {
  width: 300px;
  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;
}
.haircut img {
  width: 300px;
  height: 350px;
  transition: transform 0.2s;
}

.haircut img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.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: #D94140;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .haircuts {
    flex-direction: column;
  }
  .haircut img {
    max-width: 740px;
  }
}
.facilities {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
  gap: 24px;
}

.facilities h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}

.facilities-buttons {
  display: flex;
  gap: 10px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #FFF;
}

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

p {
  margin-top: 18px;
  text-align: center;
}

.btn-whatsapp {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 99;
  /* Entrada suave e "respiração" sutil para chamar atenção */
  animation: whatsapp-enter 0.6s ease-out both, whatsapp-breathe 3s ease-in-out 2s infinite;
  will-change: transform, filter;
  outline: none;
  /* Efeito de onda ao clicar */
}
.btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  transform: scale(0.9);
  opacity: 0;
}
.btn-whatsapp:active::after {
  animation: whatsapp-ripple 0.6s ease-out;
}
.btn-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.6);
  outline-offset: 2px;
  border-radius: 999px;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: 0.5s ease-in-out;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

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

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

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 64px;
  }
}
/* Animações do botão WhatsApp */
@keyframes whatsapp-enter {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes whatsapp-breathe {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 0 rgba(37, 211, 102, 0));
  }
  50% {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.45));
  }
}
@keyframes whatsapp-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-whatsapp {
    animation: none;
  }
  .btn-whatsapp img {
    transition: none;
  }
}
.modal-pix {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 20%;
  height: 450px;
  color: #000;
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 50px;
}

.modal-pix.hidden {
  display: none;
}

.btn-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  background-color: red;
}
.btn-modal-close:hover {
  color: red;
  background-color: white;
}

.pix {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.pix-icon {
  display: flex;
  gap: 10px;
}

.qrcode-pix {
  width: 50%;
  background-color: red;
}

.chave-pix {
  gap: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  color: #fff;
  background-color: rgb(73, 199, 73);
  clip-path: polygon(5% 0%, 95% 0%, 100% 30%, 100% 70%, 95% 100%, 5% 100%, 0% 70%, 0% 30%);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.4s;
}

.chave-pix:hover {
  background-color: rgb(10, 133, 63);
}

.modal-wifi {
  display: none;
  gap: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 20%;
  height: 450px;
  color: #000;
  border-radius: 10px;
  background-color: #fff;
  padding: 30px;
  margin-bottom: 50px;
}

.modal-wifi.hidden {
  display: none;
}

.qr-code-wifi {
  display: flex;
  width: 100%;
  height: 100%;
}

.qrcode-wifi {
  width: 60%;
}

.icone-wifi {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.wifi-icon {
  width: 70%;
  height: 60%;
}

.senha {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body {
  width: 100%;
  height: 100vh;
  position: relative;
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #FFF;
  background-color: #06121E;
}

button {
  font-family: "Sora", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */