* {
  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: #ffffff;
}

.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 #ffffff;
  padding: 8px 24px;
  border-radius: 4px;
  color: #ffffff;
  background-color: transparent;
  transition: background-color 0.8s;
}

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

.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;
  }
  i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    width: 100%;
    margin-top: 46px;
  }
  .header-button {
    display: none;
  }
  .header-contato {
    display: none;
  }
}
.header-contato {
  background-color: #b42b2b;
  color: white;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 99;
}

.header-contato p {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  display: flex;
  height: 45px;
}

.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: #ffffff;
  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;
  max-width: 650px;
}

.button-contact {
  padding: 14px 28px;
  color: #ffffff;
  background-color: #b42b2b;
  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: #06121e;
  overflow: hidden;
  color: #ffffff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 0px 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-reverse;
  }
}
.services {
  background-color: #ffffff;
  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;
}

.services .rows-cards {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.services .row-card-item {
  background-color: #fcbaba;
  width: 350px;
  padding: 20px;
  border-radius: 14px;
  margin: 20px;
}

.services .row-card-item img {
  background-color: #b42b2b;
  border-radius: 14px;
  width: 70px;
  padding: 9px;
}

.services .row-card-item:hover {
  background-color: #b42b2b;
}

.services .row-card-item:hover p {
  color: white;
}

.services .row-card-item p.nome-servico {
  margin: 5px;
  transition: 0.1s;
}

.services .row-card-item p.descricao-servico {
  transition: 0.1s;
}

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

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

.footer p {
  margin-bottom: -20px;
}

.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 70px;
  transition: trasform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

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

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

@media screen and (max-width: 768px) {
  .btn-whatsapp img {
    max-width: 55px;
  }
}
.dados {
  background-color: #d3e6fd;
}

.dados .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.dados .dados-item {
  text-align: center;
  margin: 15px;
  color: black;
}

.dados .dados-item img {
  padding: 25px;
  margin-bottom: 15px;
  width: 150px;
}

.depoimentos {
  background-color: white;
  padding: 4em;
}

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

.depoimentos p {
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 14px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.depoimentos .card-item {
  background-color: #fcbaba;
  margin: 15px;
  border-radius: 14px;
  text-align: center;
  width: 350px;
}

.depoimentos .card-item img {
  border-radius: 100%;
  width: 80px;
  display: block;
  margin: 10px auto;
}

.depoimentos .card-item .nome-user {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.depoimentos .card-item .depoimento-user {
  font-size: 15px;
  padding: 0 15px;
  transition: 0.3s;
}

.depoimentos .card-item .estrelas {
  margin: 15px 0;
  border-top: 2px solid #b42b2b;
}

.depoimentos .card-item .estrelas i {
  color: #b42b2b;
  margin-top: 15px;
  font-size: 20px;
  transition: 0.3s;
}

.depoimentos .card-item:hover {
  background-color: #b42b2b;
  margin-top: 5px;
}

.depoimentos .card-item:hover .nome-user,
.depoimentos .card-item:hover .depoimento-user,
.depoimentos .card-item:hover .estrelas i {
  color: white;
}

.btn-water {
  position: fixed;
  bottom: 104px;
  right: 20px;
  z-index: 99;
}
.btn-water img {
  max-width: 80px;
  transition: trasform 0.4s;
}
.btn-water img:hover {
  transform: scale(1.1);
}

.btn-water .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 220px;
  top: 8px;
  left: -244px;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  background-color: #232224;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s;
}

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

@media screen and (max-width: 768px) {
  .btn-water img {
    max-width: 55px;
  }
}
.galeria {
  background-color: white;
  padding: 4em;
}

.galeria-content {
  max-width: 1200px;
  width: 95%;
}

.slide-wrapper {
  position: relative;
}

.slide-wrapper .slide-button {
  position: absolute;
  top: 50%;
  height: 50px;
  width: 50px;
  color: #fff;
  border: none;
  outline: none;
  background: #b42b2b;
  font-size: 2.2rem;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slide-wrapper .slide-button:hover {
  background: red;
}

.slide-wrapper .slide-button#prev-slide {
  left: -20px;
  display: none;
}

.slide-wrapper .slide-button#next-slide {
  right: -20px;
}

.slide-wrapper .image-list {
  display: grid;
  gap: 18px;
  font-size: 0;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  grid-template-columns: repeat(10, 1fr);
}

.slide-wrapper .image-item::-webkit-scrollbar {
  display: none;
}

.slide-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.galeria-content .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  height: 2px;
  width: 100%;
  background: #ccc;
  position: relative;
  border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  height: 100%;
  width: 50%;
  background: #b42b2b;
  border-radius: inherit;
  cursor: grab;
}

.slider-scrollbar .scrollbar-track:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

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