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

header {
  width: 100%;
}

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

i {
  color: #edeaef;
}

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

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

@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 #7A3A8C;
  background-color: #F1BBF2;
  color: #161617;
}

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

@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-button {
    display: none;
  }
  .header-logo {
    width: 160px;
    margin-top: 46px;
  }
}
.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("../Assests/imagem fixa do site/foto.png");
  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: 88vh;
  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: #7A3A8C;
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.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: #1D1024;
  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: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

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

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

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

.produtos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 44px 34px 44px;
}

.produto {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 100px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.produto img {
  width: 100%;
  max-width: 354px;
  transition: transform 0.2s;
  height: 100%;
}

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

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

.produto-info button {
  color: #fff;
  background-color: #7A0539;
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
  width: 100px;
}

@media screen and (max-width: 768px) {
  .produto-info {
    font-size: 100%;
  }
  .produto-info button {
    width: 100px;
  }
  .produtos {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 20px 10px 20px;
  }
  .produto img {
    max-width: 740px;
  }
}
@media screen and (min-width: 501px) and (max-width: 621px) {
  .produto-info {
    font-size: 15px;
  }
}
@media screen and (max-width: 500px) {
  .produto-info {
    font-size: 16px;
  }
  .produto-info button {
    width: 103px;
  }
  .produto-info > button {
    font-size: 16px;
  }
  .produtos {
    display: flex;
    flex-direction: column;
    padding: 0 44px 34px 44px;
  }
  .produto img {
    max-width: 740px;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 0;
  gap: 24px;
  color: #fff;
  background-color: #1D1024;
}

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

.footer-icons i {
  color: #fff;
}

.footer-log img {
  width: 166px;
  height: 195.123px;
}

#job > p {
  color: #edeaef;
}

#job > a {
  text-decoration: none;
  color: #edeaef;
}

@media screen and (max-width: 768px) {
  .footer > p {
    font-size: 15px;
    width: 80%;
    text-align: center;
  }
}
.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: 180px;
  top: 8px;
  left: -186px;
  padding: 6px;
  background-color: #161617;
  color: #edeaef;
  border-radius: 8px;
  text-align: center;
  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;
  }
}
@media screen and (max-width: 370px) {
  .btn-whats img {
    max-width: 54px;
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #1D1024;
}

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

svg {
  width: 100%;
}

img {
  width: 100%;
}

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