:root {
  --bg: #0f1117;
  --bg-soft: #151925;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f7f8fb;
  --text-soft: #cfd5e3;
  --text-muted: #9ea7ba;
  --gold: #f4c95d;
  --gold-strong: #e9b93f;
  --green: #37c67a;
  --green-soft: rgba(55, 198, 122, 0.15);
  --accent: #ff8b7b;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --unit-price: 30;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at top, rgba(244, 201, 93, 0.08), transparent 24%),
    linear-gradient(180deg, #111520 0%, #0b0e15 100%);
  color: var(--text);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

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

.section {
  padding: 56px 0;
}

.section--highlight {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 32px 0 64px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 139, 123, 0.15),
      transparent 24%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(244, 201, 93, 0.18),
      transparent 26%
    ),
    url("./assets/buck-5.webp") center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, 0.2), rgba(7, 9, 14, 0.86)),
    linear-gradient(90deg, rgba(7, 9, 14, 0.72), rgba(7, 9, 14, 0.28));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__badge,
.section-heading__eyebrow,
.modal__eyebrow,
.reveal-box__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 201, 93, 0.26);
  background: rgba(244, 201, 93, 0.12);
  color: #ffe8a1;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero__title {
  margin: 18px 0 16px;
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero__text,
.section-heading__text,
.story-card p,
.prize-card__content p,
.modal__header p,
.reveal-box p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

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

.hero__meta-card,
.story-card,
.campaign-panel,
.prize-card,
.modal__dialog {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__meta-card {
  border-radius: var(--radius-lg);
  padding: 16px;
}

.hero__meta-label,
.campaign-stats__label {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 22px;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn--primary {
  color: #1d1400;
  background: linear-gradient(180deg, #ffd978 0%, #f4c95d 100%);
  box-shadow: 0 14px 34px rgba(244, 201, 93, 0.28);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.btn--block {
  width: 100%;
}

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

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading__title {
  margin: 16px 0 12px;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

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

.story-card {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.story-card h3,
.prize-card__content h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.section--story {
  background:
    radial-gradient(circle at top, rgba(244, 201, 93, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.story-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.story-photo-card {
  grid-column: span 4;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.story-photo-card--featured {
  grid-column: span 8;
}

.story-photo-card__media {
  position: relative;
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.story-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.story-photo-card:hover .story-photo-card__media img {
  transform: scale(1.04);
}

.story-photo-card__content {
  padding: 20px;
}

.story-photo-card__content h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.story-photo-card__content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.97rem;
}

.campaign-panel {
  border-radius: 26px;
  padding: 18px;
}

.campaign-stats {
  margin-bottom: 16px;
}

.campaign-stats__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.progress {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress__fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd978, #37c67a);
  transition: width 0.25s ease;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.legend__dot--available {
  background: rgba(255, 255, 255, 0.28);
}

.legend__dot--selected {
  background: var(--gold);
}

.legend__dot--paid {
  background: var(--green);
}

.paws-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.paw-card {
  position: relative;
  min-height: 112px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.04)
  );
  color: var(--text);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
  overflow: hidden;
}

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

.paw-card--selected {
  border-color: rgba(244, 201, 93, 0.8);
  background:
    radial-gradient(circle at top, rgba(244, 201, 93, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(244, 201, 93, 0.08));
  box-shadow: 0 14px 30px rgba(244, 201, 93, 0.12);
}

.paw-card--paid {
  border-color: rgba(55, 198, 122, 0.55);
  background:
    radial-gradient(circle at top, rgba(55, 198, 122, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(55, 198, 122, 0.08));
}

.paw-card--disabled {
  pointer-events: none;
}

.paw-card__icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.paw-card__hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
}

.paw-card__name {
  max-width: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.paw-card__number {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
  color: #9ff0c2;
  letter-spacing: -0.04em;
}

.paw-card__shine {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 80px;
  height: 180px;
  transform: rotate(24deg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  opacity: 0;
}

.paw-card--paid .paw-card__shine {
  opacity: 1;
}

.prize-card {
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.prize-card__visual {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: end;
  padding: 26px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(255, 217, 120, 0.22),
      transparent 34%
    ),
    linear-gradient(180deg, #6a2c1d 0%, #23150f 100%);
}

.prize-card__glow {
  position: absolute;
  inset: auto auto 30px 30px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.25);
  filter: blur(40px);
}

.prize-card__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.prize-card__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.prize-card__content {
  padding: 28px;
}

.prize-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.bottom-bar--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.bottom-bar__content {
  width: min(100%, 700px);
  margin-inline: auto;
  background: rgba(10, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.bottom-bar__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.bottom-bar__summary span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal--hidden {
  display: none;
}

.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, 0.74);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 28px;
  padding: 24px;
}

.modal__dialog--reveal {
  width: min(100%, 620px);
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  font-size: 1.4rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.modal__header h3,
.reveal-box h3 {
  margin: 14px 0 10px;
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.checkout-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--text-soft);
  font-weight: 600;
}

.field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.field input:focus {
  border-color: rgba(244, 201, 93, 0.6);
  box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.12);
}

.checkout-summary {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
}

.checkout-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-summary__row + .checkout-summary__row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.selected-preview {
  display: grid;
  gap: 10px;
}

.selected-preview__label {
  color: var(--text-soft);
  font-weight: 700;
}

.selected-preview__list,
.revealed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selected-chip,
.revealed-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
}

.reveal-box {
  display: grid;
  gap: 16px;
}

.revealed-chip {
  min-height: 44px;
  padding: 0 16px;
  background: rgba(55, 198, 122, 0.12);
  border-color: rgba(55, 198, 122, 0.2);
  color: #d8ffe9;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero__meta,
  .story-grid,
  .prize-card {
    grid-template-columns: 1fr;
  }

  .campaign-stats__top {
    flex-direction: column;
    align-items: start;
  }
    .story-photo-card {
    grid-column: span 6;
  }

  .story-photo-card--featured {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 44px 0;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 42px;
    background-position: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .paw-card {
    min-height: 104px;
    border-radius: 18px;
    padding: 8px;
  }

  .paw-card__icon {
    width: 38px;
    height: 38px;
  }

  .bottom-bar__content {
    grid-template-columns: 1fr;
  }

  .modal__dialog {
    padding: 22px 18px 18px;
    border-radius: 24px;
  }
    .story-photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-photo-card,
  .story-photo-card--featured {
    grid-column: auto;
    border-radius: 20px;
  }

  .story-photo-card__media {
    aspect-ratio: 1 / 1;
  }

  .story-photo-card__content {
    padding: 18px 16px;
  }

  .modal {
  align-items: flex-end;
  padding: 10px;
}

.modal__dialog {
  width: 100%;
  max-height: calc(100dvh - 20px);
  border-radius: 24px 24px 18px 18px;
  padding: 22px 18px 18px;
}
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .paws-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .paw-card {
    min-height: 96px;
    padding: 8px 6px;
  }

  .paw-card__icon {
    width: 34px;
    height: 34px;
  }

  .paw-card__name {
    font-size: 0.78rem;
  }

  .paw-card__number {
    font-size: 1.15rem;
  }

  .paw-card__hint {
    font-size: 0.72rem;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .section-heading__title {
    font-size: 1.9rem;
  }
}


.prize-card__visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.prize-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prize-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 20% 20%, rgba(255, 217, 120, 0.2), transparent 30%);
}

.prize-card__content-overlay {
  position: relative;
  z-index: 2;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prize-card__badge {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 0.8rem;
}

.prize-card__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.prize-card--premium {
  position: relative;
  border: 1px solid rgba(244, 201, 93, 0.2);
  background:
    radial-gradient(circle at top, rgba(244, 201, 93, 0.08), transparent 30%),
    var(--surface);
}

.prize-card__badge--highlight {
  background: rgba(244, 201, 93, 0.25);
  border: 1px solid rgba(244, 201, 93, 0.4);
  color: #fff2c2;
}

.prize-highlight {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.prize-highlight__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.prize-highlight__item strong {
  font-size: 0.9rem;
}

.prize-highlight__item span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.prize-note {
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.prize-note p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.winner-section--hidden {
  display: none;
}

.winner-section {
  padding-top: 24px;
}

.winner-card {
  border: 1px solid rgba(244, 201, 93, 0.22);
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(244, 201, 93, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.winner-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.winner-card__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(244, 201, 93, 0.14);
  border: 1px solid rgba(244, 201, 93, 0.28);
  color: #ffe8a1;
  font-size: 0.84rem;
  font-weight: 700;
}

.winner-card__title {
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.winner-card__badge {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(55, 198, 122, 0.14);
  border: 1px solid rgba(55, 198, 122, 0.26);
  color: #bdf5d4;
  font-size: 0.84rem;
  font-weight: 800;
}

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

.winner-card__highlight {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.winner-card__label {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 8px;
}

.winner-card__highlight strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.winner-card__footer {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.winner-card__footer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .winner-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .winner-card__header {
    flex-direction: column;
    align-items: start;
  }

  .winner-card__body {
    grid-template-columns: 1fr;
  }

  .winner-card__highlight {
    border-radius: 18px;
    padding: 16px;
  }
}

.legend__dot--reserved {
  background: #facc15; /* amarelo elegante */
}

.paw-card--reserved {
  border-color: rgba(250, 204, 21, 0.55);

  background:
    radial-gradient(circle at top, rgba(250, 204, 21, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(250, 204, 21, 0.10));

  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.18);
}

.paw-card__hint--reserved {
  color: #fde68a;
  font-weight: 700;
}