:root {
  --background: #050506;
  --text: #f8f4ec;
  --muted: #c7b9a5;
  --soft: #8d806e;
  --line: rgba(255, 255, 255, 0.13);
  --primary: #181c24;
  --primary-hover: #222936;
  --accent: #f0a22f;
  --accent-strong: #ffc400;
  --teal: #3b82f6;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 2%, rgba(216, 138, 29, 0.22), transparent 28rem),
    radial-gradient(circle at 100% 20%, rgba(59, 130, 246, 0.12), transparent 24rem),
    linear-gradient(145deg, #050506 0%, #0d0f14 48%, #050506 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100%, 620px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 22, 28, 0.94), rgba(8, 9, 11, 0.96));
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%, rgba(216, 138, 29, 0.12));
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.profile-photo {
  width: 106px;
  height: 106px;
  flex: 0 0 auto;
  border: 2px solid rgba(240, 162, 47, 0.82);
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 38px rgba(216, 138, 29, 0.28);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-role {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

h1,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 10vw, 4.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.coupon-box {
  margin: 22px 0 0;
  padding: 9px 11px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 8px;
  color: #fff6df;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 0, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(216, 138, 29, 0.28), rgba(83, 46, 8, 0.62));
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(216, 138, 29, 0.12);
}

.coupon-box strong,
.main-button small {
  color: var(--accent-strong);
}

.coupon-box strong {
  font-size: 1.32em;
  letter-spacing: 0.06em;
}

.button-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.main-button {
  min-height: 86px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(24, 30, 41, 0.98), rgba(14, 17, 23, 0.98));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-logo {
  width: 66px;
  height: 66px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  object-fit: cover;
  background: transparent;
  display: block;
  justify-self: center;
  align-self: center;
}

.main-button strong {
  display: block;
  font-size: 1.14rem;
  line-height: 1.24;
}

.main-button small {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.main-button:hover,
.main-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.45);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(34, 43, 59, 0.98), rgba(18, 22, 31, 0.98));
}

.main-button:focus-visible {
  outline: 3px solid rgba(240, 162, 47, 0.38);
  outline-offset: 4px;
}

/* Estilo do Rodapé Legal Informativo */
.legal-footer {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.legal-footer p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--soft);
  margin: 0;
  font-weight: 500;
}

.legal-footer strong {
  color: var(--muted);
}

@media (min-width: 720px) {
  .page-shell {
    padding: 36px 24px;
  }

  .hero-card {
    padding: 36px;
  }

  .profile-photo {
    width: 124px;
    height: 124px;
  }

  .main-button strong {
    font-size: 1.16rem;
  }
}
