:root {
  --bg: #f7f5ef;
  --bg-soft: #eef3ef;
  --surface: #ffffff;

  --text: #314441;
  --text-soft: #60716d;
  --heading: #223330;

  --primary: #6f8f87;
  --primary-strong: #4f6b64;
  --primary-dark: #334843;
  --primary-soft: #e7efeb;
  --accent: #c4a77d;

  --border: rgba(34, 51, 48, 0.12);
  --shadow: 0 18px 45px rgba(28, 39, 37, 0.10);

  --radius: 24px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --container: 1120px;
  --header-height: 78px;
  --transition: 220ms ease;
}

/* TEMAS */

.theme-verde,
.theme-verde-natural {
  --bg: #f7f5ef;
  --bg-soft: #eef3ef;
  --surface: #ffffff;
  --text: #314441;
  --text-soft: #60716d;
  --heading: #223330;
  --primary: #6f8f87;
  --primary-strong: #4f6b64;
  --primary-dark: #334843;
  --primary-soft: #e7efeb;
  --accent: #c4a77d;
  --border: rgba(34, 51, 48, 0.12);
  --shadow: 0 18px 45px rgba(28, 39, 37, 0.10);
}

.theme-azul,
.theme-azul-praia {
  --bg: #f4f9fb;
  --bg-soft: #e6f3f7;
  --surface: #ffffff;
  --text: #2c4450;
  --text-soft: #5e7480;
  --heading: #17343f;
  --primary: #4f8fa8;
  --primary-strong: #2f6f8c;
  --primary-dark: #1e4e63;
  --primary-soft: #e7f3f7;
  --accent: #8fc9d8;
  --border: rgba(31, 111, 139, 0.14);
  --shadow: 0 18px 45px rgba(31, 111, 139, 0.10);
}

.theme-dourado,
.theme-dourado-premium {
  --bg: #fbf7ee;
  --bg-soft: #f3eadb;
  --surface: #ffffff;
  --text: #4a3f2f;
  --text-soft: #766a58;
  --heading: #312719;
  --primary: #c7a25a;
  --primary-strong: #8a6426;
  --primary-dark: #5a3e12;
  --primary-soft: #f6eddc;
  --accent: #d4aa52;
  --border: rgba(138, 100, 38, 0.16);
  --shadow: 0 18px 45px rgba(95, 68, 25, 0.12);
}

.theme-vinho,
.theme-vinho-aconchegante {
  --bg: #fbf5f7;
  --bg-soft: #f3e8ec;
  --surface: #ffffff;
  --text: #49343b;
  --text-soft: #765e67;
  --heading: #351d26;
  --primary: #9b3f58;
  --primary-strong: #7b263d;
  --primary-dark: #4a1423;
  --primary-soft: #f4e6eb;
  --accent: #d6a05f;
  --border: rgba(123, 38, 61, 0.16);
  --shadow: 0 18px 45px rgba(85, 25, 42, 0.12);
}

.theme-clean-premium {
  --bg: #fbfaf7;
  --bg-soft: #f1eee7;
  --surface: #ffffff;
  --text: #343b39;
  --text-soft: #68716e;
  --heading: #1f2926;
  --primary: #c7a86a;
  --primary-strong: #9b7839;
  --primary-dark: #5f4721;
  --primary-soft: #f4ecdc;
  --accent: #2f6f8c;
  --border: rgba(31, 41, 38, 0.10);
  --shadow: 0 18px 48px rgba(31, 41, 38, 0.08);
}

.theme-dark-premium {
  --bg: #0d1211;
  --bg-soft: #121c19;
  --surface: #17231f;
  --text: #dbe7e2;
  --text-soft: #aabbb5;
  --heading: #ffffff;
  --primary: #d5b16c;
  --primary-strong: #b8914a;
  --primary-dark: #090d0c;
  --primary-soft: rgba(213, 177, 108, 0.14);
  --accent: #f0d08a;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

/* RESET */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--primary) 8%, transparent), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(100% - 24px, var(--container));
  margin-inline: auto;
}

/* HEADER */

.go-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.go-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-height);
}

.go-logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--heading);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.go-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.go-nav a {
  font-size: 0.96rem;
  font-weight: 750;
  color: var(--text-soft);
  transition: color var(--transition);
}

.go-nav a:hover {
  color: var(--primary-strong);
}

/* BOTÕES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 36px color-mix(in srgb, var(--primary-strong) 28%, transparent);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary-strong);
  border-color: color-mix(in srgb, var(--primary) 28%, transparent);
}

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-large {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 18px;
}

/* HERO */

.go-hero {
  min-height: calc(72vh - var(--header-height));
  display: flex;
  align-items: flex-end;
  padding: 110px 0 72px;
  color: #fff;
  background:
    linear-gradient(
      180deg,
      rgba(18, 27, 25, 0.08) 0%,
      rgba(18, 27, 25, 0.24) 38%,
      rgba(18, 27, 25, 0.78) 100%
    ),
    var(--hero-image) center 48% / cover no-repeat;
}

.go-hero-brand {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.28)),
    var(--hero-image) center / cover no-repeat;
}

.go-hero h1 {
  max-width: 780px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.go-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.go-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.go-hero .eyebrow,
.go-cta .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* SEÇÕES */

.go-section {
  padding: 68px 0;
}

.go-section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.52), var(--bg-soft));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.go-section h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.go-section p {
  color: var(--text-soft);
}

.go-center {
  text-align: center;
}

.go-center .go-actions,
.go-cta .go-actions {
  justify-content: center;
}

.go-cta .btn {
  margin-inline: auto;
}

.go-spaced {
  margin-top: 28px;
}

.go-note {
  margin-top: 18px;
  color: var(--text-soft);
  font-weight: 700;
}

/* GRIDS */

.go-grid-2 {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: start;
}

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

/* GALERIA */

.go-gallery {
  display: grid;
  gap: 12px;
}

.go-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.go-gallery-main img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.go-gallery-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(34, 51, 48, 0.72);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  transform: translateY(-50%);
}

.go-gallery-btn.prev {
  left: 12px;
}

.go-gallery-btn.next {
  right: 12px;
}

.go-gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(34, 51, 48, 0.72);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.go-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.go-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.go-gallery-thumb:hover {
  transform: translateY(-1px);
}

.go-gallery-thumb.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}

.go-gallery-thumb img {
  width: 100%;
  height: 84px;
  object-fit: cover;
}

/* BOX / CARDS */

.go-box {
  padding: 28px;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.go-box h2,
.go-box h3 {
  margin-top: 0;
  color: var(--heading);
}

.go-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.go-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--text-soft);
  font-weight: 750;
}

.go-room-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.go-room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.go-room-body {
  padding: 22px;
}

.go-room-body h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.go-room-body p {
  margin: 0;
  line-height: 1.75;
}

/* VITRINE COMPARATIVA DE TEMAS */

.theme-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.theme-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.theme-preview {
  min-height: 180px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 27, 25, 0.10), rgba(18, 27, 25, 0.72)),
    var(--preview-image, url("/img/hotel-sereno/hero-hotel-sereno.webp")) center / cover no-repeat;
}

.theme-preview-clean {
  background:
    linear-gradient(180deg, rgba(95, 71, 33, 0.08), rgba(95, 71, 33, 0.56)),
    var(--preview-image, url("/img/hotel-sereno/hero-hotel-sereno.webp")) center / cover no-repeat;
}

.theme-preview-dark {
  background:
    linear-gradient(180deg, rgba(9, 13, 12, 0.24), rgba(9, 13, 12, 0.88)),
    var(--preview-image, url("/img/hotel-sereno/hero-hotel-sereno.webp")) center / cover no-repeat;
}

.theme-preview h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.theme-body {
  padding: 22px;
}

.theme-body p {
  margin: 0;
  color: var(--text-soft);
}

.theme-swatches {
  display: flex;
  gap: 8px;
  margin: 16px 0 0;
}

.theme-swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.82);
  box-shadow: 0 0 0 1px var(--border);
}

.swatch-verde { background: #4f6b64; }
.swatch-azul { background: #2f6f8c; }
.swatch-dourado { background: #9b7839; }
.swatch-vinho { background: #7b263d; }
.swatch-clean { background: #c7a86a; }
.swatch-dark { background: #17231f; }
.swatch-light { background: #fbfaf7; }
.swatch-white { background: #ffffff; }

/* CTA FINAL */

.go-cta {
  padding: 68px 0 84px;
  text-align: center;
  background:
    radial-gradient(circle at top, color-mix(in srgb, var(--primary) 16%, transparent), transparent 34%),
    linear-gradient(180deg, var(--primary-dark), var(--primary-strong));
  color: #fff;
}

.go-cta h2 {
  color: #fff;
}

.go-cta p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.86);
}

/* FOOTER */

.go-footer {
  padding: 34px 0 100px;
  background: #1f2d2a;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.go-footer p {
  margin: 0;
}

/* WHATSAPP FIXO */

.go-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
}

.go-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  background: #35c76a;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(53, 199, 106, 0.26);
}

/* AJUSTES POR TEMA */

.theme-dark-premium .go-header {
  background: rgba(13, 18, 17, 0.90);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

.theme-dark-premium .go-logo,
.theme-dark-premium .go-nav a {
  color: #ffffff;
}

.theme-dark-premium .go-nav a:hover {
  color: var(--primary);
}

.theme-dark-premium .go-box,
.theme-dark-premium .go-room-card,
.theme-dark-premium .theme-card {
  background: rgba(23, 35, 31, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
}

.theme-dark-premium .go-section-soft {
  background: linear-gradient(180deg, #101816 0%, #17231f 100%);
}

.theme-dark-premium .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
  border-color: rgba(213, 177, 108, 0.34);
}

.theme-dark-premium .go-footer {
  background: #090d0c;
}

.theme-clean-premium .btn-primary {
  background: linear-gradient(180deg, #d2b56f 0%, #9b7839 100%);
}

.theme-clean-premium .go-cta {
  background:
    radial-gradient(circle at top, rgba(199, 168, 106, 0.20), transparent 34%),
    linear-gradient(180deg, #7f6232, #5f4721);
}

.theme-clean-premium .go-footer {
  background: #2c2418;
}

.theme-dourado .go-cta,
.theme-dourado-premium .go-cta {
  background:
    radial-gradient(circle at top, rgba(212, 170, 82, 0.20), transparent 34%),
    linear-gradient(180deg, #5a3e12, #8a6426);
}

.theme-vinho .go-cta,
.theme-vinho-aconchegante .go-cta {
  background:
    radial-gradient(circle at top, rgba(214, 160, 95, 0.18), transparent 34%),
    linear-gradient(180deg, #4a1423, #7b263d);
}

.theme-azul .go-cta,
.theme-azul-praia .go-cta {
  background:
    radial-gradient(circle at top, rgba(143, 201, 216, 0.18), transparent 34%),
    linear-gradient(180deg, #1e4e63, #2f6f8c);
}

/* FORMULÁRIOS SIMPLES */

.go-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.go-sticky {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.go-form {
  display: grid;
  gap: 22px;
}

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

.go-form-group {
  display: grid;
  gap: 8px;
}

.go-form-group.full {
  grid-column: 1 / -1;
}

.go-form label {
  font-weight: 800;
  color: var(--heading);
}

.go-form input,
.go-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  outline: none;
}

.go-form textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.go-form input:focus,
.go-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 14%, transparent);
}

.go-help {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.go-alert {
  padding: 16px;
  border-radius: 18px;
  background: #fff7e8;
  border: 1px solid rgba(196, 167, 125, 0.36);
  color: #735c35;
  font-weight: 800;
}

.go-copy-status {
  margin: 10px 0 0;
  font-weight: 800;
  color: var(--primary-strong);
}

/* RESPONSIVO */

@media (max-width: 900px) {
  :root {
    --header-height: 126px;
  }

  .go-grid-2,
  .go-grid-3,
  .theme-showcase-grid,
  .go-form-layout,
  .go-form-grid {
    grid-template-columns: 1fr;
  }

  .go-gallery-main img {
    height: 340px;
  }

  .go-header-content {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .go-nav {
    order: 3;
    width: 100%;
    gap: 18px;
  }

  .go-sticky {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 132px;
  }

  .container {
    width: min(100% - 20px, var(--container));
  }

  .go-hero {
    min-height: calc(66vh - var(--header-height));
    padding: 92px 0 56px;
    background-position: center center;
  }

  .go-section {
    padding: 54px 0;
  }

  .go-actions,
  .go-actions .btn {
    width: 100%;
  }

  .go-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .go-gallery-main img {
    height: 270px;
  }

  .go-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .go-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .go-gallery-thumb {
    flex: 0 0 82px;
  }

  .go-gallery-thumb img {
    width: 82px;
    height: 70px;
  }

  .go-box,
  .theme-body {
    padding: 22px;
  }

  .go-room-card img {
    height: 220px;
  }

  .theme-preview {
    min-height: 150px;
  }

  .go-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .go-whatsapp a {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.94rem;
  }
}

.theme-nature-rustico {
  --bg: #f6f4ee;
  --bg-soft: #e9efe6;
  --surface: #ffffff;

  --text: #2f3a32;
  --text-soft: #5f6e63;
  --heading: #1f2a23;

  --primary: #5f7a61;
  --primary-strong: #3f5a41;
  --primary-dark: #2a3d2d;
  --primary-soft: #e6efe7;

  --accent: #a68b5b;

  --border: rgba(42, 61, 45, 0.14);
  --shadow: 0 18px 45px rgba(28, 39, 32, 0.12);
}

.theme-verde-claro {
  --bg: #f8fbf3;
  --bg-soft: #eef8e8;
  --surface: #ffffff;

  --text: #354538;
  --text-soft: #65766a;
  --heading: #203528;

  --primary: #8fbd79;
  --primary-strong: #5f934e;
  --primary-dark: #315c35;
  --primary-soft: #edf7e9;

  --accent: #d7b56d;

  --border: rgba(95, 147, 78, 0.16);
  --shadow: 0 18px 45px rgba(69, 106, 60, 0.10);
}

.theme-verde-claro .go-cta {
  background:
    radial-gradient(circle at top, rgba(143, 189, 121, 0.22), transparent 34%),
    linear-gradient(180deg, #315c35, #5f934e);
}

.theme-verde-claro .go-footer {
  background: #243b29;
}

.theme-dourado-premium {
  --bg: #fbf7ee;
  --bg-soft: #f3eadb;
  --surface: #ffffff;

  --text: #4a3f2f;
  --text-soft: #766a58;
  --heading: #312719;

  --primary: #c7a25a;
  --primary-strong: #8a6426;
  --primary-dark: #5a3e12;
  --primary-soft: #f6eddc;

  --accent: #d4aa52;

  --border: rgba(138, 100, 38, 0.16);
  --shadow: 0 18px 45px rgba(95, 68, 25, 0.12);
}

.theme-dourado-premium .btn-primary {
  background: linear-gradient(180deg, #d6b46a 0%, #8a6426 100%);
}

.theme-dourado-premium .go-cta {
  background:
    radial-gradient(circle at top, rgba(212, 170, 82, 0.22), transparent 34%),
    linear-gradient(180deg, #5a3e12, #8a6426);
}

.theme-dourado-premium .go-footer {
  background: #2f2312;
}

.theme-pastel-soft {
  --bg: #fdfaf8;
  --bg-soft: #f6f1ed;
  --surface: #ffffff;

  --text: #4a3f3c;
  --text-soft: #8b7c76;
  --heading: #2d2624;

  --primary: #e6b8a2;
  --primary-strong: #c98f74;
  --primary-dark: #9b6a52;
  --primary-soft: #f9ece6;

  --accent: #d6c3a3;

  --border: rgba(201, 143, 116, 0.18);
  --shadow: 0 20px 50px rgba(120, 90, 70, 0.10);
}

/* botão principal mais suave */
.theme-pastel-soft .btn-primary {
  background: linear-gradient(180deg, #efc7b3 0%, #c98f74 100%);
  color: #fff;
}

/* CTA mais leve */
.theme-pastel-soft .go-cta {
  background:
    radial-gradient(circle at top, rgba(230, 184, 162, 0.25), transparent 40%),
    linear-gradient(180deg, #c98f74, #9b6a52);
}

/* footer */
.theme-pastel-soft .go-footer {
  background: #3a2f2b;
}

/* leve diferença nos cards */
.theme-pastel-soft .go-room-card,
.theme-pastel-soft .go-box {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
