/* =========================================================
   Cintia Schweig · Página de bio (raiz de cintiaschweig.com.br)
   Paleta da marca: grafite #2B2926 · terracota #A5705E · creme #F3EEE7
   ========================================================= */
:root {
  --terra: #a5705e;
  --terra-2: #bb8672;
  --terra-3: #8c5a48;
  --terra-l: #d8ac99;
  --cream: #f3eee7;
  --cream-2: #fbf8f4;
  --sand: #e6ded4;
  --ink: #2b2926;
  --ink-2: #4a433d;
  --muted: #7a6d65;
  --line: rgba(43, 41, 38, .14);

  --sans: "Montserrat", "Helvetica Neue", Arial, system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --radius: 16px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; min-height: 100svh; font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.7;
  color: var(--ink); -webkit-font-smoothing: antialiased;
  background: var(--cream);
  background-image:
    radial-gradient(120% 60% at 50% 0%, #fbf8f4 0%, rgba(251, 248, 244, 0) 62%),
    radial-gradient(90% 50% at 50% 100%, rgba(165, 112, 94, .12) 0%, rgba(165, 112, 94, 0) 70%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--terra-2); outline-offset: 3px; border-radius: 4px; }

.bio { width: 100%; max-width: 480px; margin: 0 auto; padding: clamp(36px, 8vw, 64px) 20px 48px; }

/* ---------- Topo ---------- */
.head { text-align: center; margin-bottom: clamp(30px, 7vw, 44px); }
.avatar {
  width: 104px; height: 104px; margin: 0 auto 22px; border-radius: 50%; background: var(--terra);
  display: grid; place-items: center; overflow: hidden; box-shadow: 0 18px 36px -20px rgba(43, 33, 28, .55);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar .mono { width: 52px; height: auto; object-fit: contain; }
.name { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 9vw, 42px); line-height: 1.05; letter-spacing: -.01em; margin: 0 0 10px; }
.role { font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--terra); margin: 0 0 4px; }
.creci { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 0; }
.tagline { font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.35; color: var(--ink-2); margin: 20px 0 0; }

/* ---------- Rótulo de seção ---------- */
.label {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  font-size: 9.5px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 18px;
}
.label::before, .label::after { content: ""; height: 1px; flex: 1; background: var(--line); }

/* ---------- Cards de empreendimento ---------- */
.cards { display: grid; gap: 16px; margin-bottom: 34px; }
.card {
  display: block; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 16px 34px -26px rgba(43, 33, 28, .5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -26px rgba(43, 33, 28, .55); border-color: var(--terra-l); }
.card:active { transform: translateY(0); }
.card__media { position: relative; aspect-ratio: 16 / 10; background: var(--sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.pill {
  position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: var(--cream-2); padding: 7px 15px; border-radius: 30px;
  font-size: 9px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill--ghost { background: rgba(43, 41, 38, .62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.card__body { padding: 20px 22px 22px; }
.card__name { font-family: var(--serif); font-weight: 400; font-size: 29px; line-height: 1.08; margin: 0 0 6px; }
.card__specs { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0 0 4px; }
.card__where { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin: 0; }
.card__go { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--terra); }
.card__go::after { content: "→"; font-size: 15px; transition: transform .3s var(--ease); }
.card:hover .card__go::after { transform: translateX(6px); }

/* ---------- Links simples ---------- */
.links { display: grid; gap: 10px; }
.link {
  display: flex; align-items: center; gap: 14px; min-height: 58px; padding: 0 20px;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 40px;
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.link:hover { background: var(--ink); color: var(--cream-2); border-color: var(--ink); transform: translateY(-2px); }
.link svg { width: 21px; height: 21px; flex: none; fill: currentColor; }
.link span { flex: 1; display: flex; flex-direction: column; gap: 1px; line-height: 1.35; }
.link small { font-size: 11px; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.link small:empty { display: none; }
.link:hover small { color: rgba(251, 248, 244, .7); }
.link--wa:hover { background: #1fae53; border-color: #1fae53; color: #fff; }
.link--wa:hover small { color: rgba(255, 255, 255, .78); }

/* ---------- Rodapé ---------- */
.foot { margin-top: 38px; text-align: center; }
.foot__logo { width: 190px; margin: 0 auto 18px; opacity: .85; }
.foot p { font-size: 10.5px; line-height: 1.8; color: var(--muted); margin: 0; }
.foot .legal { margin-top: 12px; font-size: 9.5px; line-height: 1.7; color: rgba(122, 109, 101, .8); }

@media (prefers-reduced-motion: reduce) {
  .card, .link, .card__go::after { transition: none; }
}
@media (min-width: 720px) {
  .bio { max-width: 520px; }
  .cards { gap: 18px; }
}
