* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "MuseoModerno", system-ui, sans-serif;
  color: #00383b;
  background: #fff;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ambient {
    animation: floatY 6s ease-in-out infinite;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 320ms;
}

.parallax-layer {
  will-change: transform;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .motion-ambient,
  .parallax-layer {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1;
  font-weight: 300;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10;
  background: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
}

.hero {
  padding: 60px 0;
  background: url("../img/imagem3.avif") top right / 25% auto no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 20px;
  align-items: center;
}

.hero-render {
  width: 540px;
  border-radius: 8px;
}

.brand {
  width: 203px;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: 70px;
  color: #00383b;
}

.hero h1 strong,
.rooms h2 strong {
  font-weight: 700;
}

.hero p {
  margin-bottom: 22px;
  max-width: 620px;
}

.pill {
  display: inline-flex;
  width: min(507px, 100%);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 10px 34px;
  color: #fff;
  background: linear-gradient(90deg, #00383b 0%, #036267 100%);
  border-radius: 60px;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.image-panel {
  min-height: 583px;
  display: grid;
  align-items: center;
  margin-top: 0;
  padding: 120px 60px;
  color: #fff;
  background:
    linear-gradient(rgba(0, 56, 59, 0.82), rgba(0, 56, 59, 0.82)),
    url("../img/imagem1.avif") center/cover no-repeat;
  border-radius: 20px;
}

.image-panel h2 {
  margin-bottom: 28px;
  color: #fff;
  font-size: 70px;
  font-weight: 600;
}

.image-panel p {
  width: min(600px, 100%);
  font-weight: 300;
}

.rooms {
  margin-top: 60px;
  text-align: center;
}

.rooms h2,
.map-section h2 {
  margin-bottom: 25px;
  font-size: 70px;
  color: #00383b;
}

.rooms p {
  max-width: 1080px;
  margin: 0 auto 32px;
}

.rooms picture,
.rooms img {
  width: 100%;
  border-radius: 8px;
}

.rooms .pill {
  margin-top: 20px;
}

.reserve {
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 60px;
  padding-bottom: 80px;
}

.reserve-copy h2 {
  margin-bottom: 80px;
}

.reserve-static {
  align-self: center;
  padding: 30px;
  color: #00383b;
  background: rgba(255,255,255,0.88);
  border-radius: 10px;
}

.reserve-static h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.2;
}

.soft-button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #64a7ab;
  border-radius: 8px;
}

.map-section {
  margin-top: 60px;
  text-align: center;
}

.map-frame {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: url("../img/google-maps-minimal-1280x920.jpg") center/cover no-repeat;
  box-shadow: 1px 1px 60px 10px rgba(33, 33, 33, 0.13);
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 56, 59, 0.18), transparent 40%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.map-frame:hover::before,
.map-frame:focus-visible::before {
  opacity: 1;
}

.map-frame:hover span,
.map-frame:focus-visible span {
  transform: translateY(-2px);
}

.map-frame span {
  position: relative;
  z-index: 1;
  transition: transform 220ms ease;
}

.map-frame span {
  max-width: 360px;
  padding: 18px 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 4px;
}

.site-footer {
  margin-top: 50px;
  padding: 0 0 90px;
  background: url("../img/imagem4.avif") center bottom / cover no-repeat;
}

.footer-card,
.credit-card {
  background: rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
}

.footer-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 70px;
  align-items: center;
  padding: 40px 70px;
}

.footer-card img {
  width: 400px;
}

.footer-card p {
  margin-bottom: 18px;
  font-weight: 300;
}

.socials {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

.credit-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 20px;
  padding: 40px;
  text-align: center;
}

.credit-card a,
.credit-card div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  font-weight: 300;
}

.credit-card a:first-child {
  gap: 14px;
}

.credit-card a:first-child img {
  width: 124px;
}

.credit-card div,
.credit-card a:last-child {
  gap: 14px;
}

.credit-icon {
  width: 42px;
  height: 42px;
  color: #00383b;
  flex: none;
}

.credit-icon--ssl {
  width: 40px;
  height: 40px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  width: min(980px, calc(100% - 32px));
  padding: 20px 22px;
  color: #fff;
  background: rgba(0, 56, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.2;
}

.cookie-banner__text p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-banner__text a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-button {
  min-width: 122px;
  min-height: 46px;
  padding: 10px 18px;
  color: #00383b;
  background: #fff;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-button--secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.cookie-button:focus-visible,
.cookie-banner a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-button {
    width: 100%;
  }

  .cookies-hero,
  .cookies-grid,
  .cookies-footer {
    grid-template-columns: 1fr;
  }

  .cookies-hero__copy {
    padding: 30px;
  }

  .cookies-hero__copy h1 {
    font-size: 40px;
  }

  .cookies-intro {
    font-size: 18px;
  }

  .cookies-card h2,
  .cookies-footer h2 {
    font-size: 24px;
  }
}

.policy {
  padding: 0 0 60px;
  color: #222;
}

.policy h1 {
  margin-bottom: 22px;
  color: #111;
  font-size: 48px;
  font-weight: 600;
}

.policy h2 {
  margin-top: 28px;
  color: #111;
  font-size: 30px;
  font-weight: 600;
}

.policy a {
  color: #00383b;
  text-decoration: underline;
}

.cookies-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.cookies-hero {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.cookies-hero__copy,
.cookies-hero__card,
.cookies-card,
.cookies-footer {
  border-radius: 22px;
  border: 1px solid rgba(0, 56, 59, 0.08);
  box-shadow: 0 20px 50px rgba(0, 56, 59, 0.08);
}

.cookies-hero__copy {
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 56, 59, 0.96), rgba(3, 98, 103, 0.9)),
    url("../img/imagem1.avif") center/cover no-repeat;
}

.cookies-kicker,
.cookies-hero__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.cookies-hero__copy h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 56px;
  font-weight: 600;
}

.cookies-intro {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.6;
}

.cookies-hero__card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f0f7f7);
}

.cookies-hero__card strong {
  display: block;
  margin-bottom: 10px;
  color: #00383b;
  font-size: 26px;
  line-height: 1.15;
}

.cookies-hero__card p {
  margin-bottom: 12px;
}

.cookies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cookies-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
}

.cookies-card h2,
.cookies-footer h2 {
  margin-bottom: 14px;
  font-size: 28px;
  color: #00383b;
}

.cookies-list {
  margin: 0;
  padding-left: 20px;
}

.cookies-list li + li {
  margin-top: 10px;
}

.cookies-card--accent {
  background: linear-gradient(180deg, #eef8f8, #e3f1f2);
}

.cookies-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 18px;
  color: #fff !important;
  background: linear-gradient(90deg, #00383b, #036267);
  border-radius: 999px;
  text-decoration: none !important;
}

.cookies-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
  padding: 28px;
  background: #f8fbfb;
}

.cookies-footer p:last-child {
  margin-bottom: 0;
}

.bio-page {
  min-height: 100vh;
  color: #fff;
  background: #00383b url("../img/Group-15.png") center left / 400px auto no-repeat;
}

.bio-shell {
  width: min(700px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.bio-logo {
  width: 252px;
  margin-bottom: 30px;
}

.bio-shell p {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: 20px;
}

.bio-buttons {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.bio-buttons img {
  width: 400px;
  border-radius: 20px;
}

.bio-mark {
  width: 50px;
  margin-top: 20px;
}

.empty-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #00383b;
}

.empty-page img {
  width: min(360px, 70vw);
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 60px);
  }

  .hero {
    padding: 0 0 60px;
    background-size: 400px auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: -1;
    padding-top: 60px;
  }

  .hero-render {
    width: 100%;
    margin-top: 20px;
  }

  .brand {
    width: 252px;
  }

  .hero h1,
  .image-panel h2,
  .rooms h2,
  .map-section h2 {
    font-size: 40px;
  }

  .image-panel {
    min-height: auto;
    padding: 60px 30px;
  }

  .rooms {
    text-align: left;
  }

  .rooms p {
    font-size: 24px;
  }

  .reserve {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .reserve-copy h2 {
    margin-bottom: 34px;
  }

  .footer-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .footer-card img {
    width: min(400px, 100%);
  }

  .credit-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 60px);
  }

  body {
    font-size: 18px;
  }

  .hero {
    background-image: url("../img/imagem3.avif");
    background-position: top center;
    background-size: 560px auto;
  }

  .hero-copy {
    padding-top: 55px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  .hero-render {
    border-radius: 8px;
  }

  .image-panel p {
    font-size: 20px;
  }

  .rooms .pill,
  .pill {
    width: 100%;
  }

  .map-frame {
    height: 500px;
  }

  .footer-card {
    padding: 40px;
  }

  .footer-card p {
    font-size: 18px;
  }

  .bio-page {
    background-image: url("../img/Group-15-1.png");
    background-size: auto;
  }

  .bio-shell {
    padding-top: 100px;
  }

  .bio-buttons img {
    width: min(400px, 100%);
  }
}
