@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-10px) scale(1.5);
  }
}
@keyframes scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}
@keyframes scaleAndVibration {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5) rotate(20deg);
  }
}
.container {
  max-width: 1080px;
  margin: 0px auto;
  padding: 0px 10px;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121E), url("./assets/bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.9;
}

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

.button-contact {
  padding: 14px 28px;
  color: #ffffff;
  background-color: #D94140;
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
  transition: background-color 0.8s;
}

.button-contact:hover {
  color: #D94140;
  background-color: #ffffff;
  animation: scale 0.8s infinite alternate;
}

.about {
  background-color: #06121E;
  color: #ffffff;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
.about-content img {
  width: 570px;
}
.about-content div {
  flex: 1;
}

.about-description h1 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

.services {
  padding: 55px 15px;
  background-color: #fefbff;
  color: #090d11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.services .services-content {
  text-align: center;
}
.services .services-content h2 {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 38px;
}
.services .services-content p {
  line-height: 150%;
  max-width: 800px;
  margin-bottom: 15px;
}
.services .haircurts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 44px 34px;
}
.services .haircurts .haircurt {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 5px 5px 5px 5px #edeaef;
  border-radius: 10px;
  overflow: hidden;
}
.services .haircurts .haircurt img {
  max-width: 350px;
  transition: transform 0.5s;
}
.services .haircurts .haircurt img:hover {
  transform: scale(1.4);
  z-index: 1;
}
.services .haircurts .haircurt .haircurt-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  z-index: 2;
  background-color: #ffffff;
}
.services .haircurts .haircurt .haircurt-info button {
  padding: 4px 8px;
  border: 0;
  border-radius: 5px;
  background-color: #D94140;
  color: #ffffff;
  cursor: default;
}

.footer {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer .footer-icons i {
  font-size: 30px;
}
.footer p {
  color: #ffffff;
}

.btn-whatsapp {
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 10px;
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 99;
}
.btn-whatsapp i {
  margin-right: 10px;
  font-size: 40px;
  color: #25D366;
}
.btn-whatsapp span {
  display: none;
  position: absolute;
  color: #25D366;
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-whatsapp:hover i {
  animation: scaleAndVibration 1s infinite alternate;
}
.btn-whatsapp:hover span {
  padding: 5px;
  width: 170px;
  display: block;
  top: -40px;
  opacity: 1;
  background-color: #000;
  border-radius: 8px;
}

@media screen and (max-width: 1000px) {
  .about-content img {
    width: 100%;
  }
  .services .haircurts .haircurt {
    padding: 10px;
  }
  .services .haircurts .haircurt .haircurt-info strong {
    width: 80px;
  }
  .services .haircurts .haircurt .haircurt-info button {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 8px;
  }
  .hero h1 {
    line-height: 100%;
    font-size: 25px;
    max-width: 250px;
  }
  .hero p {
    font-size: 0.8em;
  }
  .about-content {
    flex-direction: column;
    justify-content: center;
  }
  .about-description {
    margin: 0 20px;
  }
  .about-description h1 {
    font-size: 1em;
    margin-bottom: 24px;
  }
  .about-description p {
    margin-bottom: 0.8em;
    line-height: 100%;
  }
  .services .haircurts {
    flex-direction: column;
  }
  .services .haircurts .haircurt .haircurt-info {
    font-size: 0.8em;
  }
  .services .haircurts .haircurt .haircurt-info button {
    width: 80px;
  }
}
@media screen and (max-width: 450px) {
  .hero {
    min-height: 50vh;
  }
  .hero h1 {
    line-height: 100%;
    font-size: 25px;
    max-width: 250px;
  }
  .hero p {
    font-size: 0.8em;
  }
  .services .haircurts .haircurt .haircurt-info strong {
    width: 75px;
    font-size: 0.7em;
  }
  .services .haircurts .haircurt .haircurt-info button {
    width: 65px;
    font-size: 0.8em;
  }
}
header {
  width: 100%;
}

i {
  color: #ffffff;
}

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

.header-icons {
  display: flex;
  gap: 14px;
  font-size: 1.5em;
}

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

.header-button {
  padding: 8px 24px;
  border: 1px solid #ffffff;
  margin: 2px;
  border-radius: 4px;
  color: #ffffff;
  background: transparent;
  transition: background-color 0.4s;
}

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

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

@media screen and (max-width: 760px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0 auto;
  }
  .header-logo {
    padding-bottom: 50px;
    margin-top: 0px;
  }
  .header-logo img {
    width: 120px;
    margin-top: 50px;
  }
  .header-button {
    width: 400px;
  }
  .header-icons {
    font-size: 2em;
    gap: 45px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

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 */