:root {
  --ink: #2a3128;
  --night: #1a262c;
  --sun: #f08a2c;
  --sun-hover: #e07a22;
  --sun-soft: #ffc07a;
  --foam: #fff8ef;
  --paper: #f7f3ec;
  --sand: #efe6d8;
  --water: #4a7c86;
  --line: rgba(42, 49, 40, 0.11);
  --muted: #6b7468;
  --card: rgba(255, 252, 247, 0.9);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Figtree, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; }
.icon {
  width: 1.25rem; height: 1.25rem;
  display: inline-block;
  flex: 0 0 auto;
  vertical-align: middle;
}
.icon svg { width: 100%; height: 100%; display: block; }

/* Topbar */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: rgba(26, 38, 44, 0.42);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,248,239,0.08);
}
body:not(.page-home) .topbar {
  background: rgba(247, 243, 236, 0.94);
  border-bottom: 1px solid var(--line);
}
.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--foam);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}
body:not(.page-home) .brand-mini { color: var(--ink); }
.brand-mini img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.nav { position: relative; z-index: 31; }
.nav-toggle {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,248,239,0.35);
  background: rgba(26,38,44,0.55);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--foam);
}
body:not(.page-home) .nav-toggle {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: min(78vw, 260px);
  padding: 0.65rem;
  border-radius: 16px;
  background: rgba(26, 38, 44, 0.94);
  border: 1px solid rgba(255,248,239,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-panel a {
  text-decoration: none;
  color: var(--foam);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  font-weight: 500;
}
.nav-panel a:hover {
  background: rgba(240,138,44,0.18);
  color: var(--sun-soft);
}
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(12, 18, 20, 0.35);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s;
  z-index: 20;
}
.nav-backdrop.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-content: end;
  padding: 6rem 1.5rem 3.5rem;
  overflow: hidden;
  color: var(--foam);
  background-color: #1a262c;
  background-image:
    linear-gradient(180deg, rgba(26,38,44,0.12) 0%, rgba(26,38,44,0.48) 48%, rgba(26,38,44,0.88) 100%),
    url("../img/hero-rio.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 45% at 70% 15%, rgba(240,138,44,0.32), transparent 60%);
  animation: glow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 720px;
  animation: fadeup 0.9s ease both;
}
.logo {
  width: min(42vw, 180px); height: auto;
  border-radius: 50%;
  display: block;
  margin-bottom: 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  animation: float 5s ease-in-out infinite;
}
.hero h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  text-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.hero p {
  font-size: 1.1rem;
  max-width: 34ch;
  line-height: 1.5;
  color: rgba(255, 248, 239, 0.88);
  margin-bottom: 1.6rem;
}
.ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  gap: 0.35rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sun); color: #1a1a1a; }
.btn-primary:hover { background: var(--sun-hover); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,248,239,0.45);
  color: var(--foam);
}
.btn .icon { width: 1.05rem; height: 1.05rem; }

.light {
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(240,138,44,0.08), transparent 55%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(74,124,134,0.07), transparent 50%),
    var(--paper);
}
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
body:not(.page-home) .page-main { padding-top: 5.5rem; }
.sec-head {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.sec-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 0;
}
.sec-lead {
  color: var(--muted);
  max-width: 48ch;
  line-height: 1.5;
  margin: 0.6rem 0 2rem;
}
.sec-ico {
  width: 2.5rem; height: 2.5rem;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(240,138,44,0.14);
  color: var(--sun);
  flex: 0 0 auto;
}
.sec-ico .icon { width: 1.35rem; height: 1.35rem; }

/* Galeria — carrossel centralizado com peek lateral */
.gallery {
  overflow: hidden;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.gallery-track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 14vw;
  padding: 0.85rem 14vw 1.35rem;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.slide {
  flex: 0 0 min(72vw, 430px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transform: scale(0.92);
  opacity: 0.62;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
  will-change: transform;
}
.slide.is-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 16px 36px rgba(42, 49, 40, 0.16);
  z-index: 1;
}
.slide:focus {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 0.9rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(26,38,44,0.72));
  color: var(--foam);
  font-size: 0.88rem;
  font-weight: 600;
}
@media (min-width: 900px) {
  .gallery-track {
    scroll-padding-inline: calc((100% - 430px) / 2);
    padding-left: calc((100% - 430px) / 2);
    padding-right: calc((100% - 430px) / 2);
  }
  .slide { flex-basis: 430px; }
}

/* Lightbox galeria */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 18, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
  touch-action: pan-y;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox[hidden] { display: none !important; }
.lightbox.is-open[hidden] { display: flex !important; }
.lightbox-stage {
  width: min(960px, 100%);
  max-height: calc(100vh - 5rem);
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  user-select: none;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: #111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.lightbox-stage.is-swiping img {
  transition: none;
}
.lightbox-caption {
  color: var(--foam);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}
.lightbox-count {
  color: rgba(255,248,239,0.6);
  font-size: 0.85rem;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255,248,239,0.12);
  color: var(--foam);
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
}
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(240,138,44,0.85);
  color: #1a1a1a;
}
@media (max-width: 700px) {
  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
  .lightbox-prev { left: calc(50% - 58px); }
  .lightbox-next { right: calc(50% - 58px); }
  .lightbox {
    padding-bottom: 4.5rem;
  }
}

/* Catálogo */
.catalog {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .catalog { grid-template-columns: repeat(2, 1fr); }
}
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 170px auto;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(42,49,40,0.07);
}
.tile-media {
  background: center/cover no-repeat;
  position: relative;
}
.tile-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,49,40,0.22));
}
.tile-body { padding: 1.15rem 1.25rem 1.35rem; }
.tile h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  display: flex; align-items: center; gap: 0.45rem;
}
.tile h3 .icon { width: 1.15rem; height: 1.15rem; color: var(--sun); }
.meta {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0.7rem;
}
.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9a5414;
  background: rgba(240,138,44,0.15);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}

/* Item */
.item-hero {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .item-hero { grid-template-columns: 1.15fr 1fr; align-items: start; }
}
.item-media { display: grid; gap: 0.75rem; }
.item-gallery {
  overflow: hidden;
  border-radius: 18px;
}
.item-gallery-track {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 10%;
  padding: 0 10%;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
}
.item-gallery-track::-webkit-scrollbar { display: none; }
.item-slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 16/11;
  background: var(--sand);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.25s ease, box-shadow 0.25s ease;
}
.item-slide.is-active {
  opacity: 1;
  box-shadow: 0 14px 32px rgba(42, 49, 40, 0.14);
}
.item-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.item-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 0.85rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(26,38,44,0.72));
  color: var(--foam);
  font-size: 0.85rem;
  font-weight: 600;
}
.item-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}
.item-thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: var(--sand);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.item-thumb.is-active,
.item-thumb:hover {
  border-color: var(--sun);
}
@media (min-width: 900px) {
  .item-gallery-track {
    scroll-padding-inline: 0;
    padding: 0;
    gap: 0;
  }
  .item-slide {
    flex: 0 0 100%;
    border-radius: 18px;
    opacity: 1;
  }
}
.item-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 20px 50px rgba(42,49,40,0.05);
}
.item-panel h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  margin-bottom: 0.55rem;
}
.item-panel .lead {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.destaques {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.destaques li {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}
.destaques .icon { width: 1rem; height: 1rem; color: var(--sun); margin-top: 0.1rem; }

.calendar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.1rem 1.3rem;
  margin-bottom: 1rem;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cal-head h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
}
.cal-nav { display: flex; gap: 0.4rem; }
.cal-nav button {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
}
.cal-nav button:hover { border-color: var(--sun); color: var(--sun); }
.cal-week, .cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}
.cal-week {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}
.day {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid transparent;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: #fff;
  color: var(--ink);
  position: relative;
  cursor: pointer;
}
.day.empty { background: transparent; cursor: default; }
.day.available {
  border-color: rgba(74,124,134,0.2);
  background: rgba(74,124,134,0.06);
}
.day.available:hover, .day.selected {
  border-color: var(--sun);
  background: rgba(240,138,44,0.18);
  color: #8a4a12;
}
.day.busy.selected {
  border-color: #c45c4a;
  background: rgba(196, 92, 74, 0.18);
}
.day.busy {
  background: rgba(42,49,40,0.06);
  color: #a0a69d;
  cursor: not-allowed;
}
.day.busy .xmark {
  position: absolute;
  font-size: 1.35rem;
  font-weight: 700;
  color: #c45c4a;
  line-height: 1;
}
.day.busy .num {
  position: absolute;
  bottom: 3px; right: 5px;
  font-size: 0.62rem;
  opacity: 0.75;
}
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.cal-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.dot {
  width: 12px; height: 12px;
  border-radius: 4px;
  display: inline-block;
}
.dot-ok { background: rgba(74,124,134,0.35); }
.dot-x { background: #c45c4a; }
.dot-sel { background: var(--sun); }

.field { margin-bottom: 0.85rem; }
.field-row {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
select,
input[type="date"],
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
.field-control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  min-height: 3.05rem;
  font: inherit;
  font-size: 1rem;
  line-height: 1.25;
  background: #fff;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="date"] {
  display: block;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
  min-height: 1.25rem;
}
select:focus,
input:focus,
.field-control:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(240,138,44,0.18);
}
.field-control.is-invalid {
  border-color: #c45c4a;
  box-shadow: 0 0 0 3px rgba(196, 92, 74, 0.15);
}
.field-error {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: #b44535;
  font-weight: 600;
  line-height: 1.35;
}
.grid2 {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 520px) {
  .grid2 { grid-template-columns: 1fr 1fr; }
}
.summary {
  margin: 1rem 0;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(240,138,44,0.13), rgba(74,124,134,0.09));
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}
.summary strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.35rem;
}
.pay, .btn-block {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1rem;
  background: var(--sun);
  color: #1a1a1a;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.pay:hover, .btn-block:hover { background: var(--sun-hover); }
.terms {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.9rem 0 1.1rem;
  line-height: 1.4;
}
.terms input { margin-top: 0.2rem; accent-color: var(--sun); }
.steps {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.steps span { display: flex; gap: 0.45rem; align-items: center; }
.steps i {
  font-style: normal;
  width: 1.2rem; height: 1.2rem;
  border-radius: 50%;
  background: rgba(240,138,44,0.18);
  color: #9a5414;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex: 0 0 auto;
}
.toast {
  display: none;
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #e8f6ef;
  color: #1f5c3a;
  font-size: 0.95rem;
  line-height: 1.45;
}
.toast.show { display: block; }
.checkout-shell {
  max-width: 720px;
  margin: 0 auto;
}
.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 20px 50px rgba(42,49,40,0.05);
}
.checkout-card h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--water); text-decoration: none; font-weight: 600; }

.pix-box {
  margin: 1.25rem 0;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f8fbf9;
  border: 1px solid rgba(47,58,52,.08);
  text-align: center;
}
.pix-qr img { border-radius: 12px; max-width: 100%; height: auto; }
.pix-label { display: block; font-size: .85rem; font-weight: 600; margin: 1rem 0 .5rem; text-align: left; }
.pix-copy-row { display: flex; gap: .65rem; flex-wrap: wrap; align-items: stretch; }
.pix-code {
  flex: 1;
  min-width: 200px;
  font-family: ui-monospace, monospace;
  font-size: .78rem;
  padding: .65rem .75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  resize: vertical;
}
.pix-copy-btn { align-self: flex-start; }
.pix-demo-note { font-size: .82rem; color: #8a6d3b; background: #fff8e6; padding: .45rem .75rem; border-radius: 8px; margin-bottom: .75rem; }
.pix-expira { font-size: .85rem; margin-top: .75rem; }
.steps span.is-active { font-weight: 700; color: var(--water); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #2f3a34 0%, #232c27 100%);
  color: rgba(255,248,239,0.88);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 2.5rem;
  }
}
.footer-brand img {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.footer-brand h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
  color: var(--foam);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  color: rgba(255,248,239,0.68);
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 30ch;
}
.footer-col h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  color: var(--sun-soft);
  margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.45rem;
}
.footer-col h3 .icon { width: 1.1rem; height: 1.1rem; }
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255,248,239,0.72);
  line-height: 1.45;
}
.footer-col a {
  color: rgba(255,248,239,0.9);
  text-decoration: none;
}
.footer-col a:hover { color: var(--sun-soft); }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,248,239,0.12);
  background: #1a2220;
}
.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}
.map-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.map-actions a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sun);
}
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,248,239,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,248,239,0.5);
}
.footer-bottom a {
  color: var(--sun-soft);
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom a:hover { color: var(--sun); }

.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 35;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--sun);
  color: #1a1a1a;
  box-shadow: 0 10px 28px rgba(240,138,44,0.35);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover { background: var(--sun-hover); }
.to-top .icon { width: 1.35rem; height: 1.35rem; }

@keyframes fadeup {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes glow {
  from { opacity: 0.55; }
  to { opacity: 1; }
}
