:root {
  --font-script: "Great Vibes", "Dancing Script", cursive;
  --font-title: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --primary-color: #c4a747;
  --secondary-color: #1f3157;
  --text-dark: #3f4146;
  --text-soft: #6f7278;
  --bg-main: #f7f3ec;
  --bg-card: #fffdf8;
  --border-soft: rgba(63, 65, 70, 0.28);
}

body {
  background:
    radial-gradient(circle at top, rgba(196, 167, 71, 0.12), transparent 32%),
    linear-gradient(180deg, #fcfaf5 0%, var(--bg-main) 100%);
}

.pix-page {
  min-height: 100vh;
}

.pix-hero {
  padding: 180px 20px 90px;
}

.pix-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.pix-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.pix-title {
  margin: 0;
  color: var(--secondary-color);
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
}

.pix-subtitle {
  max-width: 680px;
  margin: 18px auto 44px;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.9;
}

.pix-reference-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 34px 34px 28px;
  background: var(--bg-card);
  border: 2px solid var(--border-soft);
  box-shadow: 0 20px 70px rgba(31, 49, 87, 0.08);
}

.pix-confirmation-note {
  margin: 0 auto 18px;
  max-width: 640px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.pix-heart {
  margin-bottom: 18px;
  color: var(--secondary-color);
  font-size: 2rem;
  line-height: 1;
}

.pix-reference-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: left;
}

.pix-reference-qr-frame {
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(63, 65, 70, 0.18);
}

.pix-reference-qr {
  display: block;
  width: 100%;
  height: auto;
}

.pix-reference-text p {
  margin: 0 0 18px;
  color: var(--text-dark);
  font-family: var(--font-title);
  font-size: clamp(0.85rem, 1.3vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.pix-key-box {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.pix-key-label {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.pix-key-value {
  color: var(--text-dark);
  font-family: var(--font-title);
  font-size: clamp(1.0rem, 2.0vw, 1.65rem);
  font-weight: 700;
  word-break: break-word;
}

.pix-brand-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.pix-brand-logo {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.pix-brand-name {
  color: var(--text-soft);
  font-family: var(--font-title);
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .pix-hero {
    padding: 150px 16px 70px;
  }

  .pix-reference-card {
    padding: 28px 20px 24px;
  }

  .pix-reference-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pix-reference-qr-frame {
    max-width: 240px;
  }

  .pix-reference-text p {
    margin-bottom: 16px;
  }
}


@media (max-width: 480px) {
  .pix-confirmation-note {
    font-size: 1rem;
  }

  .pix-heart {
    font-size: 1.7rem;
  }

  .pix-brand-logo {
    width: 72px;
  }

  .pix-brand-name {
    font-size: 1.45rem;
  }
  .pix-reference-text p {
    font-size: 0.65rem;
  }
}


