/* ============================================================
   Arlindo Armando — Link in Bio
   Design system: gradient navy + amber accent (#E8A838)
   Mobile-first, centered vertically as an app-like page
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  min-height: 100dvh;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: radial-gradient(ellipse at top, #132038 0%, #060D16 65%);
  background-color: #060D16;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --------- Layout principal ---------- */
.bio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100dvh;
  padding: 32px 24px;
  isolation: isolate;
}

/* Glow âmbar sutil no topo */
.bio__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    circle at center,
    rgba(232, 168, 56, 0.21) 0%,
    rgba(232, 168, 56, 0.10) 30%,
    rgba(232, 168, 56, 0) 65%
  );
  filter: blur(8px);
}

/* --------- Card central ---------- */
.bio__card {
  width: 100%;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --------- Avatar ---------- */
.bio__avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E8A838;
  box-shadow:
    0 0 0 1px rgba(232, 168, 56, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.45);
  background-color: #1A1A1A;
}

/* --------- Nome e handle ---------- */
.bio__name {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  line-height: 1.2;
}

.bio__handle {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 400;
  color: #8BA3B8;
  line-height: 1.3;
}

/* --------- Separador ---------- */
.bio__divider {
  width: 100%;
  margin: 28px 0 24px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* --------- Lista de botões ---------- */
.bio__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  overflow: hidden;
  padding: 16px;
}

.bio__button img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Botão Mentoria */
.bio__button--mentoria {
  background: linear-gradient(135deg, #E8A838 0%, #C88720 100%);
  border: none;
  flex-direction: column;
  gap: 4px;
}

.bio__button--mentoria:hover,
.bio__button--mentoria:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 168, 56, 0.40);
}

.bio__mentoria-label {
  font-size: 17px;
  font-weight: 700;
  color: #060D16;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.bio__mentoria-cta {
  font-size: 13px;
  font-weight: 500;
  color: rgba(6, 13, 22, 0.62);
}

/* Botão Receita Paralela */
.bio__button--receita img {
  width: 165px;
  height: auto;
  max-height: none;
}


.bio__button--receita {
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bio__button--receita:hover,
.bio__button--receita:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

/* Botão Advisor */
.bio__button--advisor {
  background-color: #060D16;
  border: 1.5px solid #E8A838;
}

.bio__button--advisor:hover,
.bio__button--advisor:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(232, 168, 56, 0.35),
    0 10px 26px rgba(232, 168, 56, 0.18);
}

/* Separador entre produtos */
.bio__item-divider {
  width: 100%;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 4px 0;
}

/* Label acima de um botão */
.bio__section-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-bottom: -4px;
}

/* Botão Aureon */
.bio__button--aureon {
  background-color: #060D16;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.bio__button--aureon img {
  width: 190px;
  height: auto;
  max-height: none;
}

.bio__button--aureon:hover,
.bio__button--aureon:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

/* Botão MCOZ */
.bio__button--mcoz {
  background-color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bio__button--mcoz:hover,
.bio__button--mcoz:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* --------- Acessibilidade ---------- */
:focus-visible {
  outline: 2px solid #E8A838;
  outline-offset: 3px;
}

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

/* --------- Telas maiores (centralizado, mantém mobile-first) ---------- */
@media (min-width: 480px) {
  .bio__card {
    max-width: 420px;
  }
}
