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

header {
  width: 100%;
}

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

.header-button:hover {
  border: 1px solid #357599;
  background-color: #357599;
  color: rgba(252, 252, 252, 0.9725490196);
}

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

@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 {
    width: 250px;
    margin-top: 46px;
  }
  .header-button {
    display: none;
  }
}
.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), rgba(252, 252, 252, 0.9725490196)), url("../assets/fundo.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;
}

.img-logo {
  width: 500px;
}

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

.button-contact {
  padding: 14px 28px;
  color: rgba(252, 252, 252, 0.9725490196);
  background-color: #25D366;
  font-size: 18px;
  font-weight: 600;
  margin: 60px 0;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.btn-book-info {
  padding: 0 14px;
}

.btn-book {
  color: rgba(252, 252, 252, 0.9725490196);
}

.button-contact:hover {
  animation: scaleButton 0.8s alternate infinite;
}

.img-whatsapp {
  width: 55px;
}

@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%;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.services {
  background-color: rgba(252, 252, 252, 0.9725490196);
  color: #123344;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.services-content h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .services-content h2 {
    font-size: 20px;
  }
}
.services-offered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 44px 34px 44px;
}

.service {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: rgba(252, 252, 252, 0.9725490196);
  border-radius: 8px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.service img {
  width: 100%;
  max-width: 354px;
  transition: transform 0.25s;
}

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

.service-info {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 14px;
  background-color: #f1f4f5;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .services-offered {
    flex-direction: column;
  }
}
.map-title {
  background-color: #f1f4f5;
  padding: 14px 14px;
}

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

@media screen and (max-width: 768px) {
  .footer p {
    font-size: 10px;
  }
}
.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
  background-color: #25D366;
  border-radius: 50%;
}

.btn-fixed {
  color: rgba(252, 252, 252, 0.9725490196);
  padding: 14px 14px;
}

.img-footer {
  width: 200px;
}

i {
  color: black;
}

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

.footer-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: #c9b7c7;
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
body {
  font-family: "Sora", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgba(252, 252, 252, 0.9725490196);
}

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

svg {
  width: 100%;
}

img {
  width: 100%;
}

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