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

:root {
  --green: #7abb1a;
}

body,
html {
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

p {
  color: rgb(56, 56, 56);
}

button {
  cursor: pointer;
}

.text-justify {
  text-align: justify;
}

.bg-header-home {
  background-image: url("/assets/img/home/pousada-hotel-yes-banner01.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

nav {
  position: relative;
  height: 100px;
}

.navbar {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.445);
  border-bottom: 10px solid #7bbb1a9f;
}

.logo-container {
  position: absolute;
  top: 0;
  left: 10%;
  margin-right: 100px;
}

.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 18px;
  margin-right: 10%;
  font-weight: bold;
  color: white;
}

.navbar-toggler {
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 20px;
}

.nav-link.active {
  color: inherit !important;
}

.banner-content h1 {
  color: rgb(73, 73, 73);
  font-size: 4vw;
  font-weight: 400;
  font-size: calc(25px + 2vw);
}

.banner-content {
  margin-top: 50px;
  padding: 60px 0;
}

.btn-green-b {
  background-color: var(--green);
  color: white;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 3px rgba(5, 24, 5, 0.585);
}

.btn-green-w {
  background-color: var(--green);
  color: white;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 4px 4px 3px rgba(194, 243, 201, 0.585);
}

.btn-green-b:hover,
.btn-green-w:hover {
  background-color: rgb(82, 168, 39);
}

.ilha-grande {
  border-top: 10px solid #a9ee409f;
  border-bottom: 10px solid #a9ee409f;
  margin: 10px 0;
}

.ilha-grande h2 {
  font-weight: bold;
  color: var(--green);
  font-size: calc(20px + 1.5vw);
}

.form-home-container {
  background-image: url("/assets/img/home/golfinhos-contato.webp");
  background-position: center left;
  background-size: cover;
}

.form-home-container p {
  color: white;
}

.form-home-container h4 {
  text-align: center;
  color: white;
  font-weight: bold;
}

.bg-footer {
  background-image: url("/assets/img/home/fundo-rodape.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parceiros-container .img-border {
  background-color: rgba(255, 255, 255, 0.522);
  padding: 20px;
  border-radius: 10px;
}

.parceiros-container img {
  width: 100%;
  max-width: 225px;
  height: 100px;
}

footer h5 {
  text-align: center;
  color: black;
  font-size: calc(14px + 1vw);
}

footer li img {
  height: 30px;
  width: 30px;
}

footer ul li {
  font-size: calc(15px + 0.5vw);
  font-weight: 600;
}

/* A ILHA  */

.bg-header-ilha {
  background-image: url("/assets/img/home/pousada-hotel-yes-banner03.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-ilha-container {
  background-image: url("/assets/img/a-ilha/fundo-contato-ailha.webp");
  background-position: center left;
  background-size: cover;
}

.praias-container img {
  border-radius: 18px;
}

/* A POUSADA  */

.bg-header-pousada {
  background-image: url("/assets/img/home/pousada-hotel-yes-banner02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-pousada-container {
  background-image: url("/assets/img/home/golfinhos-contato.webp");
  background-position: center left;
  background-size: cover;
}

.diferenciais-pousada > div,
.servicos-pousada > div {
  width: 200px;
}

/* CONTATO  */

.bg-header-contato {
  background-image: url("/assets/img/home/pousada-hotel-yes-banner04.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-header-contato span {
  color: #3265a4;
}

.form-contato {
  background-color: rgba(0, 0, 0, 0.281);
  padding: 30px;
  border-radius: 20px;
}

.floating-icon {
  position: fixed !important;
  bottom: 40px;
  left: 40px;
  z-index: 1000;
}

.shake {
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}


@media (max-width: 991px) {
  .menu {
    background-color: rgba(129, 129, 129, 0.63);
    width: 100%;
    color: white;
    align-items: center;
    justify-content: end;
    font-size: 1rem;
    padding: 30px;
    padding-top: 100px;
    border-bottom: 5px solid #a9ee409f;
  }
}
