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

/*importando o arquivo de estiliazação padrão das cores para dentro do arquivo de estilização.*/
header {
  width: 100%;
}

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

i {
  color: #fff;
}

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

.icones-header a:hover i {
  animation: translateY 0.9s infinite alternate;
  color: #94f3ff;
}

/*Criando animação para ser aplicada quando passar o mouse sobre os icones*/
@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-button {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.8s;
}
.header-button a {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}

.header-button:hover {
  border: 1px solid   #94f3ff;
  background-color:   #94f3ff;
 

}
.header-button:hover a {
  color: #232224;
  font-weight: 600;
}

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

/*RESPONSIVIDADE*/
@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-bottom: 16px;
    margin-top: 14px;
    font-size: 34px;
  }
  .header-logo img {
    width: 160px;
    margin-top: 46px;
  }
  .header-button {
    display: none;
  }
}
.container {
  max-width: 1440px; /*limita o tamanho da tela centralizada e com uma espaço na lateral direita e esquerda.*/
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
  height: 80vh;
}

/*o before nos faz adicionar algo antes do nosso conteudo. .*/
.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(9, 20, 32, 0.2), #06121e), url("..//assets/fundo.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.7;
}

/*HERO*/
.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: 40px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-content {
  padding: 14px 28px;
  color: #fff;
  background-color: #03e2ff;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 14px 0;
}

.button-content:hover {
  animation: scaleButton 0.8s alternate infinite;
  color: #333232;
}

@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: 14px;
  }
}
/*about*/
.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 h2 {
  font-size: 37px;
  margin-bottom: 24px;
  font-weight: 600;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
  font-weight: 100;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
/*SERVIÇOS*/
.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: 28px;
  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: 18px;
  padding: 0 44px 34px 44px;
}

.haircut {
  flex: 1; /*cada elemento ocupar um lugar na tela*/
  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: 100%;
  max-width: 354px;
  transition: transform 0.25s;
}

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

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

.corte-info button {
  color: #06121e;
  background-color: #94f3ff;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
  font-weight: 600;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .haircuts {
    flex-direction: column;
  }
  .haircur img {
    max-width: 740px;
  }
}
/*RODAPÉ*/
.services h2 {
  font-size: 36px;
}

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

.footer-icons {
  display: flex;
  gap: 10px;
  background: transparent;
  color: #94f3ff;
}

.footer-icons:hover i {
  animation: translateY 0.9s infinite alternate;
  color: #94f3ff;
}


.btn-whats {
  position: fixed;
  bottom: 14px;
  right: 16px;
  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: #232224;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s;
}

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

@media screen and (max-width: 768px) {
  .btn-whats img {
    max-width: 64px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #06121e;
}

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

svg {
  width: 100%;
}

img {
  width: 100%;
}

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

p {
  font-size: 10px;
}