:root {
  --bg-1: #17040c;
  --bg-2: #3b0c1c;
  --bg-3: #7c233b;
  --text-light: #fff7f9;
  --text-soft: #ffdbe5;
  --accent: #ff6f9f;
  --accent-2: #d73568;
  --accent-dark: #8f1737;
  --gold: #f1c76b;
  --shadow: 0 24px 65px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text-light);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 119, 160, 0.38), transparent 28%),
    radial-gradient(circle at 92% 92%, rgba(215, 169, 79, 0.20), transparent 32%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2) 48%, var(--bg-3));
}

button {
  font: inherit;
}

.hearts-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.heart {
  position: absolute;
  bottom: -42px;
  color: rgba(255, 255, 255, 0.42);
  text-shadow: 0 0 18px rgba(255, 120, 164, 0.85);
  animation: floatHeart linear forwards;
}

@keyframes floatHeart {
  0% {
    transform: translateY(0) scale(0.75) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    transform: translateY(-112vh) scale(1.45) rotate(28deg);
    opacity: 0;
  }
}

.app-shell {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  perspective: 1500px;
  touch-action: none;
}

.book {
  position: relative;
  width: min(100%, 430px);
  height: min(100%, 880px);
  max-height: 900px;
  transform-style: preserve-3d;
}

.page {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  color: var(--text-light);
  background: transparent;
  transform: translateX(100%) rotateY(-18deg) scale(0.98);
  transform-origin: center;
  backface-visibility: hidden;
  transition:
    transform 0.72s cubic-bezier(0.18, 0.86, 0.28, 1),
    opacity 0.36s ease;
}

.page.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) rotateY(0deg) scale(1);
  z-index: 5;
}

.page.to-left {
  opacity: 0;
  transform: translateX(-105%) rotateY(18deg) scale(0.96);
  z-index: 1;
}

.page.to-right {
  opacity: 0;
  transform: translateX(105%) rotateY(-18deg) scale(0.96);
  z-index: 1;
}

.page-content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.52);
}

.kicker {
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(241, 199, 107, 0.50);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(60, 12, 28, 0.45);
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: none;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 390px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 16vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  color: #ffffff;
}

h1 span {
  color: var(--gold);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 14vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: #ffffff;
}

.main-phrase {
  max-width: 340px;
  margin-bottom: 32px;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.58;
  font-weight: 750;
}

.primary-btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  cursor: pointer;
  color: #3d0b1d;
  background: linear-gradient(135deg, #fff7fa, #ff78a7);
  box-shadow: 0 16px 34px rgba(255, 111, 159, 0.28);
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:active,
.play-btn:active,
.control-btn:active {
  transform: scale(0.96);
}

.hint {
  display: block;
  margin-top: 18px;
  color: rgba(255, 236, 242, 0.74);
  font-size: 0.82rem;
  font-weight: 650;
}

.music-content {
  justify-content: center;
}

.spotify-card {
  width: min(100%, 365px);
  padding: 22px 18px 20px;
  border-radius: 28px;
  color: #ffffff;
  background: transparent;
}

.track-head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 120px;
  margin-bottom: 32px;
  text-align: left;
}

.album-cover {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  flex: 0 0 auto;
}

.track-info {
  min-width: 0;
}

.track-info h2 {
  margin: 0 0 6px;
  font-size: clamp(2.4rem, 12vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.track-info p {
  margin: 0;
  color: rgba(255, 236, 242, 0.82);
  font-size: clamp(1.25rem, 6vw, 2.1rem);
  line-height: 1.05;
  font-weight: 500;
  white-space: nowrap;
}

.music-hidden {
  filter: blur(9px);
  opacity: 0.38;
  transform: scale(0.985);
  transition: filter 0.65s ease, opacity 0.65s ease, transform 0.65s ease;
}

.music-revealed {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.progress-wrap {
  display: grid;
  grid-template-columns: 42px 1fr 48px;
  align-items: center;
  gap: 11px;
  margin-bottom: 34px;
  color: rgba(255, 236, 242, 0.78);
  font-weight: 800;
  font-size: 0.94rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.56);
}

.progress-bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.22);
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.85);
  transition: width 0.25s linear;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.control-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: none;
}

.control-btn.inactive {
  opacity: 0.60;
}

.control-icon {
  position: relative;
  display: block;
  width: 32px;
  height: 26px;
}

.prev-icon::before,
.prev-icon::after,
.next-icon::before,
.next-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.prev-icon::before {
  left: 2px;
  border-right: 15px solid rgba(255, 255, 255, 0.84);
}

.prev-icon::after {
  left: 14px;
  border-right: 15px solid rgba(255, 255, 255, 0.84);
}

.next-icon::before {
  left: 2px;
  border-left: 15px solid rgba(255, 255, 255, 0.84);
}

.next-icon::after {
  left: 14px;
  border-left: 15px solid rgba(255, 255, 255, 0.84);
}

.play-btn {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--accent-dark);
  cursor: pointer;
  background: #ffffff;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.30),
    0 0 0 12px rgba(255, 255, 255, 0.10),
    0 0 0 26px rgba(255, 255, 255, 0.06);
  animation: pulsePlay 1.8s ease-in-out infinite;
}

.play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--accent-dark);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.16));
}

.play-btn.is-playing .play-icon {
  width: 30px;
  height: 34px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 9px solid var(--accent-dark);
  border-right: 9px solid var(--accent-dark);
}


@keyframes pulsePlay {
  0%, 100% {
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.30),
      0 0 0 12px rgba(255, 255, 255, 0.10),
      0 0 0 26px rgba(255, 255, 255, 0.06);
  }
  50% {
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.30),
      0 0 0 18px rgba(255, 255, 255, 0.08),
      0 0 0 36px rgba(255, 255, 255, 0.04);
  }
}

.music-note {
  margin: 0 auto;
  max-width: 270px;
  color: rgba(255, 236, 242, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
  font-weight: 650;
}

.time-content {
  justify-content: center;
}

.vertical-pages {
  position: relative;
  width: min(100%, 360px);
  height: 370px;
  overflow: hidden;
  touch-action: none;
}

.time-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(100%) scale(0.98);
  transition:
    transform 0.58s cubic-bezier(0.2, 0.8, 0.24, 1),
    opacity 0.32s ease;
}

.time-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.time-card.before {
  opacity: 0;
  transform: translateY(-100%) scale(0.96);
}

.time-card.after {
  opacity: 0;
  transform: translateY(100%) scale(0.96);
}

.time-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.time-card strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2.7rem, 15vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.time-card small {
  color: rgba(255, 236, 242, 0.84);
  font-size: 1rem;
  line-height: 1.48;
  font-weight: 650;
}

.page-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
}

.page-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: width 0.25s ease, background 0.25s ease;
}

.page-dot.active {
  width: 24px;
  background: var(--gold);
}

.moments-content p {
  max-width: 280px;
  color: rgba(255, 236, 242, 0.82);
  font-weight: 650;
}

@media (max-width: 390px) {
  .page {
    padding: 18px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .track-head {
    gap: 13px;
  }

  .album-cover {
    width: 88px;
    height: 88px;
    border-radius: 16px;
  }

  .track-info h2 {
    font-size: 2.4rem;
  }

  .track-info p {
    font-size: 1.25rem;
  }

  .player-controls {
    gap: 20px;
  }

  .play-btn {
    width: 86px;
    height: 86px;
  }

  .control-btn {
    width: 52px;
    height: 52px;
  }

  .vertical-pages {
    height: 345px;
  }
}

@media (min-width: 700px) {
  .page-content {
    max-width: 430px;
    margin-inline: auto;
  }
}


/* Página 4 - Nossa Jornada */
.page-journey { padding: 0; }

.journey-content {
  justify-content: flex-start;
  min-height: 100%;
  padding: 28px 18px 34px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: none;
}
.journey-content::-webkit-scrollbar { display: none; }

.journey-header {
  width: 100%;
  padding: 18px 0 12px;
  text-align: center;
}

.journey-header h2 {
  margin-bottom: 10px;
  font-size: clamp(2.7rem, 13vw, 4.5rem);
}

.journey-header p:not(.kicker) {
  margin: 0 auto;
  max-width: 300px;
  color: rgba(255, 236, 242, 0.82);
  font-weight: 650;
  line-height: 1.45;
}

.timeline {
  position: relative;
  width: min(100%, 380px);
  margin: 22px auto 20px;
  padding: 8px 0 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 44px;
  left: 50%;
  width: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(241,199,107,0), rgba(241,199,107,.85), rgba(255,111,159,.85), rgba(241,199,107,0));
  box-shadow: 0 0 20px rgba(255, 111, 159, .28);
}

.timeline-item {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 8px;
}

.timeline-item::before {
  content: "♥";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 111, 159, .72);
  font-size: .84rem;
  z-index: 2;
}

.timeline-item.reverse .polaroid { grid-column: 2; grid-row: 1; }
.timeline-item.reverse .timeline-text { grid-column: 1; grid-row: 1; text-align: right; }

.polaroid {
  position: relative;
  width: 128px;
  margin: 0 auto;
  padding: 8px 8px 28px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: #fff7f9;
  box-shadow: 0 16px 30px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.45);
  transform: rotate(-4deg);
  transition: transform .2s ease, box-shadow .2s ease;
}

.timeline-item.reverse .polaroid { transform: rotate(4deg); }
.polaroid:active { transform: rotate(0deg) scale(.96); }

.polaroid img {
  width: 100%;
  height: 134px;
  display: block;
  object-fit: cover;
  border-radius: 5px;
  background: #3b0c1c;
}

.polaroid span {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  color: #5c1430;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: none;
}

.timeline-text { text-align: left; }

.timeline-text strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: .03em;
}

.timeline-text p {
  margin: 0;
  color: rgba(255, 236, 242, .82);
  font-size: .9rem;
  line-height: 1.42;
  font-weight: 650;
}

/* Galeria estilo Stories */
.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: max(12px, env(safe-area-inset-top)) 10px max(12px, env(safe-area-inset-bottom));
  background: radial-gradient(circle at 30% 12%, rgba(255,119,160,.34), transparent 32%),
              linear-gradient(160deg, rgba(23,4,12,.98), rgba(59,12,28,.98) 52%, rgba(124,35,59,.98));
  opacity: 1;
  pointer-events: auto;
  transition: opacity .22s ease;
}

.story-viewer.hidden {
  opacity: 0;
  pointer-events: none;
}

.story-progress {
  position: relative;
  z-index: 55;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 5px;
  width: 100%;
  padding: 8px 42px 8px 8px;
}

.story-segment {
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.28);
}

.story-segment-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.story-close {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: 12px;
  z-index: 70;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(8px);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.story-photo-wrap {
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  min-height: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #17040c;
  box-shadow: 0 24px 70px rgba(0,0,0,.48);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.story-photo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent 42%),
              linear-gradient(to bottom, rgba(0,0,0,.32), transparent 26%);
}

.story-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 3;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,.62);
}

.story-caption span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-caption strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2.2rem, 11vw, 4.2rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.story-caption small {
  color: rgba(255,236,242,.86);
  font-size: .98rem;
  font-weight: 800;
}

.story-tap-zone {
  position: fixed;
  top: 64px;
  bottom: 0;
  z-index: 60;
}

.story-prev { left: 0; width: 34%; }
.story-next { right: 0; width: 66%; }

body.story-open { overflow: hidden; }

@media (max-width: 390px) {
  .polaroid { width: 116px; }
  .polaroid img { height: 124px; }
  .timeline-item { min-height: 198px; gap: 18px; }
  .timeline-text p { font-size: .84rem; }
}


/* Ajuste V4.1 - Nossa Jornada com rolagem vertical */
.page-journey {
  padding: 0;
  touch-action: pan-y;
}

.journey-content {
  height: 100%;
  min-height: 0;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: max(34px, env(safe-area-inset-top)) 18px max(34px, env(safe-area-inset-bottom));
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.journey-header {
  width: 100%;
  text-align: center;
  padding: 18px 0 18px;
}

.journey-header .kicker {
  margin-left: auto;
  margin-right: auto;
}

.journey-header h2 {
  margin: 0 0 12px;
  color: #ffffff;
  text-align: center;
  font-size: clamp(2.8rem, 13vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.journey-header p:not(.kicker) {
  margin: 0 auto;
  max-width: 310px;
  color: rgba(255, 236, 242, 0.86);
  text-align: center;
  font-size: 1rem;
  line-height: 1.46;
  font-weight: 700;
}

.timeline {
  margin-top: 16px;
  padding-bottom: 56px;
}


/* Ajuste V4.3 - afastar textos do coração central */
.timeline-item {
  column-gap: 34px;
}

.timeline-text {
  padding-left: 26px;
}

.timeline-item.reverse .timeline-text {
  padding-left: 0;
  padding-right: 26px;
}

.timeline-item::before {
  z-index: 5;
}

/* Ajuste V4.3 - zonas do stories recebem o toque/segurar */
.story-tap-zone {
  touch-action: none;
  cursor: pointer;
}

@media (max-width: 390px) {
  .timeline-item {
    column-gap: 30px;
  }

  .timeline-text {
    padding-left: 22px;
  }

  .timeline-item.reverse .timeline-text {
    padding-right: 22px;
  }
}


/* Página 5 - Coisas que eu amo em você */
.journey-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 0 42px;
}

.page-reasons {
  background: transparent;
}

.reasons-content {
  justify-content: center;
  padding: 24px 18px;
}

.reasons-content h2 {
  max-width: 360px;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: clamp(2.5rem, 12vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.reasons-stage {
  position: relative;
  width: min(100%, 360px);
  height: 360px;
  overflow: hidden;
  touch-action: none;
}

.reason-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.20), transparent 34%),
    rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(9px);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(100%) scale(0.96) rotate(2deg);
  transition:
    transform 0.58s cubic-bezier(0.2, 0.8, 0.24, 1),
    opacity 0.32s ease;
}

.reason-card.active {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  z-index: 2;
}

.reason-card.before {
  opacity: 0;
  transform: translateY(-100%) scale(0.96) rotate(-2deg);
}

.reason-card.after {
  opacity: 0;
  transform: translateY(100%) scale(0.96) rotate(2deg);
}

.reason-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 999px;
  color: #3d0b1d;
  background: linear-gradient(135deg, #fff7fa, #ff78a7);
  box-shadow: 0 12px 30px rgba(255, 111, 159, 0.26);
  font-size: 1.1rem;
  font-weight: 950;
  text-shadow: none;
}

.reason-card p {
  margin: 0;
  color: rgba(255, 247, 249, 0.94);
  font-size: clamp(1.35rem, 6vw, 2rem);
  line-height: 1.32;
  font-weight: 800;
}

.final-reason {
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 199, 107, 0.24), transparent 38%),
    rgba(255, 255, 255, 0.13);
}

.final-reason span {
  color: #3d0b1d;
  background: linear-gradient(135deg, #fff3c4, #f1c76b);
}

#goFinalLetterBtn {
  margin-top: 22px;
}

@media (max-width: 390px) {
  .reasons-stage {
    height: 340px;
  }

  .reason-card {
    padding: 28px 22px;
  }

  .reason-card p {
    font-size: 1.28rem;
  }
}
