*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 21px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 0.9rem;
}

h1,
h2,
h3,
h4 {
  margin: 0.5rem 0 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 10000;
}

.skip-link:focus {
  left: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 10px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.split > * {
  flex: 1 1 0;
  min-width: 0;
  width: 50%;
}

.section-title {
  font-family: "Open Sans", sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin: 0;
}

.section-title.left {
  text-align: left;
}

/* Header */
.site-header {
  border-top: 14px solid var(--green-dark);
}

.header-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0 20px;
}

.header-logo {
  width: 20%;
  text-align: center;
  padding: 10px 0;
}

.header-logo img {
  width: 54%;
  max-width: 140px;
  height: auto;
  margin: 0 auto;
}

.header-nav {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.nav-desktop {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  white-space: nowrap;
}

.nav-desktop a {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 5px 14px;
  display: inline-block;
  letter-spacing: 0;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--green);
}

.menu-toggle {
  display: none;
  margin: 0 auto 12px;
  width: 42px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--green);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-open {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.nav-mobile {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
}

/* Hero */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.is-active .hero-slide-bg {
  animation: kenburns 20s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #108b1766;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 50px;
}

.hero-copy {
  max-width: 90%;
  animation: fadeInUp 0.8s ease both;
}

.hero-slide.is-active .hero-copy {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-heading {
  font-family: "Open Sans", sans-serif;
  font-size: 43px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 30px;
}

.hero-text {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 30px;
  color: #fff;
}

.hero-actions {
  display: flex;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-actions .btn {
  margin: 0 6px;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 3px;
  line-height: 1;
  border: 0;
}

.btn:hover {
  filter: brightness(1.05);
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.hero-prev {
  left: 10px;
}

.hero-next {
  right: 10px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #111;
}

/* Quem somos */
.sec-heading {
  margin: 50px 0 20px;
}

.sec-about {
  margin: 0 0 50px;
}

.about-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #000;
  padding-top: 10px;
}

/* Acomodações */
.sec-rooms-head {
  background: var(--muted);
  border-top: 1px solid var(--line);
  padding: 100px 0 10px;
}

.sec-rooms-head .section-title {
  text-align: center;
}

.sec-rooms {
  background: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 0 0 100px;
}

.rooms-grid {
  display: flex;
  gap: 0;
}

.icon-box {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.icon-box-icon {
  display: inline-flex;
  color: var(--green);
  margin-bottom: 15px;
}

.icon-box p {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #000;
}

/* Café */
.sec-cafe {
  margin: 0 0 50px;
}

.cafe-split {
  align-items: flex-start;
}

.cafe-split > div:first-child {
  padding-top: 50px;
}

.cafe-buffet {
  margin-top: 16px;
  width: 100%;
}

.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 8px;
}

.icon-list li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #000;
}

.icon-list-icon {
  color: var(--green);
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.icon-list-lg .icon-list-icon {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.icon-list-lg .icon-list-icon svg {
  width: 18px;
  height: 18px;
}

/* Conheça Itu */
.sec-itu {
  position: relative;
  padding: 100px 50px;
  background: url("/assets/img/conheca-itu.webp") center / cover no-repeat;
}

.itu-mobile-photo {
  display: none;
}

.itu-wrap {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
}

.itu-spacer {
  flex: 0 0 66.198%;
  width: 66.198%;
}

.itu-card {
  width: 50%;
  background: #fff;
  padding: 24px 28px 20px;
}

.itu-card .section-title {
  margin-bottom: 16px;
}

/* Localização */
.sec-map {
  margin: 50px 0;
}

.sec-map p {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.map-embed iframe {
  width: 100%;
  height: 201px;
  border: 0;
}

/* Footer */
.site-footer {
  background: #fff;
}

.footer-contact {
  min-height: 372px;
  padding: 70px 20px 100px;
  background: url("/assets/img/bg-contato.webp") center / cover no-repeat;
}

.footer-contact .wrap {
  display: flex;
  max-width: var(--container);
}

.footer-col,
.footer-photo-spacer {
  width: 50%;
}

.footer-col h2,
.footer-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--green);
  text-align: left;
  margin: 0 0 16px;
}

.footer-sub {
  margin-top: 20px;
}

.footer-col .icon-list li {
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.wa-link {
  color: #339c3d;
}

.footer-bar {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  padding: 14px 16px;
}

.footer-bar p {
  margin: 0;
}

.footer-bar a {
  color: #fff;
}

/* Legal pages */
.page-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 10px 0;
}

.entry-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}

.legal-content {
  max-width: var(--container);
  margin: 0 auto 48px;
  padding: 0 10px 24px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #000;
}

.page-cookies .legal-content,
.page-cookies .page-header {
  max-width: 800px;
}

.page-cookies .entry-title,
.page-legal .page-header {
  max-width: 1140px;
}

.page-cookies .page-header {
  max-width: 800px;
}

.cmplz-obfuscate span {
  display: none;
}

#cmplz-document h2,
#cmplz-document h3 {
  font-size: 22px;
  text-align: left;
  margin-top: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}

#cmplz-document h4 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 5px;
}

#cmplz-document a {
  color: #1e73be;
  text-decoration: underline;
}

.cmplz-dropdown {
  background: rgba(239, 239, 239, 0.25);
  margin: 8px 0;
}

.cmplz-dropdown summary {
  display: block;
  cursor: pointer;
  background: rgba(239, 239, 239, 0.5);
  padding: 8px 10px;
  list-style: none;
}

.cmplz-dropdown summary::-webkit-details-marker {
  display: none;
}

.cmplz-dropdown summary div {
  display: grid;
  grid-template-columns: 2fr auto auto 25px;
  gap: 12px;
  align-items: center;
}

.cmplz-dropdown summary div::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  justify-self: end;
}

.cmplz-dropdown[open] summary div::after {
  transform: rotate(-135deg);
}

.cmplz-dropdown summary h3 {
  margin: 0;
  font-size: 18px;
  border: 0;
  padding: 0;
}

.cmplz-dropdown summary p {
  margin: 0;
  text-align: right;
}

.cmplz-hidden,
.cmplz_consent_per_service_label {
  display: none;
}

.cookies-per-purpose {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: #dadada;
  border: 1px solid #dadada;
  margin: 10px 0;
}

.cookies-per-purpose > div {
  background: #fff;
  padding: 15px;
}

.cookies-per-purpose .purpose {
  grid-column: 1 / -1;
}

.cmplz-service-description,
.cmplz-sharing-data {
  padding: 0 15px 15px;
}

.search-results {
  list-style: none;
  padding: 0;
}

.search-results li {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.search-results a {
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

/* Cookies UI */
.cookie-banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99999;
  width: min(526px, calc(100% - 20px));
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
  font-size: 12px;
  color: #222;
  line-height: 1.5;
}

.cookie-banner p {
  margin: 0 0 10px;
}

.cookie-links {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.cookie-links a {
  color: #1e73be;
  text-decoration: underline;
  font-size: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  min-height: 45px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #f2f2f2;
}

.cookie-accept {
  background: #1e73be;
  border-color: #1e73be;
  color: #fff;
}

.cookie-deny {
  background: #f9f9f9;
  color: #222;
}

.cookie-manage {
  position: fixed;
  right: 40px;
  bottom: -35px;
  z-index: 9998;
  min-width: 100px;
  height: 50px;
  background: #fff;
  border: 0;
  border-radius: 12px 12px 0 0;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.19) 0 10px 20px, rgba(0, 0, 0, 0.23) 0 6px 6px;
  cursor: pointer;
  color: #222;
  font-size: 14px;
}

.cookie-manage:hover,
.cookie-manage:focus {
  bottom: 0;
}

@media (min-width: 1025px) {
  .sec-itu {
    background-attachment: fixed;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .nav-desktop a {
    padding: 5px 8px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .header-logo {
    width: 22%;
  }
  .header-nav {
    width: 78%;
  }
}

@media (max-width: 767px) {
  .header-row {
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0 16px 8px;
  }

  .header-logo {
    width: 100%;
  }

  .header-logo img {
    max-width: 190px;
    width: 54%;
  }

  .header-nav {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .nav-mobile[hidden] {
    display: none;
  }

  .nav-mobile a {
    display: block;
    padding: 12px 16px;
    color: var(--green);
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
  }

  .nav-mobile a:hover,
  .nav-mobile a:focus {
    background: var(--green);
    color: #fff;
  }

  .hero-slider {
    height: 350px;
  }

  .hero-inner {
    padding: 30px 16px;
  }

  .hero-heading {
    font-size: 27px;
    margin-bottom: 15px;
  }

  .hero-text {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-actions .btn {
    margin: 0;
    font-size: 12px;
  }

  .split,
  .rooms-grid,
  .itu-wrap,
  .footer-contact .wrap {
    flex-direction: column;
  }

  .split > *,
  .footer-col,
  .footer-photo-spacer,
  .itu-card,
  .itu-spacer {
    width: 100%;
  }

  .footer-photo-spacer,
  .itu-spacer {
    display: none;
  }

  .sec-heading {
    margin: 36px 0 16px;
  }

  .sec-rooms-head {
    padding: 48px 0 10px;
  }

  .sec-rooms {
    padding-bottom: 48px;
  }

  .sec-rooms-head .section-title {
    text-align: center;
  }

  .icon-box {
    margin-bottom: 28px;
  }

  .cafe-split > div:first-child {
    padding-top: 0;
  }

  .sec-itu {
    padding: 0;
    background: none;
  }

  .itu-mobile-photo {
    display: block;
    width: 100%;
  }

  .itu-card {
    padding: 24px 16px 8px;
  }

  .sec-map {
    margin: 32px 0;
  }

  .map-embed iframe {
    height: 220px;
  }

  .footer-contact {
    min-height: 0;
    padding: 48px 16px 56px;
  }

  .entry-title {
    font-size: 2rem;
  }

  .cookie-banner {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-manage {
    display: none;
  }

  .cmplz-dropdown summary div {
    grid-template-columns: 1fr;
  }

  .cookies-per-purpose {
    grid-template-columns: 100px 1fr;
  }
}
