/* ===== FONTS ===== */
@font-face {
  font-family: 'Iskra';
  src: url('../assets/fonts/Iskra-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Iskra';
  src: url('../assets/fonts/IskraW01-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
  --laranja:    #FE8802;
  --laranja-h:  #E67329;  /* padrão design system */
  --navy:       #022D53;
  --teal:       #02B1BA;
  --creme:      #FFF5EA;
  --texto:      #333333;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Iskra', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--texto);
  background-color: var(--creme);
  overflow-x: hidden;
}
img { max-width: 100%; width: auto; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--creme);
  padding: 24px 0 0;
  text-align: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: 'Iskra', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.logo-teal   { color: var(--teal); }
.logo-orange { color: var(--laranja); }

/* ===== IDENTITY ===== */
.bio-identity {
  text-align: center;
  padding: 48px 0 40px;
}
.bio-foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid rgba(254, 136, 2, 0.45);
  margin: 0 auto 18px;
}

/* GRITA — nome com peso de autoridade */
.bio-nome {
  font-family: 'Iskra', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

/* CONECTA — credencial como kicker de identidade */
.bio-credencial {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* GRITA — frase de posicionamento central da marca */
.bio-pos {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  max-width: 480px;
  margin: 0 auto 8px;
  line-height: 1.3;
}

.bio-pos-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(2, 45, 83, 0.50);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== GRUPOS ===== */
.bio-grupo {
  margin-bottom: 0;
}

/* espaço entre grupos — whitespace como separador */
.bio-grupo + .bio-grupo {
  margin-top: 32px;
}

/* CONECTA — kicker de grupo */
.bio-kicker {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.bio-grupo-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.45;
}

/* ===== BOTÕES ===== */
.bio-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  background-color: var(--laranja);
  color: #fff;
  border-radius: 32px;
  padding: 12px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease-out, transform 0.2s ease-out;
  -webkit-tap-highlight-color: transparent;
}
.bio-btn:last-child  { margin-bottom: 0; }
.bio-btn:hover  { background-color: var(--laranja-h); transform: translateY(-1px); }
.bio-btn:active { transform: translateY(0); }

.bio-btn__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* inner kicker para botões de nicho (Lulu, Guia SP) */
.bio-btn__inner-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 4px;
}

/* GRITA no botão */
.bio-btn__headline {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}

/* SUSSURRA no botão */
.bio-btn__sub {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

/* seta discreta, alinhada verticalmente */
.bio-btn__arrow {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  flex-shrink: 0;
  line-height: 1;
}

/* ===== FOOTER ===== */
.bio-footer {
  margin-top: 40px;
  padding: 32px 20px 56px;
  text-align: center;
  border-top: 1px solid rgba(2, 45, 83, 0.08);
}
.bio-footer p {
  font-size: 12px;
  color: rgba(2, 45, 83, 0.40);
  line-height: 1.7;
}

/* ===== MOBILE (375px base) ===== */
@media (max-width: 374px) {
  .bio-foto        { width: 96px; height: 96px; }
  .bio-nome        { font-size: 24px; }
  .bio-btn         { padding: 11px 16px; }
  .bio-btn__headline { font-size: 16px; }
  .bio-btn__sub    { font-size: 13px; }
}

/* ===== DESKTOP ===== */
@media (min-width: 600px) {
  .bio-foto        { width: 120px; height: 120px; }
  .bio-identity    { padding: 56px 0 48px; }
  .bio-nome        { font-size: 32px; }
  .bio-pos         { font-size: 23px; }
  .bio-pos-sub     { font-size: 15px; }
  .bio-btn         { padding: 14px 24px; }
  .bio-btn__headline { font-size: 19px; }
  .bio-btn__sub    { font-size: 15px; }
}
