@font-face {
  font-family: "Libre Caslon Display";
  src: url("fonts/caslon-display.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/opensans-var.woff2") format("woff2-variations");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --support: #f4f1ed;
  --support-strong: #ebe6e0;
  --ink: #181716;
  --muted: #66615c;
  --line: #ded9d3;
  --red: #971521;
  --red-dark: #791019;
  --green: #147a35;
  --green-dark: #0f652b;
  --serif: "Libre Caslon Display", "Libre Caslon Text", Georgia, serif;
  --sans: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

section[id], #consulta { scroll-margin-top: 94px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
address { font-style: normal; }
[hidden] { display: none !important; }

:where(a, button, input, select):focus-visible {
  outline: 3px solid rgba(151, 21, 33, .32);
  outline-offset: 3px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(222, 217, 211, .86);
  box-shadow: 0 7px 30px rgba(41, 31, 24, .045);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand img { width: 46px; height: 58px; }
.brand span { display: grid; line-height: 1; }

.brand strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.brand small {
  justify-self: end;
  margin-top: 6px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.desktop-nav a:hover { color: var(--red); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 730;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .16s ease, border-color .16s ease;
}

.header-cta:hover { color: var(--white); background: var(--red-dark); border-color: var(--red-dark); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.menu-toggle svg { width: 27px; height: 27px; }

.mobile-menu {
  padding: 8px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}
.mobile-menu .button { margin-top: 18px; width: 100%; }

.hero { position: relative; background: var(--support); }

.hero-bg { position: absolute; inset: 0 0 0 42%; display: block; overflow: hidden; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 41.9%;
  width: 90px;
  z-index: 1;
  background: linear-gradient(90deg, var(--support) 0%, rgba(244, 241, 237, 0) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  z-index: 2;
  min-height: 630px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 490px;
  padding: 88px 46px 80px 0;
}

.hero h1 {
  max-width: 470px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(50px, 4.4vw, 70px);
  font-weight: 400;
  letter-spacing: -.036em;
  line-height: 1.1;
  text-shadow: none;
}

.hero-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
  line-height: 1.52;
  text-shadow: 0 1px 16px rgba(10, 8, 6, .5);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 730;
  line-height: 1.15;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.button-primary { color: var(--white); background: var(--red); border-color: var(--red); }
.button-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button-light { color: var(--red-dark); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }
.button-whatsapp { color: var(--white); background: var(--green); border-color: var(--green); }
.button-whatsapp:hover { background: var(--green-dark); border-color: var(--green-dark); }
.button-waze { color: #10343e; background: #33ccff; border-color: #33ccff; }
.button-waze:hover { color: #10343e; background: #62d8f5; border-color: #62d8f5; }
.button-uber { color: var(--white); background: #000; border-color: #000; }
.button-uber:hover { color: var(--white); background: #232323; border-color: #232323; }
.button > img { width: 23px; height: 23px; flex: none; object-fit: contain; }

.hero-primary {
  align-self: flex-start;
  margin-top: 28px;
}

.hero-address {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.hero-address:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.hero-address svg { width: 20px; height: 20px; flex: none; }

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 520px;
  margin-top: 15px;
}

.quick-action {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.quick-action > img { flex: none; object-fit: contain; }
.quick-action:hover { transform: translateY(-1px); box-shadow: 0 7px 18px rgba(25, 20, 16, .12); }
.quick-whatsapp { color: var(--white); background: var(--green); border-color: var(--green); }
.quick-whatsapp:hover { color: var(--white); background: var(--green-dark); border-color: var(--green-dark); }
.quick-uber { color: var(--white); background: #000; border-color: #000; }
.quick-uber:hover { color: var(--white); background: #232323; border-color: #232323; }
.quick-waze { color: #10343e; background: #33ccff; border-color: #33ccff; }
.quick-waze:hover { color: #10343e; background: #62d8f5; border-color: #62d8f5; }

.service-band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.service-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-band p {
  min-height: 86px;
  margin: 0;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.service-band p + p { border-left: 1px solid var(--line); }
.service-band svg { width: 25px; height: 25px; color: var(--red); flex: none; }
.service-band strong { font-size: 15px; font-weight: 700; }

.section { padding: 94px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 64px;
  align-items: end;
}

.section h1,
.section h2,
.footer-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.16;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

.suites-section { background: var(--white); }

.modal-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .13);
}
.modal-arrow svg { width: 22px; height: 22px; }
.modal-arrow-prev svg { transform: rotate(180deg); }

.booking-panel {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.5fr);
  gap: 48px;
  align-items: center;
  margin-top: 46px;
  padding: 34px 38px;
  background: var(--support);
  border-block: 1px solid var(--line);
}
.booking-copy h2 { font-size: 30px; }
.booking-copy p { margin: 10px 0 0; color: var(--muted); font-size: 16px; }
.booking-form {
  display: grid;
  grid-template-columns: 1.1fr .82fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.booking-form label { display: grid; gap: 6px; min-width: 0; }
.booking-form label > span { font-size: 13px; font-weight: 720; }
.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bdb7b0;
  border-radius: 0;
}
.booking-form .button { min-height: 50px; padding-inline: 14px; font-size: 14px; }
.booking-form select:disabled { color: #8a847d; background: #f3f0ed; cursor: not-allowed; }
.booking-quote {
  grid-column: 1 / span 3;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid #bdb7b0;
}
.booking-quote[hidden] { display: none; }
.booking-quote span { display: grid; gap: 2px; min-width: 0; }
.booking-quote strong { font-size: 13px; }
.booking-quote small { color: var(--muted); font-size: 11px; }
.booking-quote b { flex: 0 0 auto; color: var(--red); font-family: var(--font-display); font-size: 28px; font-weight: 500; }

.gastronomy { background: var(--support); }
.gastronomy-grid {
  display: grid;
  grid-template-columns: minmax(500px, 1.12fr) minmax(360px, .78fr);
  gap: clamp(56px, 7vw, 100px);
  align-items: center;
}
.food-main { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: #c9b8a7; }
.food-main img { width: 100%; height: 100%; object-fit: cover; }
.gastronomy-copy > p { margin: 21px 0 0; color: var(--muted); font-size: 18px; }
.gastronomy-copy ul { display: grid; gap: 11px; margin: 25px 0 30px; padding: 0; list-style: none; }
.gastronomy-copy li { display: flex; align-items: center; gap: 10px; }
.gastronomy-copy li svg { color: var(--red); }
.image-note { display: block; margin-top: 13px; color: var(--muted); font-size: 13px; }

.location-section { padding-top: 24px; background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: minmax(270px, .8fr) minmax(360px, 1.15fr) auto;
  gap: 44px;
  align-items: center;
  padding-block: 52px;
  border-block: 1px solid var(--line);
}
.location-copy h2 { font-size: 38px; }
.location-copy p { margin: 12px 0 0; color: var(--muted); font-size: 17px; }
.location-grid address { display: grid; color: var(--muted); }
.location-grid address strong { margin-bottom: 4px; color: var(--ink); }
.location-actions { display: flex; gap: 9px; }

.site-footer { padding: 0 0 24px; color: #d8d1ca; background: var(--ink); }
.footer-cta {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #373330;
}
.footer-cta h2 { color: var(--white); font-size: 36px; }
.footer-cta p { margin: 8px 0 0; color: #aaa39d; font-size: 17px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .7fr .7fr .9fr;
  gap: 54px;
  padding-top: 54px;
}
.brand-footer strong, .brand-footer small { color: #fff; }
.footer-brand > p { max-width: 330px; margin: 18px 0 0; color: #aaa39d; }
.footer-brand > p + p { margin-top: 4px; }
.footer-grid nav { display: grid; align-content: start; gap: 9px; }
.footer-grid nav strong { margin-bottom: 7px; color: var(--white); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid #373330;
  color: #8f8881;
  font-size: 14px;
}
.footer-bottom p { margin: 0; }

.gallery-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 28px;
  background: rgba(14, 12, 10, .84);
  overflow: auto;
}
.gallery-modal-panel {
  width: min(1180px, 100%);
  min-height: calc(100vh - 56px);
  margin: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
}
.gallery-modal header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 28px;
}
.gallery-modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.025em;
}
.gallery-modal header button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.gallery-modal figure {
  position: relative;
  height: min(66vw, calc(100vh - 210px), 760px);
  min-height: 460px;
  margin: 0 28px;
  overflow: hidden;
  background: #e7e1d9;
}
.gallery-modal figure > img { width: 100%; height: 100%; object-fit: cover; }
.modal-arrow-prev { left: 18px; }
.modal-arrow-next { right: 18px; }
.gallery-modal footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 28px; }
.gallery-modal footer button { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding: 0; color: var(--red); background: transparent; border: 0; font-weight: 750; }

@media (max-width: 1160px) {
.desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 14px; }
  .header-cta { display: none; }
  .hero-grid { min-height: 540px; }
  .booking-panel { grid-template-columns: 1fr; gap: 25px; }
  .location-grid { grid-template-columns: .8fr 1fr; }
  .location-actions { grid-column: 1 / -1; }
}

@media (min-width: 861px) {
.mobile-menu { display: none !important; }
}

@media (max-width: 860px) {
.shell { width: min(100% - 32px, 720px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 38px; height: 48px; }
  .brand strong { font-size: 15px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }

  .hero { padding-top: min(68vw, 420px); }
  .hero-bg { inset: 0 0 auto; height: min(68vw, 420px); }
  .hero-bg img { object-position: 52% 49%; }
  .hero::after {
    inset: min(68vw, 420px) 0 auto;
    width: auto;
    height: 42px;
    background: linear-gradient(180deg, rgba(244, 241, 237, 0) 0%, var(--support) 100%);
  }
  .hero-grid { width: 100%; min-height: 0; }
  .hero-copy { max-width: none; padding: 45px 0 38px; }
  .hero h1 { font-size: clamp(37px, 9.5vw, 48px); }
  .hero-copy > p { margin-top: 17px; font-size: 17px; }
  .hero-primary { width: 100%; margin-top: 22px; }
  .hero-address { margin-top: 18px; font-size: 14px; }
  .quick-actions { max-width: none; margin-top: 12px; }

  .service-band-grid { grid-template-columns: repeat(2, 1fr); }
  .service-band p { min-height: 64px; justify-content: flex-start; padding: 13px 18px; }
  .service-band p + p { border-left: 1px solid var(--line); }
  .service-band strong { font-size: 14px; }

  .section { padding: 72px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 13px; align-items: start; }
  .section h1,
  .section h2 { font-size: 33px; }
  .section-heading > p { font-size: 17px; }

  .booking-panel { width: 100%; margin-top: 38px; padding: 32px 24px; }
  .booking-copy h2 { font-size: 30px; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-field-suite,
  .booking-field-period,
  .booking-quote,
  .booking-form .button { grid-column: 1 / -1; }

  .gastronomy-grid { grid-template-columns: 1fr; gap: 38px; }
  .gastronomy-copy { max-width: 620px; }

  .location-section { padding-top: 0; }
  .location-grid { grid-template-columns: 1fr; gap: 25px; padding: 42px 0; }
  .location-actions { grid-column: auto; }

  .footer-cta { min-height: 0; align-items: flex-start; flex-direction: column; padding-block: 44px; }
  .footer-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-modal { padding: 14px; display: flex; align-items: center; }
  .gallery-modal-panel { min-height: 0; grid-template-rows: auto auto auto; }
  .gallery-modal header { padding: 15px 16px; }
  .gallery-modal figure { height: auto; min-height: 0; aspect-ratio: 4 / 3; margin: 0; }
  .gallery-modal footer { padding: 13px 16px calc(13px + env(safe-area-inset-bottom)); }
}

@media (max-width: 560px) {
body { font-size: 16px; }
  .shell { width: calc(100% - 28px); }
  .header-inner { width: calc(100% - 24px); }
  .brand { gap: 8px; }
  .brand img { width: 35px; height: 44px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 8px; }

  .hero { padding-top: 64vw; }
  .hero-bg { height: 64vw; }
  .hero::after { top: 64vw; }
  .hero-copy { padding: 40px 0 30px; }
  .hero h1 { font-size: 39px; }
  .hero-copy > p { line-height: 1.48; }
  .hero-address { align-items: flex-start; }
  .quick-action { min-height: 54px; padding: 7px 4px; font-size: 13px; }
  .quick-action > img { width: 23px; height: 23px; }
  .quick-action.quick-uber > img { width: 52px; }

  .section { padding: 62px 0; }
  .section h1,
  .section h2 { font-size: 30px; }

  .booking-panel { padding: 29px 20px; }
  .booking-form { grid-template-columns: 1fr; gap: 13px; }
  .booking-field-suite,
  .booking-field-period,
  .booking-quote,
  .booking-form .button { grid-column: auto; }
  .booking-quote { min-height: 62px; }
  .booking-quote b { font-size: 26px; }

  .gastronomy .button { width: 100%; }

  .location-actions { display: grid; }
  .location-actions .button { width: 100%; }

  .footer-cta h2 { font-size: 31px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }

  .gallery-modal h2 { font-size: 28px; }
  .gallery-modal header button,
  .modal-arrow { width: 44px; height: 44px; }
  .gallery-modal footer { font-size: 14px; }
}

@media (max-width: 860px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .wa-float {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(66px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-radius: 0;
    box-shadow: 0 -5px 22px rgba(0, 0, 0, .16);
  }
  .wa-float::after {
    content: "RESERVE AGORA";
    margin-left: 10px;
    color: var(--white);
    font-weight: 750;
  }
}

@media (max-width: 380px) {
.hero h1 { font-size: 35px; }
  .hero-copy > p { font-size: 16px; }
  .quick-action span { font-size: 12px; }
  .service-band p { padding-inline: 12px; }
  .service-band svg { width: 22px; height: 22px; }
  .service-band strong { font-size: 13px; }
  .booking-panel { padding-inline: 18px; }
}

@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- lista de suítes: foto grande, comodidades e um botão ---------- */
.suite-list { display: grid; gap: 30px; margin-top: 42px; }

.suite-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.suite-row-media { position: relative; min-width: 0; background: #1a1816; }

.suite-row-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: none;
  border: 0;
}

.suite-row-open > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.suite-row-body { display: flex; flex-direction: column; min-width: 0; padding: 36px 36px 34px; }

.suite-row-theme {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.suite-row-body h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.12;
}

.suite-row-desc { margin: 12px 0 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

.suite-row-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.suite-row-amenities li { display: flex; align-items: center; gap: 9px; font-size: 15px; }
.suite-row-amenities svg { width: 18px; height: 18px; flex: none; color: var(--green); }

.suite-row-price {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
}

.suite-row-price strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

.suite-row-cta { align-self: flex-start; margin-top: 24px; }

@media (max-width: 860px) {
.suite-list { gap: 24px; margin-top: 32px; }
  .suite-row { grid-template-columns: 1fr; }
  .suite-row-open > img { min-height: 0; height: 258px; }
  .suite-row-body { padding: 26px 22px 28px; }
  .suite-row-body h3 { font-size: 31px; }
  .suite-row-amenities { grid-template-columns: 1fr; gap: 8px; }
  .suite-row-cta { align-self: stretch; width: 100%; margin-top: 22px; }
}

@media (max-width: 560px) {
.suite-row-open > img { height: 236px; }
  .suite-row-body h3 { font-size: 29px; }
  .suite-row-price strong { font-size: 30px; }
}

@media (max-width: 560px) {
      }

/* ---------- botão flutuante do WhatsApp ---------- */
.wa-float {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
  transition: box-shadow .3s ease, transform .25s ease;
}

.wa-float img { width: 34px; height: 34px; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(0, 0, 0, .2); }
body.modal-open .wa-float { visibility: hidden; pointer-events: none; }

@media (max-width: 560px) {
  .wa-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }
  .wa-float img { width: 31px; height: 31px; }
}

/* ---------- promoções ---------- */
.promo-section { background: var(--support); border-block: 1px solid var(--line); }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 42px;
}

.promo-card {
  display: flex;
  flex-direction: column;
  padding: 38px 36px 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.promo-tag {
  align-self: flex-start;
  padding: 7px 13px;
  color: var(--red);
  background: #fbf1f1;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.promo-card h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.16;
}

.promo-card p { margin: 14px 0 0; color: var(--muted); font-size: 17px; line-height: 1.6; }

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 46px;
  margin-top: 20px;
  color: var(--red);
  font-weight: 740;
}

.promo-link svg { width: 19px; height: 19px; }
.promo-link:hover { gap: 12px; }

.promo-note { margin: 26px auto 0; color: var(--muted); font-size: 15px; }

@media (max-width: 860px) {
  .promo-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
  .promo-card { padding: 28px 22px 26px; }
  .promo-card h3 { font-size: 28px; }
}

/* ---------- gastronomia: mosaico de pratos ---------- */
.food-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.food-mosaic figure { position: relative; margin: 0; overflow: hidden; background: #1a1816; }
.food-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.food-mosaic .food-big { grid-column: 1 / -1; }
.food-mosaic .food-big img { height: 340px; }
.food-mosaic figure:not(.food-big) img { height: 210px; }
.food-mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px 10px;
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0) 0%, rgba(20, 16, 13, .82) 100%);
  font-size: 13px;
  font-weight: 700;
}
.food-mosaic .food-big figcaption { padding: 26px 18px 14px; font-size: 15px; }

@media (max-width: 860px) {
  .food-mosaic .food-big img { height: 300px; }
  .food-mosaic figure:not(.food-big) img { height: 180px; }
}

@media (max-width: 560px) {
  .food-mosaic { gap: 9px; }
  .food-mosaic .food-big img { height: 230px; }
  .food-mosaic figure:not(.food-big) img { height: 135px; }
  .food-mosaic figcaption { font-size: 12px; padding: 14px 11px 9px; }
}

/* ---------- modal da suíte: fotos + informações ---------- */
.modal-info { padding: 20px 28px 4px; border-top: 1px solid var(--line); }
.modal-info > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.modal-amenities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px 20px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.modal-amenities li { display: flex; align-items: center; gap: 8px; font-size: 15px; }
.modal-amenities svg { width: 17px; height: 17px; flex: none; color: var(--green); }
.modal-price { margin: 18px 0 0; color: var(--muted); font-size: 15px; }
.modal-price strong {
  margin-left: 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

@media (max-width: 860px) {
  .modal-info { padding: 16px 16px 2px; }
  .modal-amenities { grid-template-columns: 1fr 1fr; gap: 8px 14px; }
  .modal-amenities li { font-size: 14px; }
}

@media (max-width: 560px) {
  .modal-amenities { grid-template-columns: 1fr; }
}

/* ---------- ações do card da suíte ---------- */
.suite-row-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: 24px; }
.suite-row-cta { align-self: flex-start; margin-top: 0; }

.suite-row-more {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 720;
}

.suite-row-more svg { width: 19px; height: 19px; }
.suite-row-more:hover { color: var(--red); }
.suite-row-open { cursor: pointer; }

@media (max-width: 860px) {
  .suite-row-actions { display: grid; gap: 4px; }
  .suite-row-cta { width: 100%; }
  .suite-row-more { justify-content: center; min-height: 50px; }
}

/* ---------- marca: coração de pincel + traço vermelho ---------- */
.brand { gap: 0; }
.brand-mark { width: 46px; height: 58px; flex: none; object-fit: contain; }

.brand span {
  margin-left: 15px;
  padding-left: 16px;
  border-left: 1.5px solid var(--red);
}

.brand-footer strong, .brand-footer small { color: var(--white); }
.brand-footer span { border-left-color: rgba(255, 255, 255, .55); }

@media (max-width: 860px) {
  .brand-mark { width: 38px; height: 48px; }
  .brand span { margin-left: 11px; padding-left: 12px; }
}

@media (max-width: 560px) {
  .brand-mark { width: 35px; height: 44px; }
}

/* ---------- hero: só headline e CTA, sem parágrafo ---------- */
.quick-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 380px; }
.hero-primary { margin-top: 34px; }
.hero h1 { max-width: 15ch; }

@media (max-width: 860px) {
  .hero-grid { min-height: 0; }
  .hero-copy { justify-content: center; padding: 45px 0 38px; }
  .hero h1 { max-width: none; }
  .hero-primary { margin-top: 26px; }
  .quick-actions { max-width: none; }
}

@media (max-width: 560px) {
  .hero-grid { min-height: 0; }
  .hero-copy { padding: 40px 0 32px; }
}

/* ---------- v08: abertura integrada à fachada ---------- */
.hero {
  min-height: clamp(620px, calc(100vh - 82px), 760px);
  background: #36352f;
  isolation: isolate;
}

.hero-bg {
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  object-position: center 53%;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 14, 12, .84) 0%, rgba(15, 14, 12, .68) 29%, rgba(15, 14, 12, .2) 58%, rgba(15, 14, 12, .02) 76%),
    linear-gradient(0deg, rgba(15, 14, 12, .31) 0%, rgba(15, 14, 12, 0) 42%);
  pointer-events: none;
}

.hero::after { display: none; }

.hero-grid {
  min-height: clamp(620px, calc(100vh - 82px), 760px);
}

.hero-copy {
  max-width: 560px;
  padding: 94px 0 78px;
}

.hero h1 {
  max-width: 9.7ch;
  color: var(--white);
  font-size: clamp(58px, 5.3vw, 84px);
  line-height: 1.01;
  text-wrap: balance;
  text-shadow: 0 3px 30px rgba(0, 0, 0, .34);
}

.hero-primary {
  margin-top: 34px;
  min-height: 56px;
  padding-inline: 27px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(83, 5, 14, .24);
}

.hero-address {
  margin-top: 28px;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .42);
}

.hero-address:hover { color: var(--white); }

.quick-actions { margin-top: 16px; }

.quick-action {
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .17);
}

@media (max-width: 1160px) {
  .hero,
  .hero-grid { min-height: 600px; }
}

@media (max-width: 860px) {
  .hero {
    min-height: min(780px, calc(100svh - 68px));
    padding-top: 0;
  }

  .hero-bg {
    inset: 0;
    height: 100%;
  }

  .hero-bg img {
    object-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(15, 14, 12, .9) 0%, rgba(15, 14, 12, .72) 32%, rgba(15, 14, 12, .16) 70%, rgba(15, 14, 12, .04) 100%),
      linear-gradient(90deg, rgba(15, 14, 12, .32) 0%, rgba(15, 14, 12, 0) 76%);
  }

  .hero-grid {
    width: min(100% - 32px, 720px);
    min-height: min(780px, calc(100svh - 68px));
    align-items: end;
  }

  .hero-copy {
    max-width: 600px;
    padding: 250px 0 42px;
  }

  .hero h1 {
    max-width: 9.4ch;
    color: var(--white);
    font-size: clamp(47px, 12vw, 68px);
    line-height: 1.01;
  }

  .hero-primary {
    width: auto;
    margin-top: 24px;
  }

  .hero-address {
    margin-top: 22px;
    color: rgba(255, 255, 255, .92);
  }
}

@media (max-width: 560px) {
  .hero { min-height: min(740px, calc(100svh - 68px)); }
  .hero-bg { height: 100%; }
  .hero-bg img { object-position: 57% center; }
  .hero-grid {
    width: calc(100% - 28px);
    min-height: min(740px, calc(100svh - 68px));
  }
  .hero-copy { padding: 225px 0 30px; }
  .hero h1 { font-size: clamp(45px, 13vw, 59px); }
  .hero-primary { width: 100%; margin-top: 22px; }
  .hero-address { margin-top: 18px; font-size: 13px; }
  .quick-actions { gap: 10px; }
}

@media (max-width: 380px) {
  .hero { min-height: 690px; }
  .hero-grid { min-height: 690px; }
  .hero-copy { padding-top: 205px; }
  .hero h1 { font-size: 43px; }
}

/* ---------- consulta: botão do WhatsApp sem quebrar linha ---------- */
.booking-form .button-whatsapp { white-space: nowrap; padding-inline: 16px; }

/* ---------- modal da suíte: cabe na tela com foto + informações ---------- */
.gallery-modal { display: flex; align-items: center; padding: 20px; }

.gallery-modal-panel {
  height: calc(100vh - 40px);
  min-height: 0;
  max-height: calc(100vh - 40px);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
}

.gallery-modal figure { min-height: 0; height: auto; margin: 0; }
.gallery-modal figure img { width: 100%; height: 100%; max-height: 52vh; object-fit: cover; }
.modal-info { overflow-y: auto; }

@media (max-width: 860px) {
  .gallery-modal { padding: 12px; }
  .gallery-modal-panel {
    height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
  }
  .gallery-modal figure img { max-height: 40vh; }
  .gallery-modal h2 { font-size: 27px; }
  .gallery-modal header { padding: 14px 16px; }
}

/* ---------- ação fixa no celular ---------- */
@media (max-width: 860px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .wa-float,
  .wa-float:hover {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(64px + env(safe-area-inset-bottom));
    padding: 0 20px env(safe-area-inset-bottom);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #25d366;
    border-radius: 0;
    box-shadow: 0 -5px 22px rgba(0, 0, 0, .16);
    transform: none;
  }
  .wa-float img { width: 27px; height: 27px; }
  .wa-float::after {
    content: "RESERVE AGORA";
    margin-left: 10px;
    color: var(--white);
    font-size: 15px;
    font-weight: 760;
  }
}

/* ---------- v09: abertura leve e curta no celular ---------- */
@media (max-width: 860px) {
  body { padding-bottom: 0; }

  .hero {
    min-height: 0;
    padding: 0 0 30px;
    overflow: visible;
    background: var(--support);
  }

  .hero-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: clamp(340px, 65vw, 440px);
  }

  .hero-bg img {
    object-position: 50% 50%;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: block;
    width: min(100% - 32px, 720px);
    min-height: 0;
    margin-top: -68px;
  }

  .hero-copy {
    max-width: none;
    padding: 30px 26px 26px;
    color: var(--ink);
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(214, 206, 198, .9);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(48, 38, 29, .14);
  }

  .hero h1 {
    max-width: 12ch;
    color: var(--ink);
    font-size: clamp(43px, 8.7vw, 58px);
    line-height: 1.02;
    text-shadow: none;
  }

  .hero-primary {
    width: auto;
    min-width: 190px;
    margin-top: 22px;
  }

  .hero-address {
    margin-top: 18px;
    color: #5c5752;
    text-shadow: none;
  }

  .hero-address:hover { color: var(--red); }
  .quick-actions { margin-top: 13px; }

  .wa-float,
  .wa-float:hover {
    position: fixed;
    z-index: 80;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: auto;
    width: 58px;
    height: 58px;
    padding: 0;
    color: var(--white);
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .28);
    transform: none;
  }

  .wa-float img { width: 32px; height: 32px; }
  .wa-float::after { display: none; content: none; }
}

@media (max-width: 560px) {
  .hero { min-height: 0; padding-bottom: 24px; }
  .hero-bg { height: clamp(320px, 90vw, 370px); }
  .hero-grid {
    width: calc(100% - 24px);
    min-height: 0;
    margin-top: -58px;
  }
  .hero-copy { padding: 26px 20px 22px; border-radius: 21px; }
  .hero h1 { max-width: 11ch; font-size: clamp(40px, 11.5vw, 49px); }
  .hero-primary { width: 100%; min-height: 52px; margin-top: 19px; }
  .hero-address { margin-top: 16px; font-size: 13px; line-height: 1.4; }
  .quick-actions { gap: 9px; margin-top: 11px; }
  .quick-action { min-height: 50px; }
  .wa-float,
  .wa-float:hover {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }
  .wa-float img { width: 31px; height: 31px; }
}

@media (max-width: 380px) {
  .hero-bg { height: 330px; }
  .hero h1 { font-size: 39px; }
}

/* v12: a galeria preserva o enquadramento completo de cada fotografia. */
.gallery-modal figure {
  height: 100%;
  min-height: 0;
  margin: 0 28px;
  display: grid;
  place-items: center;
  background: #171513;
}

.gallery-modal figure > img,
.gallery-modal figure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}

/* v12: lockup centralizado no mobile, com o menu preservado à direita. */
@media (max-width: 860px) {
  .header-inner {
    position: relative;
    justify-content: center;
    gap: 0;
    min-height: 72px;
  }

  .header-inner > .brand {
    position: absolute;
    left: 50%;
    max-width: calc(100% - 112px);
    transform: translateX(-50%);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    margin-left: auto;
  }

  .brand-mark,
  .brand img {
    width: 35px;
    height: 44px;
  }

  .brand span {
    margin-left: 9px;
    padding-left: 10px;
  }

  .gallery-modal figure {
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 380px) {
  .brand-mark,
  .brand img {
    width: 32px;
    height: 41px;
  }

  .brand strong { font-size: 13px; }
  .brand small { font-size: 7px; }
}

/* v13: fotografia integral sem faixas laterais. */
.gallery-modal {
  overflow-y: auto;
}

.gallery-modal-panel {
  width: min(980px, 100%);
  height: auto;
  max-height: calc(100vh - 40px);
  grid-template-columns: minmax(0, 1fr) 320px;
  grid-template-rows: auto auto auto;
  overflow-y: auto;
}

.gallery-modal header {
  grid-column: 1 / -1;
  grid-row: 1;
}

.gallery-modal figure {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--support);
}

.modal-info {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 24px 24px 18px;
  overflow-y: auto;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.modal-info .modal-amenities {
  grid-template-columns: 1fr;
}

.gallery-modal footer {
  grid-column: 1 / -1;
  grid-row: 3;
}

@media (max-width: 860px) {
  .gallery-modal-panel {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 24px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    overflow-y: auto;
  }

  .gallery-modal header {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-modal figure {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .modal-info {
    grid-column: 1;
    grid-row: 3;
    padding: 16px 16px 8px;
    overflow: visible;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .modal-info .modal-amenities {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-modal footer {
    grid-column: 1;
    grid-row: 4;
  }
}

@media (max-width: 560px) {
  .modal-info .modal-amenities {
    grid-template-columns: 1fr;
  }
}

/* v14: ajustes aprovados pelo José — marca editorial e hero mobile integrado. */
.brand strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .025em;
}

@media (max-width: 860px) {
  .hero {
    min-height: clamp(580px, calc(100svh - 72px), 720px);
    padding: 0;
    overflow: hidden;
    background: #201d1a;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
  }

  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
  }

  .hero::before {
    display: block;
    z-index: -1;
    background:
      linear-gradient(0deg, rgba(13, 12, 11, .92) 0%, rgba(13, 12, 11, .7) 37%, rgba(13, 12, 11, .16) 75%, rgba(13, 12, 11, .04) 100%),
      linear-gradient(90deg, rgba(13, 12, 11, .4) 0%, rgba(13, 12, 11, 0) 82%);
  }

  .hero::after { display: none; }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: end;
    width: min(100% - 32px, 720px);
    min-height: clamp(580px, calc(100svh - 72px), 720px);
    margin-top: 0;
  }

  .hero-copy {
    max-width: 620px;
    padding: 230px 0 38px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero h1 {
    max-width: 9.4ch;
    color: var(--white);
    font-size: clamp(48px, 12vw, 68px);
    line-height: 1.01;
    text-shadow: 0 3px 30px rgba(0, 0, 0, .45);
  }

  .hero-address {
    margin-top: 26px;
    color: rgba(255, 255, 255, .94);
    text-shadow: 0 2px 16px rgba(0, 0, 0, .52);
  }

  .hero-address:hover { color: var(--white); }
  .quick-actions { margin-top: 15px; }
  .brand strong { font-size: 17px; }
}

@media (max-width: 560px) {
  .hero,
  .hero-grid {
    min-height: clamp(570px, calc(100svh - 72px), 690px);
  }

  .hero-grid { width: calc(100% - 28px); }
  .hero-bg img { object-position: 56% center; }
  .hero-copy { padding: 210px 0 30px; }
  .hero h1 { max-width: 9.2ch; font-size: clamp(45px, 13vw, 58px); }
  .hero-address { margin-top: 22px; font-size: 13px; line-height: 1.4; }
  .quick-actions { gap: 10px; margin-top: 12px; }
  .brand strong { font-size: 15px; }
}

/* v14: opção 2 aprovada — abertura mobile compacta e integrada à fachada. */
@media (max-width: 860px) {
  .home-page .site-header {
    position: absolute;
    inset: 0 0 auto;
    color: var(--white);
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-page .header-inner {
    min-height: 132px;
  }

  .home-page .site-header .brand strong,
  .home-page .site-header .brand small,
  .home-page .site-header .menu-toggle {
    color: var(--white);
  }

  .home-page .site-header .brand span {
    border-left-color: rgba(255, 255, 255, .72);
  }

  .home-page .site-header:has(.mobile-menu:not([hidden])) {
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(30, 24, 19, .12);
  }

  .home-page .mobile-menu nav a {
    color: var(--ink);
  }

  .home-page .site-header:has(.mobile-menu:not([hidden])) .brand strong,
  .home-page .site-header:has(.mobile-menu:not([hidden])) .brand small,
  .home-page .site-header:has(.mobile-menu:not([hidden])) .menu-toggle {
    color: var(--ink);
  }

  .home-page .site-header:has(.mobile-menu:not([hidden])) .brand span {
    border-left-color: var(--red);
  }

  .home-page .hero {
    height: clamp(540px, 68.7svh, 650px);
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #17304a;
  }

  .home-page .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #17304a;
  }

  .home-page .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .home-page .hero::before {
    display: block;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(5, 13, 21, .74) 0%, rgba(8, 15, 21, .18) 25%, rgba(11, 12, 13, .12) 53%, rgba(11, 12, 13, .94) 100%);
  }

  .home-page .hero::after { display: none; }

  .home-page .hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: end;
    width: min(82%, 354px);
    height: 100%;
    min-height: 0;
    margin-top: 0;
  }

  .home-page .hero-copy {
    max-width: 620px;
    padding: 0 0 40px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .home-page .hero h1 {
    max-width: none;
    color: var(--white);
    font-size: clamp(34px, 9.3vw, 40px);
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 3px 24px rgba(0, 0, 0, .46);
  }

  .home-page .hero-address {
    min-height: 0;
    margin-top: 15px;
    color: rgba(255, 255, 255, .95);
    font-size: 13px;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .58);
  }

  .home-page .hero-address:hover { color: var(--white); }

  .home-page .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    margin-top: 14px;
  }

  .home-page .quick-action {
    min-height: 40px;
    padding-block: 6px;
  }

  .home-page .service-band p {
    min-height: 42px;
    padding: 4px 6px;
  }

  .home-page .service-band p + p {
    position: relative;
    border-left: 0;
  }

  .home-page .service-band p + p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 26px;
    background: var(--line);
    transform: translateY(-50%);
  }

  .home-page .suites-section {
    padding-top: 38px;
  }

  .home-page .suite-list {
    margin-top: 26px;
  }
}

@media (max-width: 560px) {
  .home-page .header-inner {
    width: calc(100% - 46px);
    min-height: 132px;
  }

  .home-page .header-inner > .brand {
    left: calc(50% - 22px);
  }

  .home-page .brand-mark,
  .home-page .brand img {
    width: 47px;
    height: 60px;
  }

  .home-page .brand span {
    margin-left: 12px;
    padding-left: 14px;
  }

  .home-page .brand strong {
    font-size: 20px;
    white-space: nowrap;
  }
  .home-page .brand small { margin-top: 7px; font-size: 8px; }
  .home-page .menu-toggle svg { width: 36px; height: 36px; }

  .home-page .hero {
    height: clamp(540px, 68.7svh, 650px);
  }

  .home-page .hero-bg img {
    height: 100%;
    object-position: center;
  }

  .home-page .hero-copy { padding-bottom: 50px; }

  .home-page .hero h1 {
    max-width: none;
    font-size: clamp(34px, 9.3vw, 40px);
    white-space: nowrap;
  }

  .home-page .hero-address {
    margin-top: 15px;
    font-size: 13px;
    white-space: nowrap;
  }

  .home-page .hero-address svg {
    width: 18px;
    height: 18px;
  }

  .home-page .quick-actions {
    gap: 12px;
    margin-top: 14px;
  }

  .home-page .quick-action { min-height: 40px; }
  .home-page .quick-action.quick-uber > img { width: 48px; }
  .home-page .quick-action.quick-waze > img { width: 24px; height: 24px; }

  .home-page .service-band p {
    min-height: 42px;
    padding: 4px 6px;
  }

  .home-page .service-band strong { font-size: 10px; }
  .home-page .service-band svg { width: 17px; height: 17px; }
  .home-page .suites-section { padding-top: 34px; }
}

@media (max-width: 370px) {
  .home-page .brand-mark,
  .home-page .brand img {
    width: 39px;
    height: 50px;
  }

  .home-page .brand strong {
    font-size: 16.5px;
    white-space: nowrap;
  }
  .home-page .hero h1 { font-size: 32px; }
  .home-page .hero-address { font-size: 10.8px; }
}

/* Tabela de períodos e valores 2026. */
.modal-rates {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.modal-rates summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal-rates summary::-webkit-details-marker { display: none; }
.modal-rates summary::after { content: "+"; color: var(--red); font-size: 20px; line-height: 1; }
.modal-rates[open] summary::after { content: "−"; }
.modal-rates-body { margin-top: 16px; }

.modal-rate-group + .modal-rate-group {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.modal-rate-group header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
}

.modal-rate-group header strong {
  color: var(--ink);
  font-size: 14px;
}

.modal-rate-group header span {
  flex: none;
  color: var(--muted);
  font-size: 12px;
}

.modal-rate-group dl {
  display: grid;
  gap: 7px;
  margin: 11px 0 0;
}

.modal-rate-group dl > div,
.modal-rate-additional {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.modal-rate-group dt,
.modal-rate-group dd {
  margin: 0;
  font-size: 13px;
}

.modal-rate-group dt { color: var(--muted); }
.modal-rate-group dd { color: var(--ink); font-weight: 740; }

.modal-rate-group > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.modal-rate-additional {
  margin: 17px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.modal-rate-additional strong { color: var(--ink); }

@media (max-width: 860px) {
  .modal-rates { margin-top: 19px; padding-top: 17px; }
  .modal-rate-group header { padding: 0; }
}
