@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500..800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Paleta Científica — mamaeabordo (hex exatos, sem variações inventadas) */
  --peach: #E89C85;        /* Pêssego Acolhedor — primária */
  --blue-sereno: #8FA9C4;  /* Azul Sereno — secundária */
  --olive: #939E82;        /* Verde Oliva Suave — apoio */
  --cream: #FAF5EF;        /* Creme Ninho — fundo */
  --charcoal-text: #2B3336;/* Carvão Conforto — texto */

  /* Aliases usados pelo restante do CSS/HTML — todos apontam direto pros 5 hex acima */
  --rose: var(--peach);
  --rose-deep: var(--peach);
  --rose-deeper: var(--charcoal-text);
  --sage: var(--olive);
  --charcoal: var(--charcoal-text);
  --text: var(--charcoal-text);
  --muted: #5c6569;
  --line: #e6d9cd;
  --bg: var(--cream);
  --bg-alt: #f5e8e0;
  --white: #ffffff;
  --gold: #c99b5e;
  --shadow: 0 8px 28px rgba(43, 51, 54, 0.1);
  --shadow-lg: 0 20px 50px rgba(43, 51, 54, 0.16);
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15.5px;
}
h1, h2, h3 { font-family: 'Fraunces', 'Inter', serif; color: var(--charcoal); letter-spacing: -0.01em; font-weight: 700; }
a { color: var(--rose-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== Header ===== */
header.site-header {
  background: transparent;
  padding: 24px 20px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 150px; width: auto; display: block; }
.hero .logo { display: flex; justify-content: center; width: 100%; margin: -20px 0 10px; }
.hero .logo img { height: 140px; }
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  width: 100%;
  justify-content: center;
}
nav.main-nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 2px;
}
nav.main-nav a:hover { color: var(--rose-deep); text-decoration: none; }

/* ===== Layout ===== */
main { max-width: 100%; margin: 0 auto; padding: 0 0 56px; }
.container { max-width: 100%; margin: 0 auto; padding: 0 20px; }
.breadcrumb { font-size: 12px; color: var(--muted); margin: 20px 20px 18px; }
.breadcrumb a { color: var(--muted); }

h1 { font-size: 26px; font-weight: 700; margin-bottom: 14px; line-height: 1.3; }
h2 { font-size: 21px; font-weight: 700; margin: 34px 0 16px; }
p.lead { font-size: 16px; color: var(--muted); margin-bottom: 22px; max-width: 560px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 15% 0%, rgba(232, 156, 133, 0.24), transparent 60%),
    radial-gradient(ellipse 55% 45% at 100% 15%, rgba(147, 158, 130, 0.18), transparent 60%),
    var(--bg);
  padding: 28px 20px 48px;
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--rose-deep);
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { font-size: 32px; margin-bottom: 14px; line-height: 1.18; }
.hero h1 em { color: var(--rose-deep); font-style: normal; }
.hero p.lead { margin: 0 auto 26px; max-width: 460px; font-size: 16.5px; }
.hero-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 340px; margin: 0 auto; }
.hero-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ===== Sections ===== */
section.block { padding: 44px 20px; max-width: 1080px; margin: 0 auto; }
section.block.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: 100%; }
section.block.alt > .block-inner { max-width: 1080px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 30px; }
.section-head h2 { margin: 0 0 8px; }
.section-head p { color: var(--muted); font-size: 15px; max-width: 480px; margin: 0 auto; }

/* ===== Category / feature cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.card-link {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color .15s, transform .15s;
}
.card-link:hover { border-color: var(--rose); transform: translateY(-2px); text-decoration: none; }
.card-link .emoji {
  font-size: 24px;
  background: linear-gradient(145deg, var(--bg-alt), var(--peach));
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-link .card-text h3 { font-size: 16px; font-weight: 700; margin: 2px 0 4px; color: var(--charcoal); }
.card-link .card-text p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ===== Trust strip ===== */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
.trust-item { text-align: center; }
.trust-item .num { font-family: 'Fraunces', serif; font-weight: 700; font-size: 27px; color: var(--blue-sereno); display: block; }
.trust-item .label { font-size: 12.5px; color: var(--muted); }

/* ===== Name list table ===== */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 16px 0 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.name-table { width: 100%; min-width: 360px; border-collapse: collapse; background: var(--white); }
.name-table th, .name-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  white-space: nowrap;
}
.name-table td:last-child { white-space: normal; }
.name-table th { background: var(--bg-alt); color: var(--rose-deep); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; }
.name-table tr:last-child td { border-bottom: none; }
.name-table tr:hover td { background: var(--bg); }

/* ===== CTA box ===== */
.cta-box {
  background: linear-gradient(155deg, var(--charcoal), #3a474d);
  color: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  margin: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-box h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.cta-box p { color: #d9d2d6; font-size: 13.5px; margin-bottom: 18px; }
.btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-deeper));
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 15px 22px;
  font-size: 15.5px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s, box-shadow .15s;
  text-align: center;
  box-shadow: 0 10px 24px rgba(232, 156, 133, 0.35);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(232, 156, 133, 0.42); }
.btn.btn-secondary { background: transparent; color: var(--charcoal) !important; border: 1px solid var(--line); box-shadow: none; }
.btn.btn-secondary:hover { border-color: var(--rose-deep); background: var(--bg-alt); transform: none; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.cookie-banner p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.cookie-banner p a { color: var(--rose-deep); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-banner-actions .btn { padding: 11px 18px; font-size: 14px; width: auto; flex: 1; }

/* ===== Footer ===== */
footer.site-footer {
  padding: 28px 20px;
  text-align: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin-bottom: 10px;
  font-size: 13px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--rose-deep); }
.footer-bottom {
  font-size: 12px;
  color: var(--muted);
}

/* ===== Blog / article layout ===== */
.post-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 20px 8px;
  text-align: center;
}
.post-header .logo { display: flex; justify-content: center; margin-bottom: 18px; }
.post-header .logo img { height: 180px; }
.post-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(143, 169, 196, 0.14);
  color: var(--blue-sereno);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.post-header h1 { font-size: 27px; line-height: 1.3; margin-bottom: 14px; }
.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.post-meta .avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(145deg, var(--rose), var(--rose-deeper));
  display: inline-block;
}
.post-cover {
  max-width: 780px;
  margin: 22px auto 0;
  padding: 0 20px;
}
.post-cover img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

article.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 20px 10px;
}
article.post-body p { margin-bottom: 18px; font-size: 16px; color: var(--text); }
article.post-body h2 { font-size: 21px; margin: 38px 0 6px; }
article.post-body .section-intro { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }

/* ===== Gender toggle (unified boy/girl page) ===== */
.gender-toggle {
  max-width: 680px;
  margin: 24px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.gender-btn {
  flex: 1;
  max-width: 200px;
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--text);
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.gender-btn:hover { border-color: var(--rose); }
.gender-btn.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

/* ===== FAQ block (schema-backed, machine-readable) ===== */
.faq-block {
  max-width: 680px;
  margin: 30px auto;
  padding: 0 20px;
}
.faq-item {
  padding: 0;
  margin-bottom: 22px;
}
.faq-item h3 { font-size: 16px; margin-bottom: 6px; color: var(--charcoal); }
.faq-item p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ===== Interactive name filter (long-tail SEO buttons) ===== */
.name-filter {
  max-width: 680px;
  margin: 24px auto 8px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.filter-btn:hover { border-color: var(--rose); }
.filter-btn.is-active {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

/* Native ad banner — styled like a sponsored placement inside the article */
.native-ad {
  max-width: 680px;
  margin: 34px auto;
  padding: 0 20px;
}
.native-ad .ad-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 8px;
  text-align: center;
}
.native-ad .ad-card {
  background: linear-gradient(155deg, #fff, var(--bg-alt));
  border: 1px dashed var(--rose);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.native-ad .ad-icon {
  font-size: 30px;
  background: var(--white);
  border-radius: 12px;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.native-ad .ad-text h4 { font-family: 'Fraunces', serif; font-size: 15.5px; color: var(--charcoal); margin-bottom: 3px; }
.native-ad .ad-text p { font-size: 13px; color: var(--muted); margin: 0; }
.native-ad.ad-dark .ad-card { background: linear-gradient(155deg, var(--charcoal), #3d2f45); border: none; }
.native-ad.ad-dark .ad-text h4 { color: #fff; }
.native-ad.ad-dark .ad-text p { color: #d9d2d6; }
.native-ad.ad-dark .ad-icon { background: rgba(255,255,255,.1); box-shadow: none; }

/* ===== Tablet and up ===== */
@media (min-width: 640px) {
  body { font-size: 16px; }
  header.site-header { padding: 18px 32px; flex-wrap: nowrap; }
  .logo { font-size: 20px; }
  nav.main-nav { width: auto; justify-content: flex-end; gap: 0; }
  nav.main-nav a { margin-left: 26px; font-size: 15px; }
  .container, section.block, section.block.alt > .block-inner, .breadcrumb, .cta-box { padding-left: 32px; padding-right: 32px; }
  .breadcrumb { margin: 24px 32px 20px; }
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  p.lead { font-size: 17.5px; }
  .hero { padding: 40px 32px 68px; }
  .hero h1 { font-size: 44px; }
  .hero .logo img { height: 210px; }
  .hero-actions { flex-direction: row; max-width: none; }
  .hero-actions .btn { width: auto; }
  .card-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .name-table th, .name-table td { font-size: 15px; padding: 14px 18px; }
  .btn { display: inline-block; width: auto; padding: 14px 30px; }
  .btn.btn-block { display: block; width: 100%; }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  main { max-width: 1080px; margin: 0 auto; }
  h1 { font-size: 32px; }
}
