/*
  Personalização rápida:
  - Cores principais: altere as variáveis em :root.
  - Textos: altere diretamente em index.html.
  - Foto/logo: substitua assets/mago.png.
  - WhatsApp: altere o link no arquivo script.js.
*/
:root {
  --background: #050506;
  --text: #f8f4ec;
  --muted: #c7b9a5;
  --soft: #8d806e;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #d88a1d;
  --primary-hover: #f2a533;
  --accent: #f0a22f;
  --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.35), transparent 28rem),
    radial-gradient(circle at 100% 20%, rgba(255, 218, 135, 0.12), transparent 24rem),
    linear-gradient(145deg, #050506 0%, #15100b 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%, 560px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 26px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(24, 18, 12, 0.94), rgba(9, 8, 7, 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.12), transparent 34%, rgba(216, 138, 29, 0.16));
}

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

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

.profile-photo {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border: 2px solid rgba(240, 162, 47, 0.75);
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 32px rgba(216, 138, 29, 0.25);
}

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

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

h1,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 9.5em;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.25rem, 11vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.subtitle {
  max-width: 31rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

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

.main-button {
  min-height: 78px;
  padding: 17px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: left;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.main-button span {
  font-size: 1rem;
  font-weight: 800;
}

.main-button small {
  color: currentColor;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.78;
}

.main-button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #9a540b);
  box-shadow: 0 16px 36px rgba(216, 138, 29, 0.32);
}

.main-button:hover,
.main-button:focus-visible {
  transform: translateY(-2px);
}

.main-button.primary:hover,
.main-button.primary:focus-visible {
  background: linear-gradient(135deg, var(--primary-hover), #b8650d);
}

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

.microcopy {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

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

  .hero-card {
    padding: 42px;
  }

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