:root {
  --anchor-offset: 112px;
  --bg: #05070b;
  --bg-soft: #0b1118;
  --panel: rgba(11, 16, 24, 0.86);
  --panel-strong: rgba(15, 21, 31, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 211, 77, 0.18);
  --text: #f3f6fb;
  --muted: #b1bdcc;
  --blue: #25a8d2;
  --blue-deep: #176f8e;
  --blue-soft: rgba(37, 168, 210, 0.14);
  --blue-glow: rgba(37, 168, 210, 0.24);
  --yellow: #f4c44e;
  --success: #36d39b;
  --danger: #ff6b6b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --radius-sm: 6px;
  --display: "Bebas Neue", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 181, 234, 0.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 211, 77, 0.08), transparent 22%),
    linear-gradient(180deg, #07090e 0%, #05070b 52%, #070b12 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.015), transparent 25%),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 32px,
      rgba(255, 255, 255, 0.012) 32px,
      rgba(255, 255, 255, 0.012) 34px
    );
  opacity: 0.8;
}

body::after {
  background:
    radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 70% 72%, rgba(30, 181, 234, 0.08), transparent 16%);
  opacity: 0.55;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 3px 3px;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #161000;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.4rem);
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header--minimal {
  gap: 1rem 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1.1rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav {
  display: none;
  gap: 1.1rem;
  color: var(--muted);
}

.main-nav a {
  white-space: nowrap;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-header--minimal .main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.25rem);
}

.main-nav a {
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.main-nav a.is-current,
.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.page-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.hero-shell,
.content-section,
.room-details-panel,
.whatsapp-contact-card,
.info-card,
.final-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    linear-gradient(150deg, rgba(43, 127, 255, 0.08), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
}

#inicio,
#como-funciona,
#faq,
#escolha-sua-sala,
#whatsapp-section {
  scroll-margin-top: var(--anchor-offset);
}

.hero-shell {
  min-height: 78vh;
  display: grid;
  align-items: center;
  margin-top: 1.4rem;
}

.home-hero {
  min-height: min(880px, calc(100vh - 2rem));
  background: #05070b;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 80px rgba(4, 8, 14, 0.52);
}

.hero-shell--compact {
  min-height: 42vh;
}

.background-motion-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.background-motion-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 11, 0.2), rgba(4, 7, 11, 0.8)),
    linear-gradient(120deg, rgba(4, 7, 11, 0.1), rgba(4, 7, 11, 0.66));
}

.background-motion-layer video,
.background-motion-layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 240ms ease;
}

.background-motion-layer video {
  transform: scale(1.035);
  filter: saturate(0.82) contrast(1.08) brightness(0.56);
}

.background-motion-layer.is-active video {
  opacity: 0.48;
}

.background-motion-layer.is-active img,
.background-motion-layer.is-fallback img {
  opacity: 0.54;
}

.background-motion-layer.is-fallback video {
  display: none;
}

.background-motion-layer--hero::after {
  background: linear-gradient(
    180deg,
    rgba(2, 5, 8, 0.18) 0%,
    rgba(2, 5, 8, 0.42) 38%,
    rgba(2, 5, 8, 0.84) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 780px;
}

.hero-inner--compact {
  max-width: 100%;
}

.hero-inner--home {
  display: grid;
  gap: clamp(1rem, 3vw, 1.65rem);
  justify-items: center;
  max-width: 1280px;
  padding-block: clamp(3.2rem, 8vw, 5.8rem);
  margin-inline: auto;
  text-align: center;
}

.hero-brand-lockup {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, 0.78fr);
  align-items: center;
  justify-items: center;
  gap: clamp(1.6rem, 4vw, 3.35rem);
}

.hero-brand-copy {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: 480px;
  text-align: center;
}

.hero-mark {
  display: block;
  width: min(100%, clamp(900px, 92vw, 1500px));
  max-width: 100%;
  margin: 0;
  filter: drop-shadow(0 30px 62px rgba(0, 0, 0, 0.54));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
}

.eyebrow::before {
  content: "";
  width: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3.3rem, 9vw, 6.6rem);
  margin-top: 0.8rem;
}

.home-hero h1 {
  max-width: 10.2ch;
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.home-hero h1 span {
  display: block;
}

.home-hero .hero-line--lead {
  font-size: 1.1em;
}

.home-hero .hero-line--support {
  font-size: 0.96em;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h3 {
  margin: 0;
  font-size: 1.3rem;
}

.hero-subtitle,
.hero-copy,
.section-heading p,
.page-copy p,
.page-chip span,
.info-card p,
.room-catalog-subtitle,
.room-catalog-note,
.detail-card li,
.fatal-error {
  color: var(--muted);
  line-height: 1.5;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  color: var(--text);
  margin-top: 0.65rem;
}

.hero-copy {
  max-width: 620px;
  font-size: 1.08rem;
  margin-top: 1rem;
}

.hero-hours {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
}

.hero-hours strong {
  color: var(--yellow);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-hours span {
  color: rgba(255, 211, 77, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.hero-tagline {
  margin: 0.9rem 0 0;
  color: #d6e0eb;
  letter-spacing: 0.04em;
  font-size: 0.96rem;
  font-weight: 500;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.9rem;
  justify-content: center;
}

.hero-brand-copy .hero-actions {
  margin-top: 0;
  justify-content: center;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-highlights--centered {
  justify-content: center;
  margin-top: 0;
}

.hero-highlights span,
.page-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  font-weight: 600;
  color: #d8e2ee;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 196px;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 70%, #84dbf4);
  color: #041018;
  border-color: rgba(132, 219, 244, 0.16);
  box-shadow: 0 18px 46px rgba(37, 168, 210, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 22px 54px rgba(37, 168, 210, 0.3);
}

.btn-accent {
  background: linear-gradient(120deg, #e8b91a, var(--yellow) 68%, #ffe58e);
  color: #171101;
  border-color: rgba(255, 229, 142, 0.24);
  box-shadow: 0 18px 46px rgba(255, 211, 77, 0.24);
}

.btn-accent:hover {
  box-shadow: 0 22px 54px rgba(255, 211, 77, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(37, 168, 210, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.btn-whatsapp {
  background: linear-gradient(120deg, #128c4a, #25d366 68%, #7af0a8);
  color: #04160c;
  border-color: rgba(122, 240, 168, 0.22);
  box-shadow: 0 18px 46px rgba(18, 140, 74, 0.26);
}

.btn-whatsapp:hover {
  box-shadow: 0 22px 54px rgba(18, 140, 74, 0.34);
}

.btn:focus-visible,
.main-nav a:focus-visible,
.faq-item button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(95, 215, 255, 0.72);
  outline-offset: 3px;
}

.mobile-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  min-width: 156px;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue) 70%, #5fd7ff);
  color: #041018;
  box-shadow: 0 18px 44px rgba(30, 181, 234, 0.22);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
}

.rooms-whatsapp-fab {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  min-width: 156px;
  padding: 0.95rem 1.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(122, 240, 168, 0.22);
  background: linear-gradient(120deg, #128c4a, #25d366 68%, #7af0a8);
  color: #04160c;
  box-shadow: 0 18px 44px rgba(18, 140, 74, 0.28);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.02em;
}

.content-section {
  padding: clamp(1.65rem, 3.8vw, 2.25rem);
  margin-top: 1.45rem;
}

.content-section {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-rooms .content-section {
  border-color: rgba(255, 255, 255, 0.09);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.page-home .section-heading {
  display: grid;
  gap: 0.65rem;
  margin: 0 auto 1.85rem;
  text-align: center;
}

.page-home .section-heading h2 {
  color: var(--text);
  font-size: clamp(2.35rem, 5.4vw, 3.85rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-home .section-heading p {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.08rem;
  color: #d5dee9;
}

.page-rooms .section-heading {
  max-width: 820px;
  margin-bottom: 1.7rem;
}

.page-rooms .section-heading h2 {
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  text-transform: uppercase;
  line-height: 0.96;
}

.page-rooms .section-heading p {
  max-width: 40rem;
  color: #d0dae6;
  font-size: 1.03rem;
}

.section-heading.compact {
  margin-bottom: 1.05rem;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.section-actions .btn,
.contact-actions .btn {
  min-width: clamp(220px, 28vw, 280px);
}

.steps-grid,
.safety-grid,
.event-grid,
.rooms-grid,
.room-details-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid,
.safety-grid,
.event-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-card {
  padding: 1.25rem;
}

.page-home .info-card,
.page-home .faq-item,
.page-home .final-cta-card {
  border-color: rgba(255, 255, 255, 0.08);
}

.page-home .info-card,
.page-home .final-cta-card {
  background:
    linear-gradient(180deg, rgba(16, 23, 33, 0.98), rgba(9, 13, 19, 0.94)),
    linear-gradient(145deg, rgba(37, 168, 210, 0.05), transparent 58%);
}

.page-home .info-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
}

.page-home .info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 168, 210, 0.58), rgba(37, 168, 210, 0));
}

.page-home .info-card h3 {
  margin-bottom: 0.7rem;
}

.page-home .info-card p {
  font-size: 1rem;
  line-height: 1.62;
}

.steps-grid .info-card > p {
  font-size: clamp(1.26rem, 2vw, 1.55rem);
  line-height: 1.34;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.steps-grid .info-card {
  min-height: 0;
}

.step-copy {
  display: grid;
  gap: 0.72rem;
}

.step-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  color: var(--text);
}

.step-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.99rem;
  line-height: 1.58;
}

.step-index {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 127, 255, 0.18);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-home .step-index {
  background: rgba(30, 181, 234, 0.16);
  color: #8ee5ff;
  border: 1px solid rgba(30, 181, 234, 0.22);
  margin-inline: auto;
}

.rooms-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
}

.rooms-grid-section {
  margin-top: 0.5rem;
}

.room-catalog-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(18, 24, 33, 0.98), rgba(9, 13, 19, 0.94)),
    linear-gradient(145deg, rgba(37, 168, 210, 0.06), transparent 60%);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.room-catalog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(30, 181, 234, 0.95), rgba(30, 181, 234, 0));
}

.room-catalog-card:hover,
.room-catalog-card.is-selected {
  transform: translateY(-4px);
  border-color: rgba(37, 168, 210, 0.26);
  box-shadow: 0 26px 62px rgba(7, 14, 23, 0.58);
}

.room-catalog-card img {
  width: 100%;
  height: clamp(220px, 26vw, 300px);
  object-fit: cover;
  object-position: center top;
}

.room-catalog-body {
  padding: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.room-catalog-tag {
  color: var(--yellow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.room-catalog-body h3 {
  margin-top: 0.2rem;
  font-size: 1.65rem;
}

.room-catalog-subtitle {
  margin-top: 0.45rem;
  color: #d4dde8;
  font-size: 0.98rem;
  line-height: 1.6;
}

.room-catalog-meta {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
}

.room-catalog-meta li,
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.room-catalog-meta span,
.summary-line span {
  color: var(--muted);
}

.room-catalog-meta strong,
.summary-line strong {
  color: var(--text);
}

.room-catalog-note {
  margin: 0;
  color: #d9e2ec;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.room-catalog-body .btn {
  width: 100%;
  justify-self: center;
  margin-top: 0.1rem;
}

.room-details-panel {
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(18, 27, 40, 0.96), rgba(8, 13, 20, 0.92)),
    linear-gradient(145deg, rgba(30, 181, 234, 0.1), transparent 58%);
}

.room-details-copy p {
  color: var(--muted);
  margin-top: 0.7rem;
  max-width: 720px;
}

.room-details-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 1.2rem 0;
}

.detail-card {
  padding: 1.08rem;
  border-radius: 8px;
  border: 1px solid rgba(30, 181, 234, 0.12);
  background:
    linear-gradient(180deg, rgba(14, 20, 29, 0.98), rgba(8, 11, 17, 0.92)),
    rgba(255, 255, 255, 0.03);
}

.detail-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.page-rooms .detail-card h3,
.page-rooms .summary-line strong {
  color: var(--text);
}

.page-rooms .detail-card strong {
  color: #e3ebf5;
}

.page-rooms .detail-card li {
  color: #ccd6e2;
  line-height: 1.62;
}

.whatsapp-contact-shell {
  padding-inline: 0;
}

.whatsapp-contact-card {
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background:
    linear-gradient(180deg, rgba(16, 24, 36, 0.98), rgba(8, 12, 18, 0.94)),
    linear-gradient(145deg, rgba(37, 211, 102, 0.06), transparent 60%);
}

.whatsapp-contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.72), transparent);
}

.whatsapp-contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1.26fr);
  gap: 1rem;
  align-items: stretch;
}

.whatsapp-contact-grid .field-control,
.whatsapp-summary-card,
.whatsapp-message-preview {
  min-width: 0;
}

.whatsapp-contact-grid .field-control {
  align-content: start;
  padding: 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 20, 29, 0.96), rgba(9, 13, 19, 0.94)),
    rgba(255, 255, 255, 0.02);
}

.whatsapp-summary-card {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(14, 20, 29, 0.98), rgba(9, 13, 19, 0.94)),
    rgba(255, 255, 255, 0.02);
}

.whatsapp-summary-card .summary-line:first-child {
  padding-top: 0;
}

.whatsapp-summary-card .summary-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.whatsapp-summary-card .summary-line strong {
  max-width: 58%;
  text-align: right;
  overflow-wrap: anywhere;
}

.whatsapp-message-preview {
  gap: 0.55rem;
}

.whatsapp-message-preview textarea {
  min-height: 168px;
  margin: 0;
  resize: none;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.96), rgba(7, 11, 16, 0.98)),
    rgba(255, 255, 255, 0.02);
  color: #d7e0eb;
  font-size: 0.96rem;
  line-height: 1.6;
}

.field-control {
  display: grid;
  gap: 0.42rem;
}

.field-control span {
  color: var(--muted);
  font-weight: 600;
}

.field-control--error input {
  border-color: rgba(255, 109, 109, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 109, 109, 0.08);
}

.field-error {
  min-height: 1rem;
  color: var(--danger);
  font-size: 0.82rem;
  line-height: 1.35;
}

.field-help {
  margin: -0.15rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.field-help--highlight {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 211, 77, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 211, 77, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  color: var(--yellow);
}

.page-rooms .field-help--highlight {
  border-color: rgba(30, 181, 234, 0.2);
  background:
    linear-gradient(180deg, rgba(30, 181, 234, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  color: #8ee5ff;
}

.page-rooms .section-heading.compact h2 {
  font-size: clamp(1.95rem, 4vw, 2.9rem);
}

.page-rooms .section-heading.compact p {
  max-width: 34rem;
  color: #d3dce8;
}

.field-span-full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(30, 181, 234, 0.54);
  box-shadow: 0 0 0 4px rgba(30, 181, 234, 0.14);
}

.contact-location,
.footer-meta span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.summary-line {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-line--total {
  padding-top: 0.9rem;
  margin-top: 0.35rem;
}

.page-hero {
  display: flex;
  gap: 1rem;
}

.page-hero {
  align-items: flex-start;
  justify-content: space-between;
}

textarea {
  min-height: 140px;
  resize: vertical;
  margin: 0.85rem 0;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
}

.footer-meta p {
  margin: 0;
}

.footer-links a {
  color: #8ee5ff;
}

.page-copy {
  max-width: 720px;
  display: grid;
  gap: 0.85rem;
}

.page-rooms .page-copy {
  max-width: 640px;
  gap: 0.72rem;
}

.rooms-hero {
  min-height: 34vh;
  align-items: center;
  padding: clamp(1.6rem, 5vw, 3.8rem) 0 clamp(1.2rem, 3vw, 2.4rem);
}

.rooms-hero .page-actions {
  padding-top: 0.35rem;
}

.page-rooms .rooms-hero {
  min-height: 30vh;
  padding: clamp(1.35rem, 4vw, 3.2rem) 0 clamp(1.1rem, 2.4vw, 2rem);
}

.breadcrumb {
  display: inline-flex;
  gap: 0.55rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.page-rooms .breadcrumb {
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.page-copy h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.5rem);
  line-height: 0.93;
  max-width: 11ch;
}

.page-copy p {
  max-width: 38rem;
  font-size: 1.02rem;
  color: #d3dce8;
}

.page-rooms .page-copy p {
  max-width: 32rem;
  line-height: 1.64;
  color: #d9e2ec;
}

.page-actions {
  display: grid;
  gap: 1rem;
  justify-items: end;
  align-content: start;
}

.page-rooms .page-actions {
  gap: 0.85rem;
  justify-items: start;
}

.page-chip {
  color: var(--muted);
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(30, 181, 234, 0.14);
  background:
    linear-gradient(180deg, rgba(17, 24, 34, 0.96), rgba(10, 15, 22, 0.92)),
    rgba(255, 255, 255, 0.03);
}

.page-chip strong {
  color: var(--text);
}

.page-rooms .page-chip {
  max-width: 280px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(15, 21, 31, 0.98), rgba(9, 13, 19, 0.94)),
    rgba(255, 255, 255, 0.02);
}

.page-rooms .page-chip span {
  color: #d1dbe7;
}

.page-rooms .room-details-panel,
.page-rooms .whatsapp-contact-card {
  box-shadow: 0 24px 56px rgba(7, 14, 23, 0.46);
}

.page-rooms .room-details-panel:first-child {
  margin-top: 0;
}

.page-rooms .room-details-panel {
  padding: clamp(1.35rem, 3vw, 1.8rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 24, 36, 0.98), rgba(8, 12, 18, 0.94)),
    linear-gradient(145deg, rgba(37, 168, 210, 0.05), transparent 60%);
}

.page-rooms .room-details-copy {
  max-width: 42rem;
}

.page-rooms .room-details-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
}

.page-rooms .room-details-grid {
  gap: 1.1rem;
}

.page-rooms .detail-card {
  padding: 1.12rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(13, 19, 28, 0.98), rgba(9, 13, 19, 0.94)),
    rgba(255, 255, 255, 0.02);
}

.fatal-error {
  padding: 2rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.page-home .faq-item {
  background:
    linear-gradient(180deg, rgba(16, 24, 36, 0.98), rgba(8, 12, 18, 0.94)),
    linear-gradient(145deg, rgba(37, 168, 210, 0.05), transparent 58%);
}

.page-home .faq-item.open {
  border-color: rgba(37, 168, 210, 0.22);
  background:
    linear-gradient(180deg, rgba(18, 28, 42, 0.98), rgba(8, 12, 18, 0.94)),
    linear-gradient(145deg, rgba(37, 168, 210, 0.09), transparent 58%);
}

.faq-item button {
  width: 100%;
  min-height: 68px;
  padding: 1.12rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.faq-item button:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item button::after {
  content: "+";
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
  border-radius: 50%;
  background: rgba(255, 211, 77, 0.1);
  font-size: 1.4rem;
}

.faq-item.open button::after {
  content: "−";
}

.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.open div {
  max-height: 180px;
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.25rem;
}

.page-home .final-cta-card {
  padding: clamp(1.85rem, 4vw, 2.8rem);
  text-align: center;
}

.page-home .final-cta-card p {
  max-width: 36rem;
  margin: 0.8rem auto 0;
}

.page-home .contact-location {
  color: #e8edf7;
  font-weight: 600;
}

@media (min-width: 860px) {
  .main-nav {
    display: flex;
  }

  .mobile-fab {
    display: none;
  }
}

@media (max-width: 859px) {
  .rooms-whatsapp-fab {
    display: inline-flex;
  }

  .whatsapp-contact-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-summary-card .summary-line strong {
    max-width: 64%;
  }

  .header-cta {
    display: none;
  }

  .rooms-whatsapp-fab {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    min-width: 0;
    min-height: 52px;
    padding: 0.85rem 0.8rem;
    font-size: 0.88rem;
  }

  .site-header--minimal {
    flex-wrap: wrap;
  }

  .site-header--minimal .main-nav {
    order: 2;
    flex: 1 1 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .site-header--minimal .header-cta {
    display: inline-flex;
    margin-left: auto;
  }

  .page-hero {
    flex-direction: column;
  }

  .page-actions {
    justify-items: start;
  }

  .page-copy h1 {
    max-width: 100%;
  }

  .page-home .info-card {
    min-height: 0;
  }

  .hero-inner--home {
    text-align: center;
  }

  .hero-brand-lockup {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-mark {
    width: min(100%, 980px);
    margin: 0 auto;
  }

  .home-hero h1 {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-brand-copy .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .site-footer {
    width: min(100% - 1rem, 1180px);
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .site-header .btn,
  .main-nav a {
    width: auto;
  }

  .room-catalog-card img {
    height: min(68vw, 280px);
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .room-catalog-card:hover,
  .room-catalog-card.is-selected {
    transform: none;
  }
}
