@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url('/fontes/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url('/fontes/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500;
  font-display: swap; src: url('/fontes/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono'; font-style: normal; font-weight: 500;
  font-display: swap; src: url('/fontes/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------------------------------------------------------------------------
   Uma tela so. Verde profundo com degrade, um ponto de luz no canto, texto
   claro e UM acento dourado. Sem JavaScript, sem fonte de terceiro.
   --------------------------------------------------------------------------- */
:root {
  --fundo:       #07130E;
  --fundo-claro: #22483A;
  --menta:       #5FB58F;
  --tinta:       #F3F7F4;
  --tinta-suave: #BFCFC6;
  --tinta-fraca: #5FB58F;
  --ouro:        #E8C04F;
  --borda:       rgba(243, 247, 244, 0.10);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--tinta);
  background:
    radial-gradient(60rem 40rem at 15% 0%, rgba(95, 181, 143, 0.28), transparent 60%),
    radial-gradient(40rem 30rem at 100% 100%, rgba(34, 72, 58, 0.9), transparent 60%),
    linear-gradient(160deg, var(--fundo-claro) 0%, var(--fundo) 55%, #04100B 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

.tela {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.cartao {
  width: 100%;
  max-width: 34rem;
  padding: clamp(1.75rem, 5vw, 3rem);
  border: 1px solid var(--borda);
  border-radius: 1.5rem;
  background: rgba(7, 19, 14, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.rotulo {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tinta-fraca);
  font-weight: 600;
}

.nome {
  margin: 0.6rem 0 0.5rem;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.nome::after {
  content: "";
  display: inline-block;
  width: 0.28em; height: 0.28em;
  margin-left: 0.28em;
  border-radius: 50%;
  background: var(--ouro);
  vertical-align: 0.08em;
}

.contato {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--borda);
}
.email {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  font-weight: 500;
  color: var(--tinta);
  text-decoration: none;
  border-bottom: 2px solid var(--ouro);
  padding-bottom: 0.15rem;
  transition: color 160ms ease, border-color 160ms ease;
}
.email:hover, .email:focus-visible { color: var(--ouro); outline: none; }

.produtos {
  margin-top: 2rem;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.produtos a { color: var(--tinta-suave); text-decoration: none; }
.produtos a:hover, .produtos a:focus-visible { color: var(--tinta); outline: none; }
.produtos span { color: var(--tinta-fraca); }

@media (prefers-reduced-motion: reduce) { .email { transition: none; } }
