:root {
  --bg: #070706;
  --bg-2: #10100f;
  --surface: #171512;
  --surface-2: #201b15;
  --gold: #c8a64a;
  --gold-2: #f0d98b;
  --copper: #b66a45;
  --magenta: #c04a77;
  --citrus: #a7c957;
  --text: #f5eddd;
  --muted: #b7aa91;
  --line: rgba(236, 205, 133, 0.24);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection {
  background: rgba(200, 166, 74, 0.35);
}

body[data-page="index.html"] .site-header,
body[data-page="index.html"] .site-footer,
body[data-page="index.html"] .whatsapp-float {
  display: none;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 6, 0.74);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 178px;
  gap: 12px;
}

.brand img {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(200, 166, 74, 0.2));
}

.brand span {
  display: grid;
  gap: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
  color: var(--gold-2);
}

.brand small {
  letter-spacing: 0.26em;
  font-family: Inter, sans-serif;
  color: var(--muted);
  font-size: 0.58rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(245, 237, 221, 0.78);
  font-size: 0.82rem;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(240, 217, 139, 0.5);
  color: #0c0b09;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 780;
  font-size: 0.86rem;
  box-shadow: 0 14px 34px rgba(200, 166, 74, 0.18);
}

.icon-button {
  gap: 10px;
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(245, 237, 221, 0.28);
  box-shadow: none;
}

.button.ghost {
  color: var(--gold-2);
  background: transparent;
  border-color: rgba(200, 166, 74, 0.34);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(245, 237, 221, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px 0 52px;
}

.hotpage {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(28px, 6vw, 72px);
}

.hotpage-media {
  position: absolute;
  inset: 0;
}

.hotpage-media img,
.hotpage-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotpage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(200, 166, 74, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.54), rgba(7, 7, 6, 0.94)),
    linear-gradient(90deg, rgba(7, 7, 6, 0.9), rgba(7, 7, 6, 0.52));
}

.hotpage-shell {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(240, 217, 139, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(7, 7, 6, 0.78), rgba(7, 7, 6, 0.92));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(18px);
}

.hotpage-logo {
  width: clamp(220px, 34vw, 360px);
  margin-bottom: 18px;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.68));
}

.hotpage h1 {
  max-width: none;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.hotpage p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(245, 237, 221, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hotpage-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hotpage-qr {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(245, 237, 221, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
}

.hotpage-qr img {
  width: 132px;
  border-radius: 6px;
  background: var(--text);
}

.hotpage-qr strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.1rem;
}

.hotpage-qr span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  opacity: 0.58;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.94) 0%, rgba(7, 7, 6, 0.76) 40%, rgba(7, 7, 6, 0.22) 100%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.38) 0%, rgba(7, 7, 6, 0.68) 76%, #070706 100%);
}

.hero-content,
.section-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy {
  width: min(760px, 100%);
}

.hero-logo {
  width: clamp(210px, 25vw, 350px);
  margin: 0 0 22px;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.7));
}

h1,
h2,
h3,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1.02;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 10ch;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  max-width: 12ch;
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
}

.lead {
  margin: 22px 0 0;
  max-width: 700px;
  color: rgba(245, 237, 221, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.proof-strip {
  margin-top: 48px;
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(9, 9, 8, 0.62);
}

.proof-strip span {
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip span:last-child {
  border-right: 0;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 132px) 0;
}

.section.alt {
  background: linear-gradient(180deg, #070706 0%, #11100e 100%);
}

.section.gold-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--max), calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(200, 166, 74, 0.72), transparent);
}

.video-band {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(245, 237, 221, 0.1);
  border-bottom: 1px solid rgba(245, 237, 221, 0.1);
}

.video-band video,
.video-band picture,
.video-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.9), rgba(7, 7, 6, 0.42)),
    linear-gradient(180deg, rgba(7, 7, 6, 0.15), rgba(7, 7, 6, 0.78));
}

.video-band .section-inner {
  z-index: 1;
}

.video-band h2 {
  max-width: 11ch;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 42px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.menu-card,
.proposal-card {
  border: 1px solid rgba(245, 237, 221, 0.12);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.service-card,
.menu-card,
.proposal-card {
  padding: 26px;
}

.service-card strong,
.proposal-card strong {
  color: var(--gold-2);
}

.service-card p,
.proposal-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.media-frame {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(245, 237, 221, 0.14);
  background: var(--surface);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.tall {
  min-height: 620px;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: rgba(245, 237, 221, 0.88);
  font-weight: 720;
}

.menu-card ul,
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-card li,
.clean-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(245, 237, 221, 0.1);
  color: rgba(245, 237, 221, 0.82);
}

.menu-card li:last-child,
.clean-list li:last-child {
  border-bottom: 0;
}

.menu-card small,
.note {
  color: var(--muted);
}

.step-list {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(245, 237, 221, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.step p {
  margin: 4px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-grid .media-frame {
  min-height: 0;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: stretch;
}

form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: rgba(245, 237, 221, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  border: 1px solid rgba(245, 237, 221, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
}

select option {
  color: #10100f;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.form-card {
  padding: 28px;
  border-radius: 6px;
  border: 1px solid rgba(245, 237, 221, 0.14);
  background: rgba(9, 9, 8, 0.86);
  box-shadow: var(--shadow);
}

.page-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  padding: 140px 0 70px;
  overflow: hidden;
  background: #080807;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.92), rgba(7, 7, 6, 0.56)),
    var(--hero-image, none);
  background-size: cover;
  background-position: center;
}

.price-block {
  display: grid;
  gap: 10px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(200, 166, 74, 0.36);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(200, 166, 74, 0.13), rgba(192, 74, 119, 0.08));
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-2);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

.proposal-commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

.proposal-commerce-grid .pix-card {
  grid-column: 1 / -1;
}

.proposal-lines,
.pix-meta {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.proposal-lines li,
.pix-meta li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(245, 237, 221, 0.12);
  color: rgba(245, 237, 221, 0.84);
}

.proposal-lines strong,
.pix-meta strong {
  color: var(--gold-2);
  text-align: right;
}

.stage-note {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(200, 166, 74, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.stage-note h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.stage-note p {
  margin: 0;
  color: var(--muted);
}

.pix-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(240, 217, 139, 0.28);
  border-radius: 6px;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 166, 74, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.pix-card > div > span,
.price-block > span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pix-card h2 {
  margin-top: 6px;
  color: var(--gold-2);
}

.pix-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(245, 237, 221, 0.8);
}

.pix-card img {
  width: 220px;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
}

.pix-card code {
  grid-column: 1 / -1;
  display: block;
  overflow-wrap: anywhere;
  padding: 14px;
  border: 1px solid rgba(245, 237, 221, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(245, 237, 221, 0.82);
  font-size: 0.78rem;
  line-height: 1.5;
}

.proposal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.proposal-modal.is-open {
  display: grid;
}

.proposal-modal-panel {
  position: relative;
  width: min(640px, 100%);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(240, 217, 139, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23, 21, 18, 0.98), rgba(7, 7, 6, 0.98)),
    var(--surface);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.62);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 237, 221, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.modal-logo {
  width: 136px;
  margin-bottom: 16px;
}

.proposal-modal h2 {
  max-width: none;
  margin-right: 34px;
}

.proposal-modal p {
  margin: 16px 0 0;
  color: rgba(245, 237, 221, 0.82);
}

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

.site-footer {
  border-top: 1px solid rgba(245, 237, 221, 0.12);
  background: #050504;
  padding: 48px 0 34px;
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(150px, 0.45fr));
  gap: 34px;
}

.footer-logo {
  width: 176px;
  margin-bottom: 18px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.cereus-signature {
  width: min(var(--max), calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 237, 221, 0.08);
  color: rgba(183, 170, 145, 0.78);
  font-size: 0.82rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 201, 87, 0.44);
  background: #1f6f3f;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.concept-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(245, 237, 221, 0.14);
    border-radius: 6px;
    background: rgba(7, 7, 6, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 4px;
  }

  .nav-cta {
    display: none;
  }

  .section-head,
  .media-split,
  .proposal-commerce-grid,
  .quote-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

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

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

@media (max-width: 680px) {
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .proof-strip,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .field-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .proposal-lines li,
  .pix-meta li {
    display: grid;
    gap: 4px;
  }

  .proposal-lines strong,
  .pix-meta strong {
    text-align: left;
  }

  .proof-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip span:last-child {
    border-bottom: 0;
  }

  .media-frame,
  .media-frame.tall {
    min-height: 360px;
  }

  .hotpage {
    padding: 18px;
  }

  .hotpage-shell {
    min-height: calc(100svh - 36px);
    justify-content: center;
    padding: 26px 18px;
  }

  .hotpage-actions {
    width: 100%;
  }

  .hotpage-actions .button {
    width: 100%;
  }

  .hotpage-qr {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hotpage-qr img {
    width: min(190px, 78vw);
  }

  .modal-actions .button {
    width: 100%;
  }

  .section,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-grid,
  .section-inner,
  .hero-content,
  .page-hero-inner,
  .cereus-signature {
    width: min(100% - 28px, var(--max));
  }
}

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