/* ==========================================================================
   SITEZINHO — main.css (versão unificada)
   --------------------------------------------------------------------------
   Objetivo:
   - CSS completo baseado no seu “config” (tokens, header com drawer, cards,
     sidebar, single, search, share).
   - Mobile-first com padrões comuns de sites (touch targets, clamp, grids).
   - Inclui o bloco POST SHARE com botões visíveis (WhatsApp/Facebook/LinkedIn/Copy).
   ========================================================================== */

/* ==========================================================================
   1) DESIGN TOKENS
   ========================================================================== */
:root{
  --teal:#00aca9;
  --newsletter:#d45700;

  --bg:#f4f6f8;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#64748b;

  --shadow:0 5px 5px rgba(15,23,42,.08);

  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:14px;

  --space-1:clamp(8px,1.2vw,12px);
  --space-2:clamp(12px,1.8vw,16px);
  --space-3:clamp(16px,2.4vw,22px);
  --space-4:clamp(20px,3vw,28px);

  --card-title-lines:3;
}

/* ==========================================================================
   2) RESET / BASE
   ========================================================================== */
*{box-sizing:border-box;}
html,body{width:100%;}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:clamp(15px,1.6vw,16px);
  line-height:1.5;
  color:var(--text);
  background:#F9FAFB;
  -webkit-text-size-adjust:100%;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;height:auto;}

/* container com safe-area */
.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding-left:max(16px,env(safe-area-inset-left));
  padding-right:max(16px,env(safe-area-inset-right));
}
@media (min-width:640px){
  .container{
    padding-left:max(24px,env(safe-area-inset-left));
    padding-right:max(24px,env(safe-area-inset-right));
  }
}
@media (min-width:1024px){
  .container{
    padding-left:max(32px,env(safe-area-inset-left));
    padding-right:max(32px,env(safe-area-inset-right));
  }
}

/* evita esmagar grid/cards */
.content,.sidebar,.card,.card-body{min-width:0;}

/* ==========================================================================
   3) HEADER + SEARCH + MOBILE DRAWER
   ========================================================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid #eef2f7;
  box-shadow:0 2px 5px rgba(15,23,42,.08);
}
.site-header .container{position:relative;}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  height:80px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.brand__logo{
  height:48px;
  width:auto;
  display:block;
}

/* menu (base) */
.nav__menu{
  display:flex;
  align-items:center;
  gap:32px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav__menu a{
  font-weight:500;
  color:#374151;
  font-size:14px;
  min-height:44px;             /* touch target */
  display:inline-flex;
  align-items:center;
  transition:color .2s ease;
}
.nav__menu a:hover{color:var(--teal);}

/* Desktop visibility */
.nav--desktop{display:none;}
.header-search-wrap--desktop{display:none;}
@media (min-width:768px){
  .nav--desktop{display:flex;}
}
@media (min-width:1024px){
  .header-search-wrap--desktop{display:flex;}
}

/* Hamburger (ícones SVG via .nav-toggle__icon) */
.nav-toggle{
  appearance:none;
  border:0;
  background:transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:10px;
  transition:background .2s ease;
  color:#374151;
}
.nav-toggle:hover{background:#f3f4f6;}
.nav-toggle__icon{width:24px;height:24px;display:block;}
.nav-toggle__icon--close{display:none;}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--menu{display:none;}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close{display:block;}
/* você usou barras no HTML, mas vamos esconder (usando svg) */
.nav-toggle__bar{display:none !important;}
/* texto só pra leitor de tela */
.nav-toggle__sr{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
@media (min-width:768px){
  .nav-toggle{display:none;}
}

/* Blindagem: WordPress usa body.search (não pode virar input) */
body.search{
  display:block;
  width:auto;
  padding:0;
  border:0;
  background:#fff;
}

/* Wrappers de busca */
.header-search-wrap{width:100%;}
.header-search-wrap--desktop{
  width:auto;
  justify-content:flex-end;
}
.header-search-wrap--mobile{
  padding-top:10px;
  display:flex;
}

/* Form de busca “tailwind-like” */
.header-search{
  position:relative;
  display:flex;
  align-items:center;
  width:256px;
}
.header-search__input{
  width:100%;
  padding:8px 16px 8px 40px;
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:8px;
  font-size:14px;
  outline:none;
}
.header-search__icon{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  width:16px;height:16px;
  color:#9ca3af;
  pointer-events:none;
}
.header-search__icon svg{width:16px;height:16px;display:block;}
.header-search__input:focus{
  border-color:transparent;
  box-shadow:0 0 0 2px rgba(0,172,169,.35);
}

/* busca: desktop vs mobile */
@media (max-width:1023px){
  .header-search-wrap--desktop{display:none !important;}
  .header-search-wrap--mobile{display:flex !important;}
}
@media (min-width:1024px){
  .header-search-wrap--mobile{display:none;}
}

/* Drawer */
#mobile-nav[hidden]{display:none !important;}
#mobile-nav.mobile-drawer{
  position:absolute;
  top:100%;
  left:0;right:0;
  background:#fff;
  padding:14px 16px 16px;
  z-index:9999;
  border-top:0 !important;
  box-shadow:none;
}
@media (min-width:768px){
  #mobile-nav{display:none !important;}
}
#mobile-nav .header-search{width:100%;max-width:none;}

/* menu dentro do drawer */
.nav__menu--mobile{
  display:flex;
  flex-direction:column;
  gap:12px;
  list-style:none;
  margin:0;
  padding:6px 0 14px;
}
.nav__menu--mobile a{
  display:block;
  min-height:auto;
  padding:0;
  font-size:15px;
  font-weight:500;
  color:#111827;
}
.nav__menu--mobile a:hover{color:var(--teal);}

/* linha/sombra suave no fim do drawer */
@media (max-width:767px){
  #mobile-nav.mobile-drawer::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:2px;
    background:linear-gradient(
      to bottom,
      rgba(15,23,42,.14),
      rgba(15,23,42,0)
    );
    pointer-events:none;
  }
  #mobile-nav.mobile-drawer::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:1px;
    background:rgba(15,23,42,.08);
    pointer-events:none;
  }
}

/* ==========================================================================
   4) BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background:var(--teal);
  color:#fff;
  font-weight:600;
  min-height:44px;
}
.btn:hover{filter:brightness(.98);}
.btn-light{background:#fff;color:var(--teal);}

/* botão com ícone */
.btn-with-icon{
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn-with-icon .btn-icon{
  width:20px;height:20px;
  transition:transform .2s ease;
}
.btn-with-icon:hover .btn-icon{transform:translateX(5px);}

/* “voltar” cinza (sem mudar cor; só anima) */
.btn-back{color:#64748b;}
.btn-back:hover{color:#64748b;}
.btn-back .btn-icon--left{transition:transform .18s ease;transform:translateX(0);}
.btn-back:hover .btn-icon--left{transform:translateX(-4px);}

/* back button como link */
a.btn.btn-light.btn-with-icon.btn-back{
  background:transparent;
  border:0;
  padding:0;
  border-radius:0;
  min-height:auto;
  width:auto;

  display:inline-flex;
  align-items:center;
  gap:8px;

  color:#4b5563;
  font-weight:600;

  transition:color .2s ease;
  margin-bottom:32px;
}
a.btn.btn-light.btn-with-icon.btn-back:hover{
  color:var(--teal);
  filter:none;
}
a.btn.btn-light.btn-with-icon.btn-back .btn-icon--left{
  width:18px;
  height:18px;
  transition:transform .2s ease;
  transform:translateX(0);
}
a.btn.btn-light.btn-with-icon.btn-back:hover .btn-icon--left{
  transform:translateX(-4px);
}
a.btn.btn-light.btn-with-icon.btn-back:focus{outline:none;}
a.btn.btn-light.btn-with-icon.btn-back:focus-visible{
  outline:2px solid rgba(0,172,169,.35);
  outline-offset:3px;
  border-radius:6px;
}

/* ==========================================================================
   5) HERO
   ========================================================================== */
.hero{padding:40px 0 10px;}
.hero-card{
  min-height:360px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:var(--teal);
}
.hero-left{padding:34px;color:#eaffff;}
.badge{
  display:inline-block;
  background:rgba(255,255,255,.15);
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
  font-weight:400;
}
.hero-title{
  margin:16px 0 10px;
  font-size:clamp(26px,4.8vw,40px);
  line-height:1.1;
  color:#fff;
}
.hero-excerpt{
  margin:0 0 18px;
  max-width:42ch;
  color:#d8ffff;
}
.hero-meta{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding-bottom:15px;
}
.hero-meta .meta-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  opacity:.95;
}
.hero-meta .meta-icon{
  width:16px;height:16px;
  display:block;
  color:rgba(255,255,255,.9);
}
.hero-right{position:relative;overflow:hidden;background:#0b2b2b;}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ==========================================================================
   6) MAIN LAYOUT
   ========================================================================== */
.layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:22px;
  margin-top:18px;
  margin-bottom:40px;
  align-items:start;
}

/* ==========================================================================
   7) CATEGORIES (chips)
   ========================================================================== */
.cats-box{
  background:var(--card);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
  padding:18px 18px 14px;
  margin-bottom:18px;
}
.cats-box h2{margin:0 0 12px;font-size:16px;}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  padding:10px 12px;
  border-radius:12px;
  background:#f1f5f9;
  color:#334155;
  font-weight:600;
  font-size:13px;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:background-color .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.chip:hover{
  background:#f1efef;
  color:#334155;
}
.chip.is-active{
  background:var(--teal);
  color:#fff;
}
.chip__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;height:16px;
}
.chip__icon svg{width:16px;height:16px;display:block;}

/* ==========================================================================
   8) POSTS GRID (cards)
   ========================================================================== */
.posts-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

/* card com altura consistente + botão sempre no fundo */
.card{
  background:var(--card);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
  overflow:hidden;

  height:100%;
  display:flex;
  flex-direction:column;
}

.card-thumb{display:block;}
.card-thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.card-body{
  padding:16px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.pill{
  display:inline-block;
  background:#ffe4e6;
  color:#be123c;
  font-weight:700;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
  width:max-content;
}

/* título com altura mínima para reduzir “sobe/desce” */
.card-title{
  margin:0 0 8px;
  font-size:clamp(16px,2.2vw,18px);
  line-height:1.25;

  /* garante uma “altura base” (o resto do card fica uniforme) */
  min-height:calc(1.25em * var(--card-title-lines));
}
.card-title a:hover{color:var(--teal);}

/* excerpt clamp */
.card-excerpt{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

/* meta no “meio/fundo”, botão sempre alinhado */
.card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:#94a3b8;
  font-size:12px;

  margin-top:auto;             /* empurra meta+botão para o fim */
  padding-top:12px;
  border-top:1px solid #eef2f7;
}
.card-meta .meta-item{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-width:0;
}
.card-meta .meta-item svg{
  width:14px;
  height:14px;
  display:block;
  flex:0 0 14px;
  opacity:.9;
}
.card-meta .meta-item--views{margin-left:auto;}

.card .btn{
  width:100%;
  margin-top:12px;
}

/* hover do card (se você aplicar .card--grid no HTML) */
.card--grid{
  overflow:hidden;
  transition:box-shadow .25s ease,transform .25s ease;
}
.card--grid .card-thumb{overflow:hidden;}
.card--grid .card-thumb img{
  transform:scale(1);
  transition:transform .35s ease;
  will-change:transform;
}
.card--grid:hover{
  box-shadow:0 14px 40px rgba(15,23,42,.14);
  transform:translateY(-2px);
}
.card--grid:hover .card-thumb img{transform:scale(1.06);}
.card--grid:hover .card-title,
.card--grid:hover .card-title a{
  color:var(--teal);
}
.card--grid .card-title a{transition:color .18s ease;}
@media (prefers-reduced-motion: reduce){
  .card--grid,
  .card--grid .card-thumb img{
    transition:none !important;
    transform:none !important;
  }
}

/* ==========================================================================
   9) SIDEBAR (widgets base)
   ========================================================================== */
.sidebar .widget{
  background:var(--card);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
  padding:18px;
  margin-bottom:18px;
}
.sidebar .widget-title{
  margin:0 0 12px;
  font-size:16px;
}

/* ==========================================================================
   10) WIDGET: NEWSLETTER
   ========================================================================== */
.sidebar .widget.widget-newsletter{
  background:linear-gradient(135deg,#ec6608,#d45700) !important;
}
.sidebar .widget.widget-newsletter .widget-title{color:#fff !important;}
.sidebar .widget.widget-newsletter p{color:rgba(255,255,255,.92) !important;}

.sidebar .widget.widget-newsletter .newsletter{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.sidebar .widget.widget-newsletter .newsletter input{
  background:transparent !important;
  border:2px solid rgba(255,255,255,.35) !important;
  color:#fff !important;
  padding:12px 14px;
  border-radius:12px;
  outline:0;
}
.sidebar .widget.widget-newsletter .newsletter input::placeholder{
  color:rgba(255,255,255,.75) !important;
}
.sidebar .widget.widget-newsletter .newsletter button{
  background:#fff !important;
  color:var(--newsletter) !important;
  font-weight:800;
  padding:12px 14px;
  border-radius:12px;
  border:0;
  cursor:pointer;
}

/* ==========================================================================
   11) WIDGET: MAIS LIDOS
   ========================================================================== */
.most-read{
  list-style:none;
  padding:0;
  margin:0;
}
.most-read__item{
  display:grid;
  grid-template-columns:52px 1fr;
  column-gap:14px;
  align-items:center;
  padding:14px 0;
}
.most-read__item + .most-read__item{border-top:1px solid #eef2f7;}

.most-read__rank{
  font-size:30px;
  line-height:1;
  font-weight:800;
  color:#e2e8f0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  height:100%;
}

.most-read__body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

.most-read__title{
  font-weight:400;
  font-size:14px;
  line-height:1.25;
  color:#000;
  transition:color .18s ease;
}
.most-read__meta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#94a3b8;
  font-size:12px;
  transition:color .18s ease;
}
.most-read__eye svg{
  width:14px;height:14px;
  display:block;
  color:#94a3b8;
  transition:color .18s ease;
}
.most-read__title-head{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.most-read__title-icon{
  width:20px;height:20px;
  color:var(--teal);
  flex:0 0 auto;
}
.most-read__item:hover .most-read__rank,
.most-read__item:hover .most-read__title,
.most-read__item:hover .most-read__meta,
.most-read__item:hover .most-read__eye svg{
  color:var(--teal);
}

/* ==========================================================================
   12) WIDGET: AD BOX
   ========================================================================== */
.widget.widget-ad .ad-box{
  border-radius:18px;
  border:2px dashed #cbd5e1;
  background:linear-gradient(135deg,#f1f5f9,#ffffff);
  padding:18px;
}
.widget.widget-ad .ad-box__inner{
  height:250px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.widget.widget-ad .ad-box__icon{
  width:64px;height:64px;
  border-radius:14px;
  background:#e2e8f0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  color:#94a3b8;
}
.widget.widget-ad .ad-box__icon svg{width:32px;height:32px;display:block;}
.widget.widget-ad .ad-box__title{
  margin:0 0 4px;
  font-size:14px;
  font-weight:600;
  color:#64748b;
}
.widget.widget-ad .ad-box__size{
  margin:0;
  font-size:12px;
  color:#94a3b8;
}

/* ==========================================================================
   13) FOOTER
   ========================================================================== */
.site-footer{
  width:100%;
  background:#ec6608;
  color:#fff;
  margin-top:20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:22px;
  padding:34px 18px;
}
.footer-col{padding:0;}
.footer-col h4{margin:0 0 0;}
.footer-col .work-set{font-size:12px;color:#ffffff88;}
.phone{padding-bottom:0;line-height:0;}

.footer-menu,.footer-cats{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-menu a,.footer-cats a{
  color:rgba(255,255,255,.78);
  transition:color .2s ease,opacity .2s ease;
}
.footer-menu a:hover,.footer-cats a:hover{color:rgba(255,255,255,.98);}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.footer-social a{
  display:inline-flex;
  width:34px;height:34px;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,.15);
}
.logo-footer{height:46px;width:auto;display:block;}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 18px;
  border-top:1px solid rgba(255,255,255,.18);
  opacity:.95;
}
.footer-bottom__copy{margin:0;}
.footer-bottom__links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-bottom__links a{
  color:rgba(255,255,255,.85);
  font-weight:600;
  font-size:13px;
  transition:color .2s ease,opacity .2s ease;
}
.footer-bottom__links a:hover{color:rgba(255,255,255,.98);}
@media (max-width:560px){
  .footer-bottom{flex-direction:column;align-items:flex-start;}
  .footer-bottom__links{justify-content:flex-start;gap:14px;}
}

/* ==========================================================================
   14) SINGLE POST
   ========================================================================== */
.single{background:#fff;}
.single-wrap{max-width:860px;padding-top:25px;}
.single-article{
  background:var(--card);
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.single-hero{position:relative;border-radius:18px;overflow:hidden;}
.single-hero__img img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  filter:grayscale(100%);
}
.single-hero__overlay{
  position:absolute;
  inset:0;
  padding:26px 26px 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
  background:linear-gradient(to top,rgba(2,6,23,.70),rgba(2,6,23,.05));
}
.single-pill{
  align-self:flex-start;
  background:#F6D6CF;
  color:#be123c;
  font-weight:800;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.single-title{
  margin:0 0 10px;
  font-size:clamp(28px,4.2vw,40px);
  line-height:1.05;
  letter-spacing:-0.02em;
}
.single-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  font-size:13px;
  opacity:.95;
}
.single-meta__item{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.single-meta__icon{
  width:14px;height:14px;
  flex:0 0 14px;
  display:inline-block;
  vertical-align:middle;
  opacity:.9;
}
.single-header{padding:26px;}
.single-title.no-thumb{font-size:34px;color:var(--text);}
.single-meta.no-thumb{color:#94a3b8;opacity:1;}

.single-content{
  padding:26px;
  color:var(--text);
  font-size:clamp(15px,1.8vw,16px);
  line-height:1.75;
}
.single-content h2,.single-content h3{
  margin-top:26px;
  margin-bottom:10px;
}

/* links somente no conteúdo (não afeta botões) */
.single-content a:not(.btn):not(.post-share__btn),
.single-content p a:not(.btn):not(.post-share__btn),
.single-content li a:not(.btn):not(.post-share__btn),
.single-content em a:not(.btn):not(.post-share__btn),
.single-content strong a:not(.btn):not(.post-share__btn){
  color:var(--teal);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1px;
}
.single-content a:not(.btn):not(.post-share__btn):hover,
.single-content p a:not(.btn):not(.post-share__btn):hover,
.single-content li a:not(.btn):not(.post-share__btn):hover{
  text-decoration-thickness:2px;
  filter:brightness(.95);
}

/* ==========================================================================
   15) CTA FINAL DO POST
   ========================================================================== */
.post-cta-card{margin-top:22px;}
.post-cta-card__inner{
  background:var(--teal);
  border-radius:18px;
  padding:26px 28px;
  box-shadow:var(--shadow);
  color:#eaffff;
}
.post-cta-card__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.2;
  color:#fff;
}
.post-cta-card__text{
  margin:0 0 16px;
  max-width:70ch;
  color:rgba(255,255,255,.92);
  line-height:1.5;
}
.post-cta-card .btn.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background:#fff;
  color:var(--teal);
  font-weight:700;
  border:0;
}
.post-cta-card .btn.btn-light:hover{filter:brightness(.98);}

/* ==========================================================================
   16) SEARCH PAGE + PAGINAÇÃO
   ========================================================================== */
.search-page{
  padding:28px 0 40px;
  background:#fff;
}
.search-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:10px 0 28px;
}
.search-title{
  margin:0 0 6px;
  font-size:28px;
  font-weight:700;
  color:#334155;
}
.search-count{margin:0;color:#334155;}
.search-clear{font-weight:600;color:var(--teal);}
.search-clear:hover{filter:brightness(.95);}

.empty-state{
  background:var(--card);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
  padding:18px;
}
.empty-state--center{text-align:center;padding:44px 18px;}
.empty-state__title{margin:0 0 16px;font-size:18px;color:#64748b;}

.pagination{margin-top:22px;}
.pagination .nav-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:40px;
  padding:0 12px;
  border-radius:12px;
  background:#f1f5f9;
  color:#334155;
  font-weight:700;
}
.pagination .page-numbers:hover{background:#e5e7eb;}
.pagination .page-numbers.current{
  background:var(--teal);
  color:#fff;
}

/* ==========================================================================
   17) POST SHARE (fim do post)
   ========================================================================== */
.post-share{margin-top:22px;}
.post-share__inner{
  background:#fff;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
  padding:18px;
}

.post-share__title{
  margin:0 0 12px;
  font-size:16px;
  font-weight:700;
  color:#111827;

  display:inline-flex;
  align-items:center;
  gap:10px;
}
.post-share__title-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  color:#111827;
}
.post-share__title-icon svg{
  width:20px;
  height:20px;
  display:block;
}

.post-share__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* ==========================================================================
   POST SHARE — ações + botões (estilo Tailwind)
   - base: flex items-center gap-2 px-4 py-2 text-white rounded-lg transition-colors
   - Facebook: bg-blue-600 / hover bg-blue-700
   - LinkedIn: bg-blue-700 / hover bg-blue-800
   ========================================================================== */

.post-share__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Base do botão (equivalente ao: flex items-center gap-2 px-4 py-2 rounded-lg transition-colors) */
.post-share__btn{
  display:inline-flex;
  align-items:center;          /* items-center */
  gap:8px;                     /* gap-2 */

  padding:8px 16px;            /* px-4 py-2 */
  min-height:40px;

  border-radius:10px;          /* rounded-lg */
  border:0;

  color:#fff !important;
  font-weight:600;
  font-size:14px;
  line-height:1;

  cursor:pointer;
  text-decoration:none !important;

  transition: background-color .2s ease, transform .2s ease;
}

.post-share__btn:hover{
  text-decoration:none !important;
  transform:translateY(-1px);
}

.post-share__btn:active{
  transform:translateY(0);
}

.post-share__btn:focus-visible{
  outline:2px solid rgba(255,255,255,.55);
  outline-offset:2px;
}

/* Ícone + texto alinhados */
.post-share__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.post-share__icon svg,
.post-share__icon img{
  width:18px;
  height:18px;
  display:block;
  color:#fff;
}

/* FACEBOOK — bg-blue-600 / hover bg-blue-700 */
.post-share__btn--facebook{
  background:#2563eb;          /* blue-600 */
}
.post-share__btn--facebook:hover{
  background:#1d4ed8;          /* blue-700 */
}

/* LINKEDIN — bg-blue-700 / hover bg-blue-800 */
.post-share__btn--linkedin{
  background:#1d4ed8;          /* blue-700 */
}
.post-share__btn--linkedin:hover{
  background:#1e40af;          /* blue-800 */
}

/* botão base: garante que SEMPRE aparece no post */
.post-share__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:10px 12px;
  border-radius:10px;

  border:0;
  cursor:pointer;

  color:#fff !important;
  font-weight:600;
  font-size:14px;
  min-height:44px;

  text-decoration:none !important;
  transition:filter .2s ease,transform .2s ease,background .2s ease;
}
.post-share__btn:hover{transform:translateY(-1px);filter:brightness(.98);}
.post-share__btn:active{transform:translateY(0);}
.post-share__btn *{color:#fff !important;}
.post-share__btn:focus{outline:none;}
.post-share__btn:focus-visible{
  outline:2px solid rgba(0,172,169,.35);
  outline-offset:3px;
  border-radius:12px;
}

.post-share__icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 18px;
}
.post-share__icon img{
  width:18px;
  height:18px;
  display:block;
}

/* cores */
.post-share__btn--whatsapp{background:#16a34a;}
.post-share__btn--facebook{background:#1877f2;}
.post-share__btn--linkedin{background:#0ea5e9;}
.post-share__btn--copy{background:#6b7280;}

.post-share__hint{
  margin:10px 0 0;
  font-size:13px;
  color:var(--muted);
  min-height:18px;
}

/* mobile: botões podem ocupar linha toda */
@media (max-width:560px){
  .post-share__btn{
    width:100%;
  }
}

/* ==========================================================================
   18) RESPONSIVO
   ========================================================================== */
@media (max-width:980px){
  .header-row{
    height:auto;
    padding:var(--space-2) 0;
    flex-wrap:wrap;
    row-gap:var(--space-2);
    background-color:#fff;
  }

  .nav{flex:1 1 100%;order:2;}
  .header-search{flex:1 1 70%;order:3;width:100%;max-width:none;}

  .nav__menu{
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:10px;
  }
  .nav__menu a{
    padding:10px 12px;
    border-radius:999px;
    font-weight:400;
    line-height:1;
  }
  .nav__menu a:hover{background:#eaf7f7;}

  .hero-card{grid-template-columns:1fr;min-height:auto;}
  .hero-left{padding:var(--space-4);}
  .hero-right{min-height:clamp(220px,40vw,320px);}

  .layout{grid-template-columns:1fr;gap:var(--space-3);}
  .posts-grid{grid-template-columns:1fr;}
  .card-thumb img{height:clamp(170px,34vw,220px);}

  .footer-grid{grid-template-columns:1fr 1fr;}
}

@media (max-width:560px){
  /* chips com scroll horizontal */
  .chips{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding-bottom:6px;
    scroll-snap-type:x proximity;
  }
  .chip{
    flex:0 0 auto;
    white-space:nowrap;
    scroll-snap-align:start;
  }
  .chips::-webkit-scrollbar{height:6px;}
  .chips::-webkit-scrollbar-thumb{
    background:#e2e8f0;
    border-radius:999px;
  }

  .hero-left{padding:var(--space-3);}
  .single-wrap{padding-top:var(--space-2);}
  .single-content{padding:var(--space-3);}
  .single-hero__img img{height:clamp(260px,55vw,340px);}

  .footer-grid{grid-template-columns:1fr;gap:var(--space-3);}

  /* padding em search para não “colar” no edge */
  .search-page.container{
    padding-left:0 !important;
    padding-right:0 !important;
  }
  .search-page .search-head,
  .search-page .empty-state,
  .search-page .posts-grid{
    padding-left:16px;
    padding-right:16px;
  }
  .search-page .cats-box{
    margin-left:16px;
    margin-right:16px;
  }
}

/* ==========================================================================
   19) AUX / UTIL
   ========================================================================== */
.posts-anchor{scroll-margin-top:110px;}

/* ==========================================================================
   20) Acessibilidade
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  *{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* ==========================================================================
   POST SHARE — BOTÕES IGUAL REFERÊNCIA (cores + forma)
   - Facebook:  bg-blue-600 (#2563eb) / hover bg-blue-700 (#1d4ed8)
   - LinkedIn:  bg-blue-700 (#1d4ed8) / hover bg-blue-800 (#1e40af)
   ========================================================================== */

/* container dos botões */
.post-share__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px; /* mais parecido com o espaçamento da referência */
}

/* base do botão (forma e tamanho) */
.post-share__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:10px 16px;      /* px-4 py-2 mais “cheio” */
  min-height:44px;        /* touch target */
  border-radius:12px;     /* rounded-lg bem parecido */
  border:0 !important;

  color:#fff !important;
  font-weight:700;        /* referência parece mais forte */
  font-size:14px;
  line-height:1;

  text-decoration:none !important;
  cursor:pointer;

  transition: background-color .2s ease, transform .2s ease;
}

.post-share__btn:hover{
  text-decoration:none !important;
  transform: translateY(-1px);
}

.post-share__btn:active{
  transform: translateY(0);
}

.post-share__btn:focus-visible{
  outline:2px solid rgba(255,255,255,.6);
  outline-offset:2px;
}

/* ícone sempre branco e alinhado */
.post-share__icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 18px;
}

.post-share__icon svg,
.post-share__icon img{
  width:18px;
  height:18px;
  display:block;
  color:#fff !important;
  fill:none;
  stroke:#fff;
}

/* WHATSAPP (mantém o verde igual ao seu print) */
.post-share__btn--whatsapp{
  background:#16a34a !important;
}
.post-share__btn--whatsapp:hover{
  background:#15803d !important;
}

/* FACEBOOK — tons EXATOS que você pediu */
.post-share__btn--facebook{
  background:#2563eb !important;   /* blue-600 */
}
.post-share__btn--facebook:hover{
  background:#1d4ed8 !important;   /* blue-700 */
}

/* LINKEDIN — tons EXATOS que você pediu */
.post-share__btn--linkedin{
  background:#1d4ed8 !important;   /* blue-700 */
}
.post-share__btn--linkedin:hover{
  background:#1e40af !important;   /* blue-800 */
}

/* COPIAR LINK (cinza do print) */
.post-share__btn--copy{
  background:#6b7280 !important;
}
.post-share__btn--copy:hover{
  background:#4b5563 !important;
}

.page-content{
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 26px;
}

.page-title{
  margin: 0 0 18px;
  font-size: clamp(28px,4vw,40px);
  line-height: 1.1;
  color: var(--text);
}

.page-body{
  color: var(--text);
  font-size: clamp(15px,1.8vw,16px);
  line-height: 1.75;
}

.page-body h2,
.page-body h3{
  margin-top: 26px;
  margin-bottom: 10px;
}

.page-body p{
  margin: 0 0 16px;
}

.page-body ul,
.page-body ol{
  margin: 0 0 16px 20px;
}

.page-body a{
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}