:root {
  --bg: #f5efff;
  --bg-strong: #e4d6ff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --primary: #7c3aed;
  --primary-dark: #4c1d95;
  --primary-soft: #d9c2ff;
  --text: #2f1b4d;
  --muted: #6d5a8c;
  --border: rgba(124, 58, 237, 0.14);
  --shadow: 0 18px 40px rgba(76, 29, 149, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

body.theme-purple {
  --bg: #f5efff;
  --bg-strong: #e4d6ff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --primary: #7c3aed;
  --primary-dark: #4c1d95;
  --primary-soft: #d9c2ff;
  --text: #2f1b4d;
  --muted: #6d5a8c;
  --border: rgba(124, 58, 237, 0.14);
  --shadow: 0 18px 40px rgba(76, 29, 149, 0.16);
}

body.theme-blue {
  --bg: #eef6ff;
  --bg-strong: #d8eaff;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --primary: #0a66d9;
  --primary-dark: #083a7a;
  --primary-soft: #bedcff;
  --text: #12304d;
  --muted: #56718f;
  --border: rgba(10, 102, 217, 0.14);
  --shadow: 0 18px 40px rgba(15, 61, 120, 0.16);
}

body.theme-yellow {
  --bg: #fff9e8;
  --bg-strong: #ffefb3;
  --surface: #fffef8;
  --surface-soft: rgba(255, 254, 248, 0.8);
  --primary: #d4a017;
  --primary-dark: #8a5a00;
  --primary-soft: #ffe08a;
  --text: #5b4200;
  --muted: #8c7430;
  --border: rgba(212, 160, 23, 0.18);
  --shadow: 0 18px 40px rgba(138, 90, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--primary-dark) 88%, black 12%) 0%, var(--primary) 22%, var(--bg) 58%, #fcfaff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -3rem;
  right: -2.5rem;
  width: 11rem;
  height: 11rem;
  background: rgba(255, 255, 255, 0.28);
}

body::after {
  bottom: 18%;
  left: -3rem;
  width: 9rem;
  height: 9rem;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
}

.watermark {
  position: fixed;
  right: -0.75rem;
  bottom: 5.5rem;
  z-index: 0;
  font-size: clamp(3.4rem, 17vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(31, 31, 31, 0.664);
  transform: rotate(-90deg);
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}

.hero {
  padding: 1rem 0.25rem 1.75rem;
  color: #ffffff;
}

.hero__badge,
.status-chip,
.pickup-box__icon,
.item-card__count,
.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__badge {
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero__eyebrow,
.section-label,
.pickup-box__label,
.info-tile p,
.item-card p,
.timeline-step p {
  margin: 0;
}

.hero__eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 700;
}

.hero__eyebrow {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero h1,
.section-heading h2,
.kit-card h2,
.item-card h3,
.timeline-step h3 {
  margin: 0;
}

.hero h1 {
  font-size: clamp(2rem, 7vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero__description {
  margin: 1rem 0 0;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.content {
  display: grid;
  gap: 1rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 1rem 0.35rem 0;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.site-footer p {
  margin: 0 0 0.65rem;
}

.site-footer a {
  color: black;
  text-decoration: none;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.kit-card,
.items-section,
.timeline-section {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.kit-card__top,
.pickup-box,
.item-card,
.timeline-step {
  display: flex;
}

.kit-card__top {
  gap: 0.9rem;
  align-items: flex-start;
  justify-content: space-between;
}

.section-label {
  margin-bottom: 0.45rem;
  color: var(--primary);
}

.kit-card h2,
.section-heading h2 {
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.status-chip {
  flex-shrink: 0;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-soft) 55%, white 45%);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.pickup-box {
  gap: 0.9rem;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
}

.pickup-box__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.pickup-box strong {
  display: block;
  margin: 0.15rem 0 0.35rem;
  font-size: 1rem;
}

.pickup-box__label,
.pickup-box__text {
  color: rgba(255, 255, 255, 0.9);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.info-tile,
.item-card,
.timeline-step {
  border: 1px solid var(--border);
  background: var(--surface);
}

.info-tile {
  padding: 0.95rem;
  border-radius: var(--radius-md);
}

.info-tile p,
.item-card p,
.timeline-step p {
  color: var(--muted);
  line-height: 1.45;
}

.info-tile p {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}

.info-tile strong {
  font-size: 0.98rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.item-list,
.timeline {
  display: grid;
  gap: 0.8rem;
}

.item-card,
.timeline-step {
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.item-card__count,
.timeline-step span {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary-soft) 55%, white 45%), var(--primary-soft));
  color: var(--primary-dark);
  font-weight: 800;
}

.item-card h3,
.timeline-step h3 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

/* botoes */
button.info-tile {
  color: white;
  width: 100%;
  grid-column: 1 / -1;
  padding: 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--primary);
  cursor: pointer;
}

button.info-tile:hover {
  background: var(--primary-dark);
}
button.info-tile:active {
  background: white;
  color: var(--text);
}
button.info-tile:active > p {
  color: var(--text);
}

button.info-tile > p {
  color: white;
}

@media (max-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  button.info-tile {
    grid-column: auto;
  }
}

@media (min-width: 720px) {
  .page-shell {
    width: min(100% - 2rem, 64rem);
    padding: 2rem 1rem 3rem;
  }

  .watermark {
    right: 1rem;
    bottom: 4rem;
  }

  .hero {
    padding-inline: 0.5rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .content {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .kit-card {
    grid-column: 1 / -1;
  }

  .items-section,
  .timeline-section {
    height: 100%;
  }
}
