/* carolinp — design system do hub (ver 4.Marca/design-system.md) */

@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  src: url('figtree.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  src: url('playfair.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  src: url('playfair-italic.woff2') format('woff2');
  font-display: swap;
}

:root {
  --cobre: #B4532A;
  --cobre-escuro: #8A3D1F;
  --verde-mar: #3E8E82;
  --verde-mar-escuro: #2E6B62;
  --mel: #DFA32E;
  --areia: #F7F1E6;
  --areia-2: #EFE4D2;
  --cafe: #3A2A20;
  --cafe-escuro: #2C1F17;
  --borda: #E5D8C2;
  --blush: #D98873;
  --grad-golden: linear-gradient(135deg, #B4532A 0%, #DFA32E 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--areia);
  color: var(--cafe);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 680px; margin: 0 auto; padding: 0 20px; }

/* tipografia */
h1, h2, .display {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--cafe-escuro);
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(34px, 8vw, 52px); }
h2 { font-size: clamp(26px, 6vw, 34px); }
h3 { font-family: 'Figtree'; font-weight: 800; font-size: 19px; color: var(--cafe-escuro); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--verde-mar-escuro);
  background: #fff; border: 1px solid var(--borda); border-radius: 999px;
  padding: 8px 16px;
}
.muted { color: #6B584A; }
.small { font-size: 14px; }

/* header */
header.topo {
  padding: 20px 0 6px;
  display: flex; justify-content: center;
}
header.topo img { height: 44px; }

/* hero */
.hero { text-align: center; padding: 26px 0 10px; }
.hero .sub { margin: 16px auto 0; max-width: 540px; font-size: 19px; }
.hero .foto {
  width: 108px; height: 108px; border-radius: 50%;
  object-fit: cover; object-position: center 30%;
  border: 4px solid #fff; box-shadow: 0 6px 24px rgba(58, 42, 32, 0.18);
  margin: 22px auto 10px; display: block;
}
.hero .quem { font-size: 15px; }
.hero .quem strong { color: var(--cafe-escuro); }

/* botão principal */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 460px; margin: 22px auto 0;
  background: var(--cobre); color: #fff;
  font-family: 'Figtree'; font-weight: 800; font-size: 18px; letter-spacing: 0.02em;
  padding: 18px 28px; border: 0; border-radius: 999px; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(180, 83, 42, 0.35);
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { background: var(--cobre-escuro); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: 0 0 auto; }
.btn.secundario {
  background: #fff; color: var(--cafe-escuro);
  border: 1.5px solid var(--borda); box-shadow: none; font-weight: 700;
}
.btn.secundario:hover { background: var(--areia-2); }
.btn[aria-disabled="true"] {
  background: var(--areia-2); color: #9A8272;
  box-shadow: none; cursor: default; pointer-events: none;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.chip {
  font-size: 13.5px; font-weight: 600; color: var(--cafe);
  background: #fff; border: 1px solid var(--borda); border-radius: 999px;
  padding: 7px 14px; display: inline-flex; gap: 6px; align-items: center;
}

/* divisor trilha da abelha */
.trilha { display: block; margin: 34px auto; width: 220px; }

/* seções */
section { padding: 8px 0 26px; }
section .titulo { text-align: center; margin-bottom: 22px; }

.cards { display: grid; gap: 14px; }
.card {
  background: #fff; border: 1px solid var(--borda); border-radius: 16px;
  padding: 20px 22px;
}
.card .num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--areia); color: var(--cobre);
  font-weight: 800; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px; border: 1px solid var(--borda);
}
.card p { font-size: 16px; margin-top: 4px; }

/* mock de mensagem do grupo */
.mock {
  background: #fff; border: 1px solid var(--borda); border-radius: 18px;
  padding: 18px; max-width: 420px; margin: 0 auto;
  font-size: 15.5px; line-height: 1.5;
  box-shadow: 0 10px 30px rgba(58, 42, 32, 0.08);
}
.mock .balao {
  background: var(--areia); border-radius: 4px 14px 14px 14px;
  padding: 12px 14px; position: relative;
}
.mock .autor { font-weight: 800; color: var(--verde-mar-escuro); font-size: 13.5px; margin-bottom: 4px; }
.mock .preco-de { text-decoration: line-through; opacity: 0.55; }
.mock .preco-por { font-weight: 800; color: var(--cobre); font-size: 18px; }
.mock .disclosure { font-style: italic; font-size: 12.5px; opacity: 0.6; margin-top: 8px; }
.mock .hora { text-align: right; font-size: 11.5px; opacity: 0.45; margin-top: 6px; }

/* nichos */
.nichos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .nichos { grid-template-columns: 1fr; } }
.nicho {
  background: #fff; border: 1px solid var(--borda); border-radius: 16px;
  padding: 18px; text-align: center; position: relative;
}
.nicho .tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #fff; border-radius: 999px; padding: 4px 12px;
  margin-bottom: 8px;
}
.nicho.skincare .tag { background: var(--verde-mar); }
.nicho.cozinha .tag { background: var(--mel); color: var(--cafe-escuro); }
.nicho.mamaes .tag { background: var(--blush); }
.nicho.moda .tag { background: var(--cobre); }
.nicho .emoji { font-size: 30px; display: block; margin: 4px 0 6px; }
.nicho .breve {
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; font-weight: 700; color: #9A8272;
  background: var(--areia); border-radius: 999px; padding: 3px 10px;
}
.nicho a.mini {
  display: inline-block; margin-top: 10px; font-weight: 800; font-size: 15px;
  color: var(--cobre); text-decoration: none;
}
.nicho.off { opacity: 0.72; }

/* regras e faq */
.lista { list-style: none; display: grid; gap: 10px; }
.lista li {
  background: #fff; border: 1px solid var(--borda); border-radius: 12px;
  padding: 13px 16px; font-size: 16px;
}
details {
  background: #fff; border: 1px solid var(--borda); border-radius: 12px;
  padding: 14px 18px; margin-bottom: 10px;
}
details summary { font-weight: 700; cursor: pointer; font-size: 16px; }
details p { margin-top: 8px; font-size: 15.5px; }

/* rodapé */
footer {
  border-top: 1px solid var(--borda);
  margin-top: 30px; padding: 26px 0 44px;
  text-align: center; font-size: 13.5px; color: #6B584A;
}
footer a { color: var(--verde-mar-escuro); font-weight: 600; text-decoration: none; }
footer .logo-rodape { height: 30px; opacity: 0.85; margin-bottom: 12px; }
footer .aviso { max-width: 560px; margin: 10px auto 0; }

/* página /go */
.go-card {
  max-width: 420px; margin: 12vh auto 0; text-align: center;
  background: #fff; border: 1px solid var(--borda); border-radius: 20px;
  padding: 34px 26px;
}
.go-card .bee { width: 74px; margin-bottom: 8px; }
.go-card .loja { font-weight: 800; color: var(--cafe-escuro); }
.barra {
  height: 6px; border-radius: 999px; background: var(--areia-2);
  overflow: hidden; margin: 18px 0 10px;
}
.barra i { display: block; height: 100%; width: 0; background: var(--grad-golden); animation: enche 0.9s ease forwards; }
@keyframes enche { to { width: 100%; } }

/* páginas de texto (privacidade, afiliados) */
.doc { max-width: 680px; margin: 0 auto; padding: 10px 20px 60px; }
.doc h1 { font-size: 32px; margin: 18px 0 6px; }
.doc h2 { font-size: 21px; font-style: normal; font-family: 'Figtree'; font-weight: 800; margin: 26px 0 8px; }
.doc p, .doc li { font-size: 16px; margin-bottom: 10px; }
.doc ul { padding-left: 22px; }
.doc .atualizado { font-size: 13px; color: #6B584A; margin-bottom: 18px; }

/* bio */
.bio { max-width: 480px; margin: 0 auto; text-align: center; padding: 34px 20px 60px; }
.bio .avatar {
  width: 112px; height: 112px; border-radius: 50%; object-fit: cover; object-position: center 30%;
  border: 4px solid #fff; box-shadow: 0 6px 24px rgba(58,42,32,0.18);
}
.bio h1 { font-size: 30px; margin-top: 12px; }
.bio .desc { font-size: 15.5px; margin: 6px 0 22px; }
.bio .btn { margin-top: 12px; }
