:root{
  --bg:#ffffff;
  --bg-2:#f2f2f2;
  --ink:#222222;
  --muted:#5c5c5c;
  --blue:#0881c1;
  --blue-text:#076ea4;
  --blue-soft:#d6ebf8;
  --magenta:#bc3170;
  --yellow:#f6cd44;
  --line: rgba(34,34,34,0.10);
  --whatsapp:#25D366;
  --radius: 999px;
}

*{box-sizing:border-box; margin:0; padding:0;}

html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height:1.55;
  -webkit-font-smoothing: antialiased;
  min-height:100vh;
}


a{ color: inherit; }

.wrap{
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px 40px;
}

/* ---------- Topo / navegação simples ---------- */
.top-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 24px 0;
}
.top-nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color: var(--ink);
  display:flex;
  align-items:center;
  gap:6px;
}
.top-nav a:hover{ color: var(--blue-text); }

/* ---------- Perfil ---------- */
.profile{
  text-align:center;
  margin-bottom: 32px;
  animation: fadeUp .6s ease both;
}

.award-seal{
  width: 120px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.14));
}
.award-seal img{ width:100%; height:auto; display:block; }

.avatar{
  width: 100%;
  max-width: 230px;
  margin: 0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.avatar img{ width:100%; height:auto; display:block; }

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.profile h1{
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.profile .brand-tag{
  color: var(--blue-text);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.profile .tagline{
  color: var(--muted);
  font-size: 15px;
  max-width: 380px;
  margin: 0 auto;
}
.profile .tagline strong{
  color: var(--ink);
  font-size: 16.5px;
  display:inline-block;
  margin-bottom: 4px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 4px;
  margin-bottom: 14px;
  padding: 9px 16px;
  background: #fff8e6;
  border: 1px solid rgba(246,205,68,0.55);
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 600;
  color: #6b5400;
  max-width: 420px;
  text-align:center;
}

.hero-meta{
  margin-top: 16px;
  display:flex;
  flex-direction:column;
  gap: 3px;
}
.hero-meta p{
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

.info-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 6px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  margin-top: 12px;
}
.info-line svg{ width:14px; height:14px; flex-shrink:0; }

.divider{
  width: 40px;
  height: 2px;
  background: var(--blue);
  margin: 22px auto 0;
  border-radius: 2px;
  opacity:.6;
}

/* ---------- Botões ---------- */
.links{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeUp .6s ease .1s both;
}

.btn{
  display:flex;
  align-items:center;
  gap: 12px;
  width:100%;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-decoration:none;
  color: var(--ink);
  font-family:'Inter', sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

.btn .icon{ width: 22px; height: 22px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:20px; line-height:1; }
.btn .icon svg{ width:100%; height:100%; }

.btn-primary{
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 16.5px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(37,211,102,0.28);
  justify-content: center;
}
.btn-primary .label{ flex: none; text-align: left; }
.btn-primary:hover{ box-shadow: 0 12px 28px rgba(37,211,102,0.36); }

.cta-caption{
  text-align:center;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: -4px;
  margin-bottom: 4px;
}

.btn-secondary{ background: var(--bg-2); }
.btn span.label{ flex:1; text-align:center; }
.btn .chevron{ opacity:.4; }

/* ---------- Accordion (Serviços / FAQ) ---------- */
.section-title{
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
  text-align:center;
}
.section-sub{
  text-align:center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.accordion{ margin-bottom: 40px; animation: fadeUp .6s ease .2s both; }

.group-label{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin: 22px 0 4px;
}
.group-label:first-of-type{ margin-top: 4px; }

.acc-item{ border-bottom: 1px solid var(--line); }
.acc-item:first-child{ border-top: 1px solid var(--line); }

.acc-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding: 18px 4px;
  font-family:'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  cursor:pointer;
}

.acc-question .sub{
  display:block;
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

.acc-question .plus{
  flex-shrink:0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  position:relative;
  transition: transform .25s ease, background .25s ease;
}
.acc-question .plus::before, .acc-question .plus::after{
  content:""; position:absolute; background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.acc-question .plus::before{ width:9px; height:1.4px; }
.acc-question .plus::after{ width:1.4px; height:9px; }

.acc-item.open .acc-question .plus{ background: var(--blue-text); border-color: var(--blue-text); }
.acc-item.open .acc-question .plus::before, .acc-item.open .acc-question .plus::after{ background:#fff; }
.acc-item.open .acc-question .plus::after{ transform: rotate(90deg); opacity:0; }

.acc-answer{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.acc-answer .inner{ padding: 0 4px 18px; }
.acc-answer p{ color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 10px; }
.acc-answer ul{ list-style:none; display:grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; }
.acc-answer li{ font-size: 13.5px; color: var(--ink); padding-left: 14px; position:relative; }
.acc-answer li::before{ content:"•"; color: var(--blue); position:absolute; left:0; }

@media (max-width: 420px){
  .acc-answer ul{ grid-template-columns: 1fr; }
}

/* ---------- Social ---------- */
.social{ display:flex; justify-content:center; gap: 14px; margin-bottom: 28px; animation: fadeUp .6s ease .3s both; flex-wrap: wrap; }
.social a{
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--ink);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.social a:hover{ transform: translateY(-2px); background: var(--ink); color: #fff; }
.social svg{ width:20px; height:20px; }

footer{ text-align:center; color: var(--muted); font-size: 12.5px; }
footer a{ color: var(--blue-text); text-decoration:none; }

@keyframes fadeUp{ from{ opacity:0; transform: translateY(10px); } to{ opacity:1; transform: translateY(0); } }

.btn:focus-visible, .social a:focus-visible, .acc-question:focus-visible, .top-nav a:focus-visible{
  outline: 2px solid var(--blue-text);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media (min-width: 640px){
  .avatar{ max-width:280px; }
}

@media (max-width: 380px){
  .wrap{ padding: 36px 18px 32px; }
  .btn{ padding:14px 16px; font-size:14.5px; }
  .btn-primary{ font-size:15.5px; }
}

/* ---------- Blog ---------- */
.post-card{
  display:block;
  text-decoration:none;
  color: var(--ink);
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.post-card:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.post-card .tag{
  display:inline-block;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color: var(--blue-text);
  background: var(--blue-soft);
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.post-card h3{ font-size:17px; margin-bottom:6px; }
.post-card p{ font-size:14px; color: var(--muted); }
.post-card .meta{ font-size:12px; color:var(--muted); margin-top:10px; }
.post-card .thumb{
  display:block;
  width: calc(100% + 40px);
  height: 150px;
  object-fit: cover;
  margin: -20px -20px 14px -20px;
  border-radius: 16px 16px 0 0;
}

article.post .cover{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  margin-bottom:22px;
}

.empty-state{
  text-align:center;
  color: var(--muted);
  font-size: 14px;
  padding: 32px 20px;
  border: 1px dashed var(--line);
  border-radius: 16px;
}

article.post h1{ font-size:28px; margin-bottom:10px; line-height:1.25; }
article.post .meta{ font-size:13px; color:var(--muted); margin-bottom:24px; }
.listen-btn{
  display:inline-flex; align-items:center; gap:7px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 9px 16px;
  font-family:'Inter', sans-serif; font-weight:600; font-size:13.5px; color:var(--ink);
  cursor:pointer; margin: 4px 0 14px;
}
.listen-btn:hover{ background:#ececec; }
.share{ display:flex; align-items:center; gap:10px; margin: -6px 0 22px; }
.share span{ font-size:12.5px; color:var(--muted); font-weight:600; }
.share a{
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--ink);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.share a:hover{ transform: translateY(-2px); background: var(--ink); color: #fff; }
.share svg{ width:15px; height:15px; }
article.post h2{ font-size:20px; margin: 28px 0 10px; }
article.post p{ font-size:15.5px; color:#333; margin-bottom:14px; }
article.post ul, article.post ol{ margin: 0 0 14px 20px; font-size:15.5px; color:#333; }
article.post strong{ color: var(--ink); }
article.post blockquote{
  border-left: 3px solid var(--blue);
  padding: 4px 18px;
  margin: 20px 0;
  font-style: italic;
  color: var(--ink);
  font-size: 15.5px;
}
article.post hr{
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}
