:root {
  --green-700: #3f504a;
  /* verde petróleo */
  --beige-100: #F5F2EB;
  /* bege claro */
  --text-900: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #7a9b8f;
  --radius: 8px;
  --max-width: 1180px;
}

/* reset simples */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;

  line-height: 1.5;
}

.hero {
  width: 100vw;
  height: 80px;
  background-color: var(--green-700);
  position: relative;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-items: center;

  top: 0;
}

/* wrapper */
.wrap {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: var(--green-700);
  color: var(--beige-100);
  padding: 18px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {

  font-size: 22px;
  font-weight: 700
}

.main-nav a {
  color: var(--beige-100);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500
}

.main-nav a:hover {
  opacity: .9
}

/* breadcrumbs */
.breadcrumbs {
  padding: 2rem 6rem;
  color: var(--muted)
}
.breadcrumbs h1 {
  color: var(--muted);
  font-size: 3rem;
  font-weight: 500;
  text-decoration: none;
  margin: auto;
}
.breadcrumbs a {
  color: var(--muted);
  font-size: 3rem;
  font-weight: 800;
  text-decoration: none;
  margin: auto;
}

/* GALLERY WIDE */
.gallery-wide {

  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--beige-100);
  padding: 18px 0;
  margin: auto;
}

.gallery-wide .arrow {
  background: transparent;
  border: 0;
  font-size: 36px;
  color: var(--green-700);
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-viewport {
  overflow: hidden;
  flex: 1;
}

.gallery-track {
  display: flex;
  gap: 12px;
  transition: transform .45s cubic-bezier(.22, .9, .2, 1);
  align-items: stretch;
}

.gallery-item {
  min-width: 50%;
  /* duas imagens visíveis lado a lado */
  max-width: 50%;
  height: 300px;
  overflow: hidden;
  border-radius: 6px;
  background: #f0f0f0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform .35s ease;
}

.gallery-item img:hover {
  transform: scale(1.03)
}

/* CONTENT + CARD */
.content-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 44px 0 80px;
  padding: 0 6px;
}
.left-col {
  flex: 1;
  min-width: 280px
}
.left-col h1 {
  font-size: 3rem;
  color: var(--green-700);
  padding: 1rem 6rem;
  margin-bottom: 12px;
}
.meta {
  list-style: none;

  display: flex;
  gap: 3rem;
  color: var(--muted);
 padding-bottom: 1.5rem;
padding-left: 6rem;
  border-style: solid;
    border-width: 0px 0px 1px 0px;
}
.meta li {
  font-size: 1.5rem;
}
.comodidades li {
  font-size: 1.5rem;
  padding-left: 6rem;
}
.description h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--green-700);
  padding-left: 6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-style: solid;
    border-width: 0px 0px 1px 0px;
}
.description h3 {
  padding-top: 2rem;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--green-700);
  padding-left: 6rem;
}
.description p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.8rem;
  padding-left: 6rem;
}

/* card lateral */
.right-col {
  width: 320px;
  flex: 0 0 320px
}

.card-booking {
  background: linear-gradient(180deg, var(--beige-100), #fff);
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: 0 8px 24px rgba(47, 79, 70, 0.06);
}

.price {
  font-size: 2rem;
  color: var(--green-700);
  font-weight: 600;
  margin-bottom: 12px
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.7rem;
}

.btn.primary {
  background: var(--green-700);
  color: var(--beige-100);
  width: 100%;
  margin-bottom: 12px;
}
.btn.primary:hover {
  background: #437060;
  color: var(--beige-100);
  width: 100%;
  margin-bottom: 12px;
}

.contacts h4 {
  margin: 8px 0 6px;
  font-size: 2rem;
  color: var(--green-700);
  font-weight: 600;
}

.contacts a {
  color: var(--green-700);
  text-decoration: none;
   font-size: 1.5rem;
}
.contacts p {
  color: var(--green-700);
  text-decoration: none;
   font-size: 1.6rem;
}

/* FOOTER */
.site-footer {
  background: var(--green-700);
  color: var(--beige-100);
  padding: 24px 0;
  margin-top: 60px
}

.site-footer p {
  margin: 0
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.7);
  z-index: 1200;
  padding: 28px;
}

.modal[aria-hidden="false"] {
  display: flex
}

.modal-inner {
  max-width: 1100px;
  width: 100%;
  background:  var(--green-700);
  border-radius: 10px;
  overflow: hidden;
  padding: 1rem;
}

.modal-close {
  position: absolute;
  right: 0rem;
  top: 0rem;
  background: transparent;
  border: 0;
  font-size: 4rem;
  cursor: pointer;
  color: #fff;
  font-weight: 300;
}

.modal-stage {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative
}

.modal-arrow {
  background: transparent;
  border: 0;
  font-size: 6rem;
  cursor: pointer;
  color: #fff;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
}

.modal-image-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px
}

.modal-image-wrap img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  border-radius: 6px
}

.modal-caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px
}

/* thumbs */
.modal-thumbs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-top: 14px;
  margin-top: 12px
}

.modal-thumbs img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: .6;
  border: 2px solid transparent
}

.modal-thumbs img.active {
  opacity: 1;
  border-color: var(--green-700)
}


/* RESPONSIVE */
/* RESPONSIVE */
/* RESPONSIVE */
/* RESPONSIVE */
/* RESPONSIVE */


@media (max-width:900px) {
  .gallery-item {
    height: 300px
  }

  .right-col {
    width: 280px
  }

  .content-wrap {
    flex-direction: column
  }

  .right-col {
    order: 2;
    width: 100%
  }

  .left-col {
    order: 1
  }
}

@media (max-width:600px) {
  .gallery-item {
    min-width: 100%;
    max-width: 100%
  }

  /* mobile: 1 imagem por "slide" */
  .gallery-wide .arrow {
    display: none
  }

  .gallery-item {
    height: 220px
  }

  .modal-image-wrap {
    min-height: 220px
  }

  .modal-thumbs img {
    width: 72px;
    height: 48px
  }
}