* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

main {
  width: 100%;
}

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

i {
  color: #6f434d;
}

.header-icones {
  display: flex;
  gap: 20px;
  font-size: 30px;
}

.header-icones a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: red;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.butao-contato:hover {
  border: 1px solid rgb(164, 158, 158);
  background-color: rgb(164, 158, 158);
}

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

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    display: none;
  }
}
.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 6rem;
}

.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(30, 6, 10, 0), #EBE3DB), url("./imagens/img-fundo.jpg");
  width: 100%;
  height: 100%;
  background-position: 50% 30%;
  opacity: 3;
}

.hero {
  color: white;
  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;
}

.butao-contato {
  padding: 14px 28px;
  color: #FFFFFF;
  background-color: #b85479;
  border: solid 2px #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.butao-contato: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: 24px;
    padding: 0 14px;
    width: 100%;
  }
  .hero a {
    padding: 5px 18px;
    margin-right: 22px;
  }
  p {
    font-size: 14px;
  }
  .bg-home::before {
    background-size: cover;
    background-position: 50% 50%;
  }
}
.rodape h2 {
  color: rgb(34, 35, 34);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

body {
  font-family: "Dancing Script", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #EBE3DB;
}

a {
  font-family: "Dancing Script", sans-serif;
  cursor: pointer;
  text-decoration: none;
}

img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */
