:root {
  --bg: #faf7f2;
  --white: #fff;
  --ink: #2a2224;
  --ink-2: #6a5f61;
  --ink-3: #8a7f81;
  --ink-soft: #5f5557;
  --rubi: #c22b3a;
  --rubi-deep: #8e1f2c;
  --rosa: #c94a60;
  --rosa-deep: #b13a51;
  --dourado: #c9a24b;
  --online: #3fbf6a;
  --hair: #eadfd8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Figtree, system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
a { color: var(--rubi); text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(194, 43, 58, 0.18); color: var(--ink); }

h1, h2, h3 { font-family: Marcellus, serif; font-weight: 400; }

.container { max-width: 1200px; margin: 0 auto; padding-left: clamp(18px, 4vw, 40px); padding-right: clamp(18px, 4vw, 40px); }
.container.narrow { max-width: 1100px; }
.container.tight { max-width: 900px; }
.section { border-top: 1px solid var(--hair); }
.pad-y { padding-top: clamp(56px, 9vh, 100px); padding-bottom: clamp(56px, 9vh, 100px); }
.bg-white { background: var(--white); }
.bg-warm { background: var(--bg); }

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Figtree, sans-serif;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-lg { font-size: 16px; padding: 17px 24px; }
.btn-md { font-size: 15px; padding: 14px 24px; }
.rubi { background: var(--rubi); color: #fff; box-shadow: 0 12px 30px -12px rgba(194, 43, 58, 0.7); }
.rubi:hover { background: var(--rubi-deep); color: #fff; transform: translateY(-2px); }
.rosa { background: var(--rosa); color: #fff; box-shadow: 0 12px 30px -12px rgba(201, 74, 96, 0.65); }
.rosa:hover { background: var(--rosa-deep); color: #fff; transform: translateY(-2px); }
.on-rubi { background: #fff; color: var(--rubi); }
.on-rosa { background: #fff; color: var(--rosa-deep); }
.on-rubi:hover, .on-rosa:hover { transform: translateY(-2px); }

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
}
.nav-inner { height: 70px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand .selo { display: inline-flex; width: 38px; height: 38px; flex: none; }
.wordmark { font-family: Marcellus, serif; letter-spacing: 0.24em; }
.nav-right { display: flex; align-items: center; gap: clamp(12px, 2vw, 22px); }
.nav-entrar { font-size: 14px; font-weight: 500; color: var(--ink); }
.nav-cta {
  font-size: 14px; font-weight: 600; color: #fff; background: var(--rubi);
  border-radius: 8px; padding: 11px 20px; box-shadow: 0 6px 18px -8px rgba(194, 43, 58, 0.7);
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--rubi-deep); color: #fff; transform: translateY(-1px); }

/* --- Pills --- */
.pill {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 999px; padding: 7px 15px;
}
.pill-hero { color: var(--rubi-deep); background: #f6e1df; }
.pill-baby { color: var(--rosa-deep); background: #fbe3e8; letter-spacing: 0.1em; padding: 6px 14px; }
.pill-daddy { color: var(--rubi-deep); background: #f6dbd9; letter-spacing: 0.1em; padding: 6px 14px; }

/* --- Hero --- */
.grid-2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero-pad { padding-top: clamp(40px, 7vh, 84px); padding-bottom: clamp(40px, 7vh, 84px); }
.hero h1 { margin: 0 0 20px; line-height: 1.05; font-size: clamp(34px, 5vw, 60px); color: var(--ink); }
.hero h1 .accent { color: var(--rubi); }
.lead { margin: 0 0 30px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: var(--ink-2); max-width: 52ch; }
.cta-stack { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; font-size: 13px; color: var(--ink-2); }
.trust span { display: flex; align-items: center; gap: 6px; }
.trust .tick { color: var(--rubi); }
.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(142, 31, 44, 0.4); }
.hero-frame img { width: 100%; height: clamp(360px, 52vw, 560px); object-fit: cover; }
.float-badge {
  position: absolute; bottom: -18px; left: -14px; background: #fff; border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 16px 36px -18px rgba(42, 34, 36, 0.35);
  display: flex; align-items: center; gap: 12px;
}
.float-badge .ic { display: inline-flex; width: 34px; height: 34px; background: #f6e1df; border-radius: 50%; align-items: center; justify-content: center; color: var(--rubi); font-weight: 600; }
.float-badge .t { font-weight: 600; font-size: 14px; color: var(--ink); }
.float-badge .s { font-size: 12px; color: var(--ink-3); }

/* --- Seção título --- */
.head-center { text-align: center; margin-bottom: clamp(36px, 5vh, 56px); }
.head-center h2 { margin: 0; font-size: clamp(28px, 3.6vw, 44px); color: var(--ink); }

/* --- Benefícios --- */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.benefit-card { border-radius: 18px; padding: clamp(26px, 3vw, 38px); }
.benefit-card.baby { background: #fff6f2; border: 1px solid #f3dad3; }
.benefit-card.daddy { background: #fbf3f0; border: 1px solid #f0d6cf; }
.benefit-list { display: flex; flex-direction: column; gap: 18px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-item .mark { flex: none; display: inline-flex; width: 30px; height: 30px; border-radius: 50%; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.benefit-card.baby .mark { background: #f6c9d2; color: var(--rosa-deep); }
.benefit-card.daddy .mark { background: #f3c9cd; color: var(--rubi-deep); }
.benefit-item .bt { margin: 0 0 3px; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.benefit-item .bd { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.benefit-card .btn { margin-top: 26px; }

/* --- Galeria de perfis --- */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 20px); }
.gallery-col { display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 20px); }
.gallery-col.b { margin-top: clamp(28px, 4vw, 52px); }
.profile { background: #fff; border: 1px solid var(--hair); border-radius: 16px; overflow: hidden; box-shadow: 0 14px 30px -20px rgba(42, 34, 36, 0.4); }
.profile-photo { position: relative; }
.profile-photo img { width: 100%; }
.profile-seal {
  position: absolute; bottom: 8px; right: 8px; display: inline-flex; width: 24px; height: 24px;
  background: #fff; border-radius: 50%; align-items: center; justify-content: center;
  color: var(--dourado); font-size: 13px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.profile-foot { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.profile-foot .role { margin: 0 0 2px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.profile-foot .city { margin: 0; font-size: 12.5px; color: var(--ink-3); }
.dot-online { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--online); }
.prose h2 { margin: 0 0 22px; font-size: clamp(28px, 3.6vw, 44px); color: var(--ink); }
.prose h2 .accent { color: var(--rubi); }
.prose p { margin: 0 0 18px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 52ch; }
.prose .btn { margin-top: 12px; }

/* --- Números --- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
.fact-big { margin: 0 0 6px; font-family: Marcellus, serif; font-size: clamp(26px, 3vw, 38px); color: var(--rubi); }
.fact-label { margin: 0; font-size: 14px; color: var(--ink-2); }

/* --- Passos --- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(22px, 3vw, 36px); }
.step { text-align: center; }
.step-num { display: inline-flex; width: 58px; height: 58px; background: #fbe3e8; border-radius: 50%; align-items: center; justify-content: center; font-family: Marcellus, serif; font-size: 24px; color: var(--rubi); margin-bottom: 18px; }
.step h3 { margin: 0 0 8px; font-family: Figtree, sans-serif; font-size: 19px; font-weight: 600; color: var(--ink); }
.step p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

/* --- SEO --- */
.seo-head h2 { margin: 0; font-size: clamp(26px, 3.4vw, 40px); color: var(--ink); }
.seo-head { margin-bottom: clamp(32px, 4vh, 48px); }
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.seo-grid h3 { margin: 0 0 10px; font-family: Figtree, sans-serif; font-size: 19px; font-weight: 600; color: var(--rubi-deep); }
.seo-grid p { margin: 0 0 24px; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
.seo-grid p:last-child { margin-bottom: 0; }
.disclaimer { background: #fff; border: 1px solid #f0d6cf; border-radius: 14px; padding: 20px 22px; }
.disclaimer p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--ink-2); }
.disclaimer strong { color: var(--ink); }

/* --- Segurança --- */
.safety { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.safety-card { background: var(--bg); border: 1px solid var(--hair); border-radius: 16px; padding: 26px 24px; }
.safety-card .ic { display: inline-flex; width: 44px; height: 44px; background: #fbe3e8; border-radius: 12px; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.safety-card p { margin: 0; font-size: 15.5px; font-weight: 500; line-height: 1.45; color: var(--ink); }
.safety-close { margin: clamp(28px, 4vh, 40px) 0 0; text-align: center; font-family: Marcellus, serif; font-size: clamp(18px, 2vw, 24px); color: var(--rubi-deep); }

/* --- CTA final --- */
.cta-final { background: linear-gradient(135deg, var(--rubi), var(--rubi-deep)); }
.cta-final .inner { text-align: center; padding-top: clamp(56px, 10vh, 110px); padding-bottom: clamp(56px, 10vh, 110px); }
.cta-final h2 { margin: 0 0 34px; font-size: clamp(32px, 5vw, 56px); color: #fff; }
.cta-final .cta-stack { margin: 0 auto; }
.cta-final .fine { margin: 26px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.8); }

/* --- Footer --- */
.foot-top { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; padding-bottom: 30px; border-bottom: 1px solid var(--hair); }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand .selo { display: inline-flex; width: 32px; height: 32px; }
.foot-brand .wordmark { font-size: 14px; color: var(--ink); }
.foot-nav { display: flex; flex-wrap: wrap; gap: 20px 30px; }
.foot-nav a { font-size: 13.5px; color: var(--ink-2); }
.foot-nav a:hover { color: var(--rubi-deep); }
.foot-copy { margin: 24px 0 0; font-size: 12.5px; color: var(--ink-3); }
.legal { margin: 20px 0 0; padding: 16px 20px; border: 1px solid var(--hair); border-radius: 10px; background: #fff; font-size: 12.5px; line-height: 1.6; color: var(--ink-2); max-width: 80ch; }

/* --- FAQ --- */
.faq { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--hair); border-radius: 14px; padding: 20px 24px; }
.faq-item h3 { margin: 0 0 8px; font-family: Figtree, sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); }
.faq-item p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* --- Hub de cidades (links internos p/ SEO local) --- */
.cities-hub { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 900px; margin: 0 auto; }
.cities-hub a {
  font-size: 13.5px; color: var(--ink-2); background: var(--white);
  border: 1px solid var(--hair); border-radius: 999px; padding: 7px 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cities-hub a:hover { color: var(--rubi); border-color: var(--rubi); }

/* --- Reveal (degrada seguro: visível por padrão) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }
}
