@font-face {
  font-family: "Poppins";
  src: url("https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2 ")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #097bb1;
  --primary-color-dark: #036c9c;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
  text-align: center;
}

/* .section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
} */

/* .section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
} */

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 300px;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  background-image: url("assets/header.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* header.rolagem {
  background-color: #fedbdb;
} */

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__bar {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--primary-color);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(112, 143, 255, 0.9);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
  place-content: center;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: var(--white);
  transition: 0.3s;
}

.nav__btn {
  display: none;
}

.header__container {
  padding-block: 10rem 15rem;
}

.header__container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--white);
  text-align: left;
  opacity: 0.6;
}

.header__container h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: var(--white);
  text-align: left;
}

.header__container h1 span {
  color: var(--primary-color);
}

.booking__container {
  padding-block: 0;
}

.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 10px;
  transform: translateY(-50%);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.input__group label {
  text-align: left;
  font-weight: 500;
  color: var(--text-dark);
}
.box-item-group {
  display: flex;
  flex-direction: column;
}

.input__group input {
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}

.about__container {
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem;
  align-items: center;
}

.desc__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about__image img {
  max-width: 70%;
  margin: auto;
  border-radius: 5px;
}

.room__grid {
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex-flow: wrap;
  gap: 2rem;
  place-content: center;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  height: auto;
  width: 25%;
  min-width: 300px;
  padding: 1em;
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.whats {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 9999;
  max-width: 80px;
}

.room__card__icons span:nth-child(1),
.room__card__icons span:nth-child(2),
.room__card__icons span:nth-child(3) {
  color: #0077ac;
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.room__card h5 span {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.service {
  background-image: url("assets/service.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  display: flex;
  flex-direction: row;
  padding-block: 0;
  justify-content: end;
}

.service__content {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  background-color: var(--white);
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--text-dark);
  background-color: var(--text-light);
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #fb7185;
  background-color: #ffe4e6;
}

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg,
.explore__bg-01,
.explore__bg-02 {
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns: minmax(1rem, 1fr) minmax(0, var(--max-width)) minmax(
      1rem,
      1fr
    );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explore__bg {
  background-image: url("assets/explore.webp");
}

.explore__bg-01 {
  background-image: url("assets/explore-01.webp");
}

.explore__bg-02 {
  background-image: url("assets/explore-02.webp");
}

.explore__content {
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(191, 213, 255, 0.432);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--white);
}

.explore__content .btn {
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.explore__content .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.footer {
  background-color: #097bb1;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 1rem;
}

.footer__col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer__col .section__description {
  margin-block: 2rem;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.footer__links a {
  color: var(--white);
  transition: 0.3s;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer__socials {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials img {
  max-width: 25px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer__socials img:hover {
  opacity: 1;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--white);
  text-align: center;
  background-color: #086a9a;
  width: 100%;
}

.whats {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.section-header {
  text-align: center;
  margin-top: 5%;
  color: #fff;
}

.section-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 45px;
  margin: 0;
}

.section-header p {
  margin: 0;
}

.box {
  position: relative;
  height: 350px;
  background: linear-gradient(45deg, #009aed, #097bb1);
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.6s ease;
  overflow: hidden;
  margin: 20px;
}

.box p {
  color: #fff;
  font-size: 16px;
}

.box h3 {
  font-size: 25px;
  text-transform: uppercase;
  color: #fff;
}

.icons {
  width: 80px;
  height: 80px;
  background: #fff;
  margin: auto;
  border-radius: 50px;
}

.icons i {
  font-size: 35px;
  line-height: 80px;
}

.box::before,
.box::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  border: 5px solid #fff;
  opacity: 0;
  transition: 0.5s;
}

.box::before {
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
}

.box::after {
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 10px;
}

.box:hover::before,
.box:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition-delay: 0.3s;
}

.box span {
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(10deg);
  transition: 0.5s;
}

.box:hover span {
  left: 110%;
}

.box:hover {
  background-image: linear-gradient(45deg, #097bb1, #28adeb);
  box-shadow: 0 2px 15px 5px rgba(0, 0, 0, 0.5);
}

#wpp-btn img {
  width: 70px;
  margin-right: 100px;
}

#missao-visao-valores {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__container {
  width: 80%;
  flex-direction: column;
}

.nav__menu__btn {
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: none;
  z-index: 1001;
}

.nav__menu__btn i {
  pointer-events: none;
}

.nav__menu__btn:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__col {
    width: 100%;
  }

  .footer__bar {
    font-size: 0.8rem;
  }
}

@media (max-width: 1000px) {
  .box {
    padding: 25px;
  }
  .section__container {
    width: 80%;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .room__grid {
    flex-direction: column;
  }

  .room__card {
    max-width: 50%;
  }

  .box {
    height: 320px;
    margin: 0;
  }

  .box h3 {
    font-size: 20px;
  }
}
@media (min-width: 576px) {
  .footer__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  nav {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__bar {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: translateY(0);
    z-index: auto;
  }
}

@media (min-width: 1000px) {
  .section__container {
    width: 80%;
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .nav__menu__btn {
    display: block;
  }
}
