:root {
  --bg: #0d0f12;
  --panel: #151922;
  --panel-soft: #1c2130;
  --accent: #ffd84d;
  --accent-strong: #ffcc00;
  --text: #f8fafc;
  --muted: #b6bfcd;
  --border-subtle: rgba(255, 216, 77, 0.24);
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
  --reyna-image: url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/c129aab8-0fed-4d3e-8c10-3fc467fb661b/ddyjdmr-b48faa53-4620-4de8-a2f9-77f168cc1ea6.png/v1/fit/w_828,h_1626/reyna_valorant_png_by_kaelinshi_ddyjdmr-414w-2x.png?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MjA5OSIsInBhdGgiOiIvZi9jMTI5YWFiOC0wZmVkLTRkM2UtOGMxMC0zZmM0NjdmYjY2MWIvZGR5amRtci1iNDhmYWE1My00NjIwLTRkZTgtYTJmOS03N2YxNjhjYzFlYTYucG5nIiwid2lkdGgiOiI8PTEwNjkifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.mFKonKxgAax0gfV3CzinsuyFzHoQtBaLnRVYiZbuk5I");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #0b0d12 0%, #111520 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  right: 0;
  bottom: 0;
  width: min(62vw, 980px);
  height: 100vh;
  background-image: var(--reyna-image);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 16, 0.96) 0%, rgba(10, 12, 16, 0.7) 60%, rgba(10, 12, 16, 0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

.shell,
.page,
.footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(13, 16, 24, 0.86);
  border-bottom: 1px solid rgba(255, 216, 77, 0.18);
}

.shell-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.valorant-logo-link {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: transform 0.14s ease;
}

.valorant-logo-link:hover {
  transform: translateY(-1px);
}

.valorant-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: saturate(1.2) brightness(1.05);
}

.logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffef99, #ffd84d);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #d1d7e2;
}

.nav a {
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.18s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  padding: 8px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out,
    background 0.14s ease-out, color 0.14s ease-out, border-color 0.14s ease-out;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #141414;
  box-shadow: 0 10px 26px rgba(255, 204, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 204, 0, 0.36);
}

.btn-outline {
  border: 1px solid rgba(255, 216, 77, 0.4);
  color: var(--text);
  background: #1a1f2b;
}

.btn-outline:hover {
  border-color: rgba(255, 216, 77, 0.9);
  color: #fff;
  transform: translateY(-1px);
}

.full {
  width: 100%;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 18px 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-grid {
  display: contents;
}

.hero-simple {
  display: block;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe082;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 40px);
  letter-spacing: -0.03em;
}

h1 span {
  color: #ffe680;
}

.hero-sub {
  margin: 0;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.7;
  color: #d0d7e4;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 77, 0.22);
  padding: 6px 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f7f8fb;
  background: #1a1f2a;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffd84d;
  box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.22);
}

.dot.green {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.hero-panel {
  background: #171c27;
  border-radius: 24px;
  border: 1px solid rgba(255, 216, 77, 0.24);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
}

.hero-panel-header,
.panel-form {
  position: relative;
  z-index: 1;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
}

.status-pill {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 216, 77, 0.18);
  color: #fff1b8;
  border: 1px solid rgba(255, 216, 77, 0.45);
}

.panel-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.field span {
  color: #e5e7eb;
}

input,
select {
  border-radius: 12px;
  border: 1px solid rgba(255, 216, 77, 0.25);
  background: #111621;
  padding: 8px 12px;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out,
    background 0.15s ease-out;
}

input::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

input:focus,
select:focus {
  border-color: rgba(255, 216, 77, 0.9);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.8);
  background: #0f141f;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%),
    linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 14px,
    calc(100% - 11px) 14px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  margin: 2px 0 4px;
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  font-size: 20px;
}

.hint {
  margin: 4px 4px 0;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.9);
}

.section {
  margin-top: 44px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 0;
  font-size: 22px;
}

.section-header p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.selection-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(1120px, calc(100vw - 28px));
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 216, 77, 0.32);
  background: rgba(23, 28, 39, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 50;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.selection-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

#selectionLabel {
  color: var(--muted);
}

#selectionPrice {
  font-size: 16px;
}

/* espaço extra para a barra fixa não cobrir conteúdo */
.page {
  padding-bottom: 110px;
}

@supports (padding: max(0px)) {
  .selection-bar {
    bottom: max(14px, env(safe-area-inset-bottom));
  }
  .page {
    padding-bottom: max(110px, calc(env(safe-area-inset-bottom) + 110px));
  }
}

.plan-card {
  border-radius: 18px;
  background: #171c27;
  border: 1px solid rgba(255, 216, 77, 0.2);
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-featured {
  position: relative;
  border-color: rgba(255, 216, 77, 0.5);
  box-shadow: 0 14px 32px rgba(255, 204, 0, 0.16);
}

.chip {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 216, 77, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 77, 0.5);
  padding: 4px 8px;
  color: #fff3bf;
}

.plan-card h3 {
  margin: 0;
  font-size: 18px;
}

.plan-tag {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.plan-price {
  margin: 4px 0 0;
}

.plan-price span {
  font-size: 20px;
  font-weight: 700;
}

.plan-price small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.plan-card ul {
  margin: 8px 0 12px;
  padding-left: 16px;
  list-style: none;
  font-size: 12px;
  color: rgba(209, 213, 219, 0.95);
}

.plan-card li {
  position: relative;
  padding-left: 10px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #ffd84d;
}

.rating {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd84d;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.rating small {
  color: #fff4c7;
  font-size: 12px;
}

.section-alt {
  margin-top: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  border-radius: 16px;
  border: 1px solid rgba(255, 216, 77, 0.2);
  background: #171c27;
  padding: 14px 14px 14px;
}

.steps h3 {
  margin: 4px 0 6px;
  font-size: 16px;
}

.steps p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 77, 0.45);
  font-size: 12px;
  color: #e5e7eb;
}

.feedbacks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feedback {
  border-radius: 16px;
  border: 1px solid rgba(255, 216, 77, 0.2);
  background: #171c27;
  padding: 12px 14px 14px;
  font-size: 13px;
  color: rgba(229, 231, 235, 0.95);
}

.fb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 12px;
}

.fb-user {
  color: #fff4c7;
  font-weight: 600;
}

.fb-meta {
  color: rgba(255, 216, 77, 0.85);
  border: 1px solid rgba(255, 216, 77, 0.25);
  background: rgba(255, 216, 77, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.feedback p {
  margin: 0;
}

.footer {
  border-top: 1px solid rgba(255, 216, 77, 0.2);
  background: #0d111a;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.footer-note code {
  background: rgba(255, 216, 77, 0.12);
  border-radius: 6px;
  padding: 2px 6px;
  border: 1px solid rgba(255, 216, 77, 0.25);
}

.discord-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 216, 77, 0.3);
  background: #1a1f2a;
  color: #ffd84d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.14s ease, border-color 0.14s ease, background 0.14s ease;
}

.discord-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 77, 0.8);
  background: #232a38;
}

.discord-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.terms-box {
  background: #171c27;
  border: 1px solid rgba(255, 216, 77, 0.2);
  border-radius: 16px;
  padding: 14px;
}

.terms-box p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #dce2ee;
}

.terms-box p:last-child {
  margin-bottom: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 14px;
}

.checkout-card {
  background: #171c27;
  border: 1px solid rgba(255, 216, 77, 0.2);
  border-radius: 18px;
  padding: 14px;
}

.checkout-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 216, 77, 0.12);
  color: #dce2ee;
  font-size: 14px;
}

.checkout-row strong {
  color: #fff;
  font-weight: 700;
}

.checkout-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  margin-top: 8px;
  font-size: 14px;
}

.checkout-total strong {
  font-size: 22px;
  color: #fff4c7;
}

.checkout-title {
  margin: 0 0 8px;
  font-size: 18px;
}

.checkout-sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hint a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    max-width: 420px;
    margin: 16px auto 0;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .feedbacks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .shell-inner {
    padding-inline: 14px;
  }

  .nav {
    display: none;
  }

  .page {
    padding-inline: 14px;
  }

  .plans-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feedbacks {
    grid-template-columns: minmax(0, 1fr);
  }
}

