/* ============================================================
   PAIS MODERNOS — main.css v2.0
   Responsivo: 320px → 430px → desktop centralizado
   Design visual 100% preservado
   ============================================================ */

/* RESET */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{cursor:pointer;font-family:inherit}
input,select,textarea{font-family:inherit}

/* TOKENS */
:root{
  --primary:#F94B93;
  --primary-dark:#E63582;
  --primary-soft:#FFF0F7;
  --text:#1F1F1F;
  --text-light:#6F6F6F;
  --bg:#FFFFFF;
  --bg-soft:#FAFAFA;
  --border:#EEEEEE;
  --font-title:'Poppins',sans-serif;
  --font-body:'Inter',sans-serif;
  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:24px;
  --radius-full:999px;
  --shadow:0 4px 20px rgba(0,0,0,.06);
  --shadow-md:0 8px 30px rgba(0,0,0,.10);
  --pad:16px;
}

/* BODY — fundo cinza para destacar o card do site em desktop */
body{
  font-family:var(--font-body);
  background:#e8e2ef;
  color:var(--text);
  font-size:15px;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
}

/* SITE WRAPPER — mobile-first: 430px → desktop full-width */
body{background:#f0f0f0}

.site-wrapper{
  background:var(--bg);
  min-height:100vh;
  position:relative;
}

/* Mobile: wrapper centralizado com max-width */
@media(max-width:1023px){
  .site-wrapper{
    max-width:430px;
    margin:0 auto;
    box-shadow:0 0 40px rgba(0,0,0,.13);
  }
}
@media(max-width:430px){
  body{background:var(--bg)}
  .site-wrapper{box-shadow:none}
}
/* Desktop: wrapper ocupa 100% */
@media(min-width:1024px){
  .site-wrapper{
    max-width:100%;
    width:100%;
    margin:0;
    box-shadow:none;
    background:var(--bg-soft);
  }
}

/* ── DESKTOP FULL-WIDTH (≥1024px) ── */
@media(min-width:1024px){
  body{background:var(--bg-soft)}

  /* ── WRAPPER ── já definido acima para desktop */
  body{overflow-x:hidden}

  /* ── HEADER ── */
  .site-header{padding:16px 6vw;max-width:100%}
  .site-header .header-btn[aria-label="Abrir menu"]{display:none}
  nav.categories-bar{padding:0 6vw}
  nav.categories-bar a{font-size:15px;padding:13px 20px;gap:6px}
  nav.categories-bar a svg{width:18px;height:18px}

  /* ── HERO / BANNER ── */
  .hero{max-width:1280px;margin:32px auto 0;border-radius:20px;min-height:320px}
  .hero-img img,.hero-img .wp-post-image{object-position:right center}
  .hero-content{width:46%;padding:44px 28px 44px 52px;min-height:320px}
  .badge-destaque{font-size:11px;padding:5px 16px;margin-bottom:16px}
  .hero-content h1{font-size:38px;line-height:1.18;margin-bottom:18px}
  .hero-content p{font-size:18px;line-height:1.72;margin-bottom:28px;color:#555}
  .hero-btn{font-size:15px;padding:14px 34px;border-radius:var(--radius-full)}
  .hero-img::after{
    background:linear-gradient(
      to right,
      rgba(255,240,247,0.97) 0%,
      rgba(255,240,247,0.82) 34%,
      rgba(255,240,247,0.15) 60%,
      rgba(255,240,247,0.00) 74%
    );
  }

  /* ── STORIES ── */
  .stories-section{max-width:1280px;margin:0 auto;padding:28px 6vw 32px}
  .stories-scroll{justify-content:center;flex-wrap:nowrap;padding:8px 0 12px;gap:30px}
  .story-ring{width:90px;height:90px}
  .story-item span{font-size:14px;margin-top:6px}
  .story-ver-todos{width:58px;height:58px}

  /* ── LAYOUT PRINCIPAL: conteúdo + sidebar ── */
  .desktop-layout{
    max-width:1280px;margin:0 auto;
    display:grid;grid-template-columns:1fr 320px;
    gap:40px;padding:36px 6vw 48px;align-items:start;
  }
  .desktop-main{min-width:0}
  .desktop-sidebar{position:sticky;top:90px;display:flex;flex-direction:column;gap:28px}

  /* ── SECTION HEADERS ── */
  .section-header{padding:0 0 18px;margin:0;max-width:none}
  .section-header h2,.section-title{font-size:28px;font-weight:700;color:var(--text)}
  .section-link{font-size:14px}

  /* ── ARTIGOS RECENTES ── */
  .articles-section{max-width:100%;margin:0;padding:0}
  .articles-section .section-header{padding-bottom:16px}
  .articles-list{display:flex;flex-direction:column;gap:0}
  .article-card{padding:20px 0;gap:20px;border-bottom:1px solid var(--border)}
  .article-card:last-child{border-bottom:none}
  .article-thumb{width:150px;height:108px;border-radius:var(--radius-md);flex-shrink:0}
  .article-category{font-size:13px;letter-spacing:.8px}
  .article-info h3{font-size:21px;line-height:1.32;font-weight:700}
  .article-meta{font-size:14px}

  /* ── CARDS ── */
  .cards-section{max-width:100%;margin:0;padding:0}
  .cards-list{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
  .post-card{border-radius:16px}
  .card-img{height:170px}
  .card-body{padding:18px 20px 20px}
  .card-cat{font-size:12px;margin-bottom:8px;letter-spacing:.6px}
  .card-body h3{font-size:19px;line-height:1.3;margin-bottom:8px;font-weight:700}
  .card-meta{font-size:14px}

  /* ── FERRAMENTAS ── */
  .tools-section{max-width:100%;margin:0;padding:0}
  .tools-section .section-header{padding-bottom:16px}
  .tools-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
  .tool-card{padding:22px 18px;border-radius:16px}
  .tool-name{font-size:14px}

  /* ── POSTS SECTION (page-todos-os-posts e similares) ── */
  .posts-section{max-width:1280px;margin-left:auto;margin-right:auto;padding:24px 6vw 32px}
  .posts-grid{grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:28px}
  .post-card .card-img{height:200px}
  .post-card .card-body h3{font-size:17px}
  .posts-list{border-radius:var(--radius-md)}
  .list-card{padding:18px 0;gap:18px}
  .list-thumb{width:110px;height:84px}
  .list-info h3{font-size:17px}

  /* ── FEATURED POST ── */
  .featured-post{margin:0 auto 28px;max-width:1280px;padding:0 6vw}
  .featured-img{height:300px}
  .featured-body{padding:26px 28px}
  .featured-cat{font-size:12px;margin-bottom:10px}
  .featured-body h2{font-size:26px;margin-bottom:12px;font-weight:700}
  .featured-body p{font-size:16px;line-height:1.65;margin-bottom:16px}
  .featured-meta{font-size:14px}

  /* ── SIDEBAR WIDGETS ── */
  .sidebar-widget{background:var(--bg);border-radius:16px;padding:24px;box-shadow:var(--shadow)}
  .sidebar-widget-title{
    font-family:var(--font-title);font-size:15px;font-weight:700;
    color:var(--text);margin-bottom:16px;padding-bottom:12px;
    border-bottom:2px solid var(--primary-soft);
  }

  /* ── NEWSLETTER ── */
  .newsletter-section{max-width:1280px;margin:0 auto;padding:0 6vw}

  /* ── FOOTER ── */
  .site-footer{max-width:100%;padding:64px 6vw 0}

  /* ── ARCHIVE / CATEGORY ── */
  .page-title-block{
    max-width:1280px;margin-left:auto;margin-right:auto;
    padding-left:6vw;padding-right:6vw;
  }
  .page-title-block h1{font-size:32px}
  .search-results-header{
    max-width:1280px;margin-left:auto;margin-right:auto;
    padding-left:6vw;padding-right:6vw;
  }
  .filter-chips,.search-bar,.pagination-wrap,.sort-bar{
    max-width:1280px;margin-left:auto;margin-right:auto;
    padding-left:6vw;padding-right:6vw;
  }
  .articles-grid{
    max-width:1280px;margin-left:auto;margin-right:auto;
    padding-left:6vw;padding-right:6vw;
    display:grid;grid-template-columns:repeat(3,1fr);gap:26px;
  }
  .archive-body .articles-section{max-width:1280px;margin-left:auto;margin-right:auto;padding:0 6vw}
  .archive-body .articles-list{display:grid;grid-template-columns:repeat(2,1fr);gap:0 40px}

  /* ── POST / PAGE ── */
  .post-hero{max-width:1280px;margin-left:auto;margin-right:auto;height:440px}
  .post-hero img,.post-hero .wp-post-image{border-radius:20px}
  .post-content,.page-content,.breadcrumb{
    max-width:820px;margin-left:auto;margin-right:auto;
    padding-left:2vw;padding-right:2vw;
  }
  .article-body{font-size:19px;line-height:1.88}
  .article-body h2{font-size:30px;font-weight:700;margin:40px 0 14px}
  .article-body h3{font-size:24px;font-weight:600;margin:28px 0 12px}
  .article-body p{margin-bottom:22px}
  .article-body li{font-size:18px;line-height:1.78}
  .breadcrumb{font-size:13px;padding:14px 2vw}

  /* ── CALCULADORAS ── */
  .calc-wrap,.calc-header{max-width:760px;margin-left:auto;margin-right:auto;padding:0 2vw}

  /* ── OUTRAS FERRAMENTAS ── */
  .outras-ferramentas{max-width:1280px;margin:0 auto}

  /* ── POSTS RELACIONADOS ── */
  .related-section{max-width:1280px;margin:0 auto;padding:0 6vw}
}

/* ── DESKTOP LARGO (>=1440px) ── */
@media(min-width:1440px){
  :root{--pad:24px}
  .hero,.featured-post,.stories-section,.desktop-layout,
  .newsletter-section,.articles-grid,.related-section,
  .outras-ferramentas,.page-title-block,.search-results-header,
  .filter-chips,.search-bar,.sort-bar,.pagination-wrap,
  .posts-section,.blog-grid-section{max-width:1400px}
  .blog-grid{grid-template-columns:repeat(3,1fr);gap:36px}
  .desktop-layout{grid-template-columns:1fr 360px;gap:48px}
  .tools-grid{grid-template-columns:repeat(3,1fr)}
  .cards-list{grid-template-columns:repeat(3,1fr)}
  .articles-grid{grid-template-columns:repeat(4,1fr)}
}

/* HEADER */
.site-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 20px;background:var(--bg);
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:200;
  transition:box-shadow .2s;
}
.site-header.scrolled{box-shadow:0 2px 14px rgba(0,0,0,.09)}
.header-logo{
  display:flex;align-items:center;gap:8px;
  text-decoration:none;flex:1;justify-content:center;
}
.header-logo .logo-img{
  height:38px;width:auto;display:block;object-fit:contain;
}
@media(min-width:1024px){
  .header-logo .logo-img{height:44px}
}
.header-btn{background:none;border:none;color:var(--text);padding:6px;line-height:0;flex-shrink:0}
.header-btn svg{width:22px;height:22px}

/* NAV CATEGORIES BAR */
nav.categories-bar{
  background:var(--primary);
  display:flex;justify-content:space-around;padding:0 4px;
}
nav.categories-bar a{
  display:flex;flex-direction:column;align-items:center;
  gap:3px;padding:9px 4px;text-decoration:none;color:#fff;
  font-family:var(--font-title);font-size:12px;font-weight:500;
  transition:opacity .2s;flex:1;white-space:nowrap;
}
nav.categories-bar a:hover,nav.categories-bar a.current-cat{opacity:.8}
nav.categories-bar a svg{width:16px;height:16px;stroke:#fff;fill:none;stroke-width:1.8}

/* MENU DRAWER */
.menu-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:300}
.menu-overlay.open{display:block}
.menu-drawer{
  position:fixed;top:0;left:-300px;bottom:0;width:280px;
  background:var(--bg);z-index:400;padding:20px;
  transition:left .28s ease;overflow-y:auto;box-shadow:var(--shadow-md);
}
.menu-drawer.open{left:0}
.menu-drawer-close{background:none;border:none;margin-left:auto;display:block;padding:4px;margin-bottom:20px;line-height:0}
.menu-drawer-close svg{width:24px;height:24px;stroke:var(--text);fill:none;stroke-width:2}
.menu-drawer nav a{
  display:flex;align-items:center;gap:12px;
  padding:13px 0;border-bottom:1px solid var(--border);
  font-family:var(--font-title);font-size:15px;font-weight:500;color:var(--text);
}
.menu-drawer nav a svg{width:18px;height:18px;stroke:var(--primary);fill:none;stroke-width:1.8}
.menu-drawer nav a:hover{color:var(--primary)}

/* BREADCRUMB */
.breadcrumb{
  padding:11px var(--pad);display:flex;align-items:center;gap:6px;
  font-size:11px;color:var(--text-light);border-bottom:1px solid var(--border);flex-wrap:wrap;
}
.breadcrumb a{color:var(--text-light)}
.breadcrumb a:hover{color:var(--primary)}
.breadcrumb .sep{color:var(--border)}
.breadcrumb .current{color:var(--primary);font-weight:500}

/* BUTTONS */
.btn-primary{
  display:inline-block;background:var(--primary);color:#fff;
  font-family:var(--font-title);font-size:13px;font-weight:600;
  padding:11px 22px;border-radius:var(--radius-full);border:none;
  transition:background .2s,transform .15s;
}
.btn-primary:hover{background:var(--primary-dark);transform:translateY(-1px)}

/* SECTION HEADER */
.section-header{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:16px;gap:8px}
.section-header h2{font-family:var(--font-title);font-size:22px;font-weight:700;color:var(--text)}
.section-header .section-link{
  font-size:14px;font-family:var(--font-title);color:var(--primary);font-weight:600;
  display:flex;align-items:center;gap:3px;padding-top:4px;white-space:nowrap;
}
.section-header .section-link svg{width:14px;height:14px;stroke:var(--primary);fill:none}
.section-subtitle{font-size:14px;color:var(--text-light);margin-top:2px}

/* HERO BANNER */
.hero{
  margin:12px var(--pad) 0;
  border-radius:var(--radius-lg);
  overflow:hidden;
  position:relative;
  min-height:210px;
  box-shadow:var(--shadow);
}
/* Hero com imagem fixa — sem conteúdo sobreposto */
.hero--fixed-img{
  min-height:0;
  background:transparent;
}
.hero-fixed-banner{
  width:100%;
  line-height:0;
}
.hero-fixed-banner img{
  width:100%;
  height:auto;
  display:block;
  border-radius:var(--radius-lg);
  object-fit:cover;
}

/* v1.3.2 — hero fix */

/* Imagem: ocupa 100% do hero como fundo */
.hero-img{
  position:absolute;inset:0;
  width:100%;height:100%;
  z-index:1;
}
.hero-img img,.hero-img .wp-post-image{
  width:100%;height:100%;
  object-fit:cover;object-position:center top;
  display:block;
}

/* Overlay: gradiente rosa sobre a imagem — escurece apenas a metade esquerda */
.hero-img::after{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(
    to right,
    rgba(255,240,247,0.72) 0%,
    rgba(255,240,247,0.55) 45%,
    rgba(255,240,247,0.0) 75%
  );
  z-index:2;
}

/* Conteúdo: sobreposto à imagem, lado esquerdo */
.hero-content{
  position:relative;
  z-index:10;
  padding:22px 10px 22px 18px;
  width:52%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:210px;
}

/* Badge — acima do título */
.badge-destaque{
  display:inline-block;background:var(--primary);color:#fff;
  font-family:var(--font-title);font-size:9px;font-weight:700;
  padding:3px 10px;border-radius:var(--radius-full);
  letter-spacing:.8px;margin-bottom:10px;text-transform:uppercase;
  align-self:flex-start;text-decoration:none;
  position:relative;z-index:11;
}
.badge-destaque:hover{background:var(--primary-dark)}

/* Título */
.hero-content h1{
  font-family:var(--font-title);font-size:20px;font-weight:800;
  line-height:1.2;color:var(--text);margin-bottom:10px;
}

/* Excerpt */
.hero-content p{
  font-size:13px;color:#444;
  line-height:1.6;margin-bottom:18px;
}

/* Botão — abaixo do excerpt, acima de tudo */
.hero-btn{
  align-self:flex-start;
  font-size:13px;padding:10px 22px;
  position:relative;z-index:11;
}

/* STORIES */
.stories-section{padding:16px 0 20px}
.stories-scroll{
  display:flex;gap:14px;align-items:center;
  overflow-x:auto;padding:8px var(--pad) 12px;
  scrollbar-width:none;-webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  overscroll-behavior-x:contain;
  cursor:grab;
  -webkit-user-select:none;user-select:none;
  scroll-behavior:smooth;
}
.stories-scroll.dragging{cursor:grabbing;scroll-snap-type:none}
.stories-scroll::-webkit-scrollbar{display:none}
.story-item{scroll-snap-align:start}

/* Item: círculo + label */
.story-item{
  display:flex;flex-direction:column;align-items:center;
  gap:8px;flex-shrink:0;cursor:pointer;text-decoration:none;
}
.story-ring{
  width:80px;height:80px;border-radius:50%;
  border:3px solid var(--primary);padding:3px;
  transition:border-color .2s,transform .2s;background:#fff;
  box-sizing:border-box;
}
.story-ring:hover{transform:scale(1.04);border-color:var(--primary-dark)}
.story-inner{
  width:100%;height:100%;border-radius:50%;
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  background:var(--primary-soft);
}
.story-inner img{
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  border-radius:50%;display:block;
  flex-shrink:0;
}
.story-inner svg{width:32px;height:32px;opacity:.5}
.story-item span{
  font-size:12px;font-weight:500;color:var(--text);
  text-align:center;white-space:nowrap;
  font-family:var(--font-body);line-height:1;
}

/* Tamanho maior em telas maiores */
@media(min-width:400px){
  .story-ring{width:75px;height:75px}
  .story-item span{font-size:11px}
  .stories-scroll{gap:14px}
}
@media(min-width:600px){
  .story-ring{width:85px;height:85px}
  .story-item span{font-size:12px}
  .stories-scroll{gap:18px}
}

/* Botão Ver todos */
.story-ver-todos{
  flex-shrink:0;align-self:center;cursor:pointer;
  text-decoration:none;display:flex;align-items:center;justify-content:center;
  width:48px;height:48px;border-radius:50%;
  background:var(--primary-soft);
  transition:background .2s,transform .2s;
  margin-left:4px;
}
@media(min-width:400px){.story-ver-todos{width:54px;height:54px}}
@media(min-width:600px){.story-ver-todos{width:60px;height:60px}}
.story-ver-todos:hover{background:#fad0e6;transform:scale(1.08)}
.story-ver-todos svg{
  width:22px;height:22px;stroke:var(--primary);
  fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;
}

/* ARTICLE CARDS */
.articles-section{padding:0 var(--pad) 20px}
.article-card{display:flex;gap:14px;align-items:flex-start;padding:14px 0;border-bottom:1px solid var(--border);text-decoration:none;transition:opacity .2s}
.article-card:hover{opacity:.82}
.article-card:last-child{border-bottom:none}
.article-thumb{width:100px;height:80px;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0;background:var(--bg-soft)}
.article-thumb img,.article-thumb .wp-post-image{width:100%;height:100%;object-fit:cover}
.article-thumb-inner{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.article-thumb-inner svg{width:34px;height:34px;opacity:.45}
.article-info{flex:1;min-width:0}
.article-category{font-family:var(--font-title);font-size:11px;font-weight:600;color:var(--primary);letter-spacing:.6px;text-transform:uppercase;margin-bottom:4px}
.article-info h3{font-family:var(--font-title);font-size:16px;font-weight:700;color:var(--text);line-height:1.35;margin-bottom:6px}
.article-meta{font-size:13px;color:var(--text-light);display:flex;align-items:center;gap:5px;flex-wrap:wrap}

/* TOOLS GRID */
.tools-section{padding:0 var(--pad) 20px}
.tools-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:4px}
.tool-card{
  background:var(--bg);border:1.5px solid var(--border);border-radius:var(--radius-md);
  padding:12px 8px 10px;display:flex;flex-direction:column;align-items:center;gap:7px;
  text-decoration:none;text-align:center;box-shadow:var(--shadow);
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.tool-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:var(--primary)}
.tool-icon{width:46px;height:46px;border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.tool-icon svg{width:21px;height:21px}
.tool-icon--pink{background:#FFF0F7;color:#F94B93}
.tool-icon--purple{background:#F3E5F5;color:#9C27B0}
.tool-icon--blue{background:#E3F2FD;color:#1976D2}
.tool-icon--green{background:#E8F5E9;color:#388E3C}
.tool-icon--orange{background:#FFF3E0;color:#E65100}
.tool-icon--teal{background:#E0F2F1;color:#00796B}
.tool-name{font-family:var(--font-title);font-size:12px;font-weight:600;color:var(--text);line-height:1.3}
.tool-desc{font-size:11px;color:var(--text-light);line-height:1.3}

/* NEWSLETTER */
.newsletter{margin:0 var(--pad) 28px;background:var(--primary-soft);border-radius:var(--radius-lg);padding:18px;display:flex;flex-direction:column;gap:12px;box-shadow:var(--shadow)}
.newsletter-top{display:flex;align-items:flex-start;gap:12px}
.newsletter-icon{width:42px;height:42px;flex-shrink:0;background:#fff;border:2px solid #f9c5dc;border-radius:50%;display:flex;align-items:center;justify-content:center}
.newsletter-icon svg{width:20px;height:20px;stroke:var(--primary);fill:none;stroke-width:1.8}
.newsletter-text h3{font-family:var(--font-title);font-size:17px;font-weight:700;color:var(--text);margin-bottom:4px}
.newsletter-text p{font-size:14px;color:var(--text-light);line-height:1.5}
.newsletter-form{display:flex;gap:8px}
.newsletter-form input{flex:1;border:1.5px solid var(--border);border-radius:var(--radius-full);padding:12px 16px;font-size:14px;color:var(--text);background:var(--bg);outline:none;transition:border-color .2s;min-width:0}
.newsletter-form input::placeholder{color:#bbb}
.newsletter-form input:focus{border-color:var(--primary)}
.newsletter-form button{background:var(--primary);color:#fff;border:none;border-radius:var(--radius-full);padding:12px 20px;font-family:var(--font-title);font-size:14px;font-weight:600;white-space:nowrap;transition:background .2s;flex-shrink:0}
.newsletter-form button:hover{background:var(--primary-dark)}

/* FOOTER */
/* ── FOOTER ── */
.site-footer{
  background:#1a1a2e;color:#fff;
  padding:48px var(--pad) 0;
}

/* Grid interno: 1 coluna no mobile, 3 no desktop */
.footer-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.1);
  max-width:1200px;
  margin:0 auto;
}

/* Marca / logo */
.footer-brand{}
.footer-logo-link{display:inline-block;margin-bottom:16px}
.footer-logo-img{height:36px;width:auto;object-fit:contain;filter:brightness(0) invert(1)}
.footer-desc{font-size:13px;color:#9a9ab0;line-height:1.7;margin-bottom:20px;max-width:280px}

/* Títulos das colunas */
.footer-col-title{
  font-family:var(--font-title);font-size:11px;font-weight:700;
  color:#fff;letter-spacing:1.5px;text-transform:uppercase;
  margin-bottom:18px;
}
.footer-col a{
  display:block;font-size:13px;color:#9a9ab0;
  margin-bottom:12px;transition:color .2s;text-decoration:none;
}
.footer-col a:hover{color:var(--primary)}

/* Social */
.footer-social{display:flex;gap:10px}
.social-btn{
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.social-btn:hover{background:var(--primary)}
.social-btn svg{width:16px;height:16px;stroke:#fff;fill:none;stroke-width:1.8}

/* Barra inferior */
.footer-bottom{
  display:flex;flex-direction:column;align-items:center;
  gap:10px;padding:18px 0;
  font-size:12px;color:#666;text-align:center;
  max-width:1200px;margin:0 auto;
}
.footer-bottom p{margin:0}
.footer-bottom-links{display:flex;gap:20px}
.footer-bottom-links a{color:#9a9ab0;text-decoration:none;font-size:12px;transition:color .2s}
.footer-bottom-links a:hover{color:var(--primary)}

/* ── FOOTER DESKTOP ── */
@media(min-width:768px){
  .site-footer{padding:56px 5vw 0}
  .footer-inner{
    grid-template-columns:1.4fr 1fr 1fr;
    gap:48px;
    align-items:start;
  }
  .footer-desc{font-size:14px}
  .footer-col a{font-size:14px}
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
    padding:22px 0;
    font-size:13px;
  }
  .footer-bottom-links a{font-size:13px}
  .footer-logo-img{height:40px}
}
@media(min-width:1024px){
  .site-footer{padding:64px 5vw 0;max-width:100%}
  .footer-inner{gap:64px}
}


/* ARCHIVE */
.page-title-block{background:var(--bg);padding:18px var(--pad) 0;border-bottom:1px solid var(--border)}
.page-title-block h1{font-family:var(--font-title);font-size:22px;font-weight:700;margin-bottom:6px}
.page-title-block p{font-size:14px;color:var(--text-light);margin-bottom:14px}
.search-bar{padding:14px var(--pad);background:var(--bg);border-bottom:1px solid var(--border)}
.search-wrap{display:flex;align-items:center;gap:10px;background:var(--bg-soft);border:1.5px solid var(--border);border-radius:var(--radius-full);padding:10px 16px}
.search-wrap:focus-within{border-color:var(--primary)}
.search-wrap svg{width:15px;height:15px;stroke:var(--text-light);fill:none;stroke-width:2;flex-shrink:0}
.search-wrap input{border:none;background:none;outline:none;font-size:13px;color:var(--text);flex:1;min-width:0}
.search-wrap input::placeholder{color:#bbb}
.filter-chips{display:flex;gap:7px;padding:12px var(--pad);overflow-x:auto;scrollbar-width:none;background:var(--bg);border-bottom:1px solid var(--border)}
.filter-chips::-webkit-scrollbar{display:none}
.chip{flex-shrink:0;padding:7px 16px;border-radius:var(--radius-full);font-family:var(--font-title);font-size:13px;font-weight:500;border:1.5px solid var(--border);background:var(--bg);color:var(--text-light);transition:all .2s}
.chip.active,.chip:hover{background:var(--primary);color:#fff;border-color:var(--primary)}
.sort-bar{display:flex;align-items:center;justify-content:space-between;padding:11px var(--pad);background:var(--bg-soft)}
.sort-bar span{font-size:12px;color:var(--text-light)}
.sort-bar strong{color:var(--text)}
.sort-select{display:flex;align-items:center;gap:5px;background:var(--bg);border:1.5px solid var(--border);border-radius:var(--radius-sm);padding:6px 10px;font-size:12px;color:var(--text)}
.sort-select svg{width:11px;height:11px;stroke:var(--text-light);fill:none;stroke-width:2}
.featured-post{margin:14px var(--pad) 0;background:var(--bg);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);display:block;transition:transform .2s}
.featured-post:hover{transform:translateY(-2px);box-shadow:var(--shadow-md)}
.featured-img{height:175px;position:relative;overflow:hidden;background:linear-gradient(160deg,#fce4ef,#f4a0c5);display:flex;align-items:center;justify-content:center}
.featured-img img,.featured-img .wp-post-image{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.featured-img svg{width:55px;height:55px;opacity:.18;fill:var(--primary)}
.featured-badge{position:absolute;top:12px;left:12px;background:var(--primary);color:#fff;font-family:var(--font-title);font-size:9px;font-weight:600;padding:3px 10px;border-radius:var(--radius-full);text-transform:uppercase;letter-spacing:.5px}
.featured-body{padding:14px}
.featured-cat{font-family:var(--font-title);font-size:11px;font-weight:600;color:var(--primary);text-transform:uppercase;letter-spacing:.6px;margin-bottom:6px}
.featured-body h2{font-family:var(--font-title);font-size:19px;font-weight:700;color:var(--text);line-height:1.3;margin-bottom:8px}
.featured-body p{font-size:14px;color:var(--text-light);line-height:1.55;margin-bottom:10px}
.featured-meta{font-size:13px;color:var(--text-light);display:flex;align-items:center;gap:5px}
.posts-section{padding:16px var(--pad) 24px}
.section-label{font-family:var(--font-title);font-size:12px;font-weight:600;color:var(--text-light);margin-bottom:10px;text-transform:uppercase;letter-spacing:.5px}
.posts-grid{display:grid;grid-template-columns:1fr;gap:12px;margin-bottom:20px}
.post-card{background:var(--bg);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow);display:block;transition:transform .2s}
.post-card:hover{transform:translateY(-2px)}
.card-img{height:160px;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.card-img img,.card-img .wp-post-image{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.card-img svg{width:32px;height:32px;opacity:.28}
.card-body{padding:12px 14px}
.card-cat{font-family:var(--font-title);font-size:11px;font-weight:600;color:var(--primary);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.card-body h3{font-family:var(--font-title);font-size:15px;font-weight:700;color:var(--text);line-height:1.35;margin-bottom:6px}
.card-meta{font-size:12px;color:var(--text-light)}
.posts-list{border-radius:var(--radius-md);overflow:hidden}
.list-card{display:flex;gap:12px;align-items:flex-start;background:var(--bg);padding:14px;border-bottom:1px solid var(--border);text-decoration:none;transition:background .15s}
.list-card:first-child{border-radius:var(--radius-md) var(--radius-md) 0 0}
.list-card:last-child{border-bottom:none;border-radius:0 0 var(--radius-md) var(--radius-md)}
.list-card:hover{background:var(--bg-soft)}
.list-thumb{width:86px;height:68px;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.list-thumb img,.list-thumb .wp-post-image{width:100%;height:100%;object-fit:cover}
.list-thumb svg{width:26px;height:26px;opacity:.3}
.list-info{flex:1;min-width:0}
.list-cat{font-family:var(--font-title);font-size:11px;font-weight:600;color:var(--primary);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.list-info h3{font-family:var(--font-title);font-size:15px;font-weight:700;color:var(--text);line-height:1.35;margin-bottom:5px}
.list-meta{font-size:11px;color:var(--text-light);display:flex;gap:4px;flex-wrap:wrap}
.pagination{display:flex;align-items:center;justify-content:center;gap:5px;padding:20px var(--pad);flex-wrap:wrap}
.page-numbers{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-title);font-size:13px;font-weight:500;border:1.5px solid var(--border);background:var(--bg);color:var(--text);transition:all .2s}
.page-numbers:hover{border-color:var(--primary);color:var(--primary)}
.page-numbers.current{background:var(--primary);color:#fff;border-color:var(--primary)}
.page-numbers.dots{border:none;background:none;width:auto}

/* SINGLE POST */
.post-hero{width:100%;height:210px;position:relative;overflow:hidden}
.post-hero img,.post-hero .wp-post-image{width:100%;height:100%;object-fit:cover}
.post-hero-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.post-hero-placeholder svg{width:70px;height:70px;opacity:.18;fill:var(--primary)}
.post-category-badge{position:absolute;top:14px;left:14px;background:var(--primary);color:#fff;font-family:var(--font-title);font-size:10px;font-weight:600;padding:4px 12px;border-radius:var(--radius-full);text-transform:uppercase;letter-spacing:.5px}
.post-content{padding:20px var(--pad)}
.post-meta-top{display:flex;align-items:center;gap:7px;font-size:11px;color:var(--text-light);margin-bottom:12px;flex-wrap:wrap}
.post-meta-top .dot{color:var(--border)}
.post-content h1{font-family:var(--font-title);font-size:21px;font-weight:700;color:var(--text);line-height:1.28;margin-bottom:11px}
.post-excerpt{font-size:14px;color:var(--text-light);line-height:1.65;margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid var(--border)}
.author-card{display:flex;align-items:center;gap:11px;margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid var(--border)}
.author-avatar{width:42px;height:42px;border-radius:50%;background:var(--primary-soft);border:2px solid #f9c5dc;display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden}
.author-avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.author-avatar svg{width:22px;height:22px;stroke:var(--primary);fill:none;stroke-width:1.8}
.author-info{flex:1;min-width:0}
.author-info strong{font-family:var(--font-title);font-size:13px;font-weight:600;color:var(--text);display:block}
.author-info span{font-size:11px;color:var(--text-light)}
.share-btn{display:flex;align-items:center;gap:5px;background:var(--primary-soft);border:none;border-radius:var(--radius-full);padding:8px 12px;font-family:var(--font-title);font-size:11px;font-weight:600;color:var(--primary);flex-shrink:0}
.share-btn svg{width:13px;height:13px;stroke:var(--primary);fill:none;stroke-width:2}
.article-body{font-size:15px;line-height:1.75;color:var(--text)}
.article-body h2{font-family:var(--font-title);font-size:17px;font-weight:700;margin:22px 0 9px}
.article-body h3{font-family:var(--font-title);font-size:15px;font-weight:600;margin:18px 0 7px}
.article-body p{margin-bottom:13px}
.article-body a{color:var(--primary);text-decoration:underline}
.article-body ul,.article-body ol{padding-left:20px;margin-bottom:13px}
.article-body li{margin-bottom:7px;font-size:14px;line-height:1.6}
.article-body img{border-radius:var(--radius-sm);margin:14px 0;width:100%}
.article-body blockquote{border-left:3px solid var(--primary);padding:11px 14px;margin:18px 0;background:var(--primary-soft);border-radius:0 var(--radius-sm) var(--radius-sm) 0;font-style:italic;color:var(--text-light)}
.highlight-box{background:var(--primary-soft);border-left:3px solid var(--primary);border-radius:0 var(--radius-sm) var(--radius-sm) 0;padding:13px 15px;margin:18px 0;font-size:14px;line-height:1.6}
.highlight-box strong{color:var(--primary)}
.symptom-list{list-style:none;padding:0;margin:14px 0}
.symptom-item{display:flex;gap:11px;align-items:flex-start;background:var(--bg-soft);border-radius:var(--radius-sm);padding:13px;margin-bottom:9px;border:1px solid var(--border)}
.symptom-num{width:27px;height:27px;border-radius:50%;background:var(--primary);color:#fff;font-family:var(--font-title);font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.symptom-text strong{display:block;font-family:var(--font-title);font-size:13px;font-weight:600;margin-bottom:2px}
.symptom-text p{font-size:12px;color:var(--text-light);line-height:1.5;margin:0}
.post-tags{display:flex;flex-wrap:wrap;gap:7px;margin:20px 0;padding-top:18px;border-top:1px solid var(--border)}
.tag{background:var(--bg-soft);border:1px solid var(--border);border-radius:var(--radius-full);padding:5px 12px;font-size:11px;color:var(--text-light);transition:all .2s}
.tag:hover{background:var(--primary-soft);color:var(--primary);border-color:#f9c5dc}
.related-section{padding:0 var(--pad) 20px}
.related-header{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:14px;gap:8px}
.related-header h2{font-family:var(--font-title);font-size:16px;font-weight:700;margin-bottom:3px}
.related-subtitle{font-size:12px;color:var(--text-light);display:flex;align-items:center;gap:5px;flex-wrap:wrap}
.related-cat-pill{background:var(--primary-soft);color:var(--primary);font-family:var(--font-title);font-size:11px;font-weight:600;padding:2px 9px;border-radius:var(--radius-full);border:1px solid #f9c5dc}
.related-ver-todos{font-family:var(--font-title);font-size:12px;font-weight:600;color:var(--primary);white-space:nowrap;padding-top:2px}
.related-card{display:flex;gap:11px;align-items:flex-start;padding:11px 0;border-bottom:1px solid var(--border);transition:opacity .2s}
.related-card:last-child{border-bottom:none}
.related-card:hover{opacity:.82}
.related-thumb{width:78px;height:62px;border-radius:var(--radius-sm);overflow:hidden;flex-shrink:0;background:var(--bg-soft);display:flex;align-items:center;justify-content:center}
.related-thumb img,.related-thumb .wp-post-image{width:100%;height:100%;object-fit:cover}
.related-thumb svg{width:26px;height:26px;opacity:.35}
.related-info .related-cat{font-family:var(--font-title);font-size:10px;font-weight:600;color:var(--primary);text-transform:uppercase;letter-spacing:.5px;margin-bottom:3px}
.related-info h3{font-family:var(--font-title);font-size:13px;font-weight:600;color:var(--text);line-height:1.33}
.related-info .rmeta{font-size:11px;color:var(--text-light);margin-top:3px}

/* TOOL PAGES */
.tool-page{padding:18px var(--pad) 28px}
.tool-page-header{margin-bottom:20px}
.tool-icon-lg{width:60px;height:60px;border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;margin-bottom:11px}
.tool-icon-lg svg{width:30px;height:30px}
.tool-page-header h1{font-family:var(--font-title);font-size:20px;font-weight:700;margin-bottom:5px}
.tool-page-header p{font-size:13px;color:var(--text-light);line-height:1.6}
.calc-card{background:var(--bg-soft);border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:16px;margin-bottom:12px}
.calc-label{font-family:var(--font-title);font-size:12px;font-weight:600;color:var(--text);margin-bottom:8px;display:block}
.calc-input{width:100%;padding:12px 14px;border:1.5px solid var(--border);border-radius:var(--radius-full);font-size:14px;color:var(--text);background:var(--bg);outline:none;transition:border-color .2s;appearance:none;-webkit-appearance:none}
.calc-input:focus{border-color:var(--primary)}
select.calc-input{background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='%236F6F6F' stroke-width='2' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;background-size:16px;padding-right:36px}
.calc-result{background:var(--primary-soft);border-radius:var(--radius-lg);padding:18px;margin-top:14px;text-align:center;display:none}
.calc-result.show{display:block}
.result-label{font-size:12px;color:var(--text-light);margin-bottom:5px}
.result-value{font-family:var(--font-title);font-size:24px;font-weight:700;color:var(--primary)}
.result-sub{font-size:12px;color:var(--text-light);margin-top:3px}

/* 404 */
.error-page{padding:44px var(--pad);text-align:center}
.error-page .error-icon{width:76px;height:76px;margin:0 auto 18px;background:var(--primary-soft);border-radius:50%;display:flex;align-items:center;justify-content:center}
.error-page .error-icon svg{width:34px;height:34px;stroke:var(--primary);fill:none;stroke-width:1.8}
.error-page h1{font-family:var(--font-title);font-size:60px;font-weight:700;color:var(--primary);line-height:1;margin-bottom:7px}
.error-page h2{font-family:var(--font-title);font-size:19px;font-weight:600;margin-bottom:10px}
.error-page p{font-size:13px;color:var(--text-light);line-height:1.6;margin-bottom:22px}
.error-cats{display:flex;flex-wrap:wrap;gap:7px;justify-content:center;margin-top:20px}

/* STATIC PAGE */
.page-content{padding:22px var(--pad)}
.page-content h1{font-family:var(--font-title);font-size:22px;font-weight:700;margin-bottom:14px}
.page-content .entry-content{font-size:15px;line-height:1.75}
.page-content .entry-content h2{font-family:var(--font-title);font-size:17px;font-weight:700;margin:22px 0 9px}
.page-content .entry-content p{margin-bottom:13px}
.page-content .entry-content a{color:var(--primary)}
.page-content .entry-content ul,.page-content .entry-content ol{padding-left:20px;margin-bottom:13px}
.page-content .entry-content li{margin-bottom:7px}

/* SEARCH */
.search-results-header{padding:18px var(--pad) 0;background:var(--bg);border-bottom:1px solid var(--border)}
.search-results-header h1{font-family:var(--font-title);font-size:17px;font-weight:700;margin-bottom:3px}
.search-results-header .search-term{color:var(--primary)}
.search-results-header p{font-size:12px;color:var(--text-light);padding-bottom:14px}
.no-results{padding:36px var(--pad);text-align:center}
.no-results svg{width:44px;height:44px;stroke:var(--border);fill:none;margin:0 auto 14px;display:block}
.no-results h2{font-family:var(--font-title);font-size:17px;font-weight:600;margin-bottom:7px}
.no-results p{font-size:13px;color:var(--text-light)}

/* ── BLOG GRID (page-todos-os-posts) ── */

/* Padrão mobile: grid desktop oculto, layout mobile visível */
.blog-grid-section{display:none !important}
.blog-mobile-layout{display:block}

/* Desktop (≥1024px): inverte — grid 3 colunas, oculta layout mobile */
@media(min-width:1024px){
  .blog-grid-section{
    display:block !important;
    max-width:1280px;margin:0 auto;
    padding:32px 6vw 48px;
  }
  .blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
  }
  .blog-mobile-layout{display:none !important}
  .blog-grid-title{font-size:20px}
  .blog-grid-body{padding:20px 22px 24px}
  .blog-grid-excerpt{-webkit-line-clamp:3}
}

.blog-grid-card{
  display:block;text-decoration:none;
  background:var(--bg);border-radius:var(--radius-md);
  overflow:hidden;box-shadow:var(--shadow);
  transition:transform .2s,box-shadow .2s;
}
.blog-grid-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.blog-grid-img{
  width:100%;aspect-ratio:16/9;overflow:hidden;position:relative;
  background:var(--primary-soft);display:flex;align-items:center;justify-content:center;
}
.blog-grid-img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .3s;
}
.blog-grid-card:hover .blog-grid-img img{transform:scale(1.03)}
.blog-grid-body{padding:18px 20px 22px}
.blog-grid-cat{
  font-family:var(--font-title);font-size:11px;font-weight:700;
  color:var(--primary);text-transform:uppercase;letter-spacing:.8px;
  background:var(--primary-soft);display:inline-block;
  padding:3px 10px;border-radius:var(--radius-full);margin-bottom:10px;
}
.blog-grid-title{
  font-family:var(--font-title);font-size:18px;font-weight:700;
  color:var(--text);line-height:1.35;margin-bottom:10px;
}
.blog-grid-excerpt{
  font-size:14px;color:var(--text-light);line-height:1.6;
  margin-bottom:14px;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.blog-grid-meta{
  font-size:13px;color:var(--text-light);
  display:flex;align-items:center;gap:5px;
}

/* ── RESPONSIVE 320px ── */
@media(max-width:360px){
  .hero-content h1{font-size:14px}
  .hero-content p{font-size:10px}
  .hero-content{width:58%;padding:16px 8px 16px 14px;min-height:190px}
  .hero{min-height:190px}
  .tools-grid{grid-template-columns:repeat(2,1fr)}
  nav.categories-bar a{font-size:10px;padding:8px 3px}
  .newsletter-form{flex-direction:column}
  .newsletter-form button{width:100%;text-align:center}
}

/* ── UTILITÁRIOS ── */
.wp-post-image{width:100%;height:100%;object-fit:cover;display:block}
.screen-reader-text{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.aligncenter{display:block;margin:0 auto}
.alignleft{float:left;margin:0 16px 12px 0}
.alignright{float:right;margin:0 0 12px 16px}

/* TABLE styles for calculators */
table{width:100%;border-collapse:collapse}
th,td{text-align:left}

/* STORIES v1.1.1 — carrossel com imagens de produto */

/* ── CATEGORY / TAG / AUTHOR PAGES ── */
.tag-label{
  display:inline-block;font-family:var(--font-title);font-size:13px;font-weight:600;
  color:var(--primary);background:var(--primary-soft);padding:4px 14px;
  border-radius:var(--radius-full);margin-bottom:8px;
}
.author-profile-block{
  display:flex;gap:16px;align-items:flex-start;
  padding:20px var(--pad);border-bottom:1px solid var(--border);background:var(--bg-soft);
}
.author-profile-avatar{flex-shrink:0}
.author-profile-img{width:72px;height:72px;border-radius:50%;object-fit:cover}
.author-profile-info h1{font-family:var(--font-title);font-size:18px;font-weight:700;margin-bottom:5px}
.author-profile-bio{font-size:13px;color:var(--text-light);line-height:1.55;margin-bottom:6px}
.author-profile-count{font-size:12px;color:var(--primary);font-weight:600}
.sort-bar{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px var(--pad);border-bottom:1px solid var(--border);background:var(--bg);
}
.sort-count{font-size:12px;color:var(--text-light)}
.sort-select{display:flex;align-items:center;gap:4px;font-size:12px;color:var(--text);cursor:pointer}
.sort-select svg{width:11px;height:11px;stroke:var(--text-light);fill:none;stroke-width:2}
.pagination-wrap{padding:20px var(--pad);display:flex;justify-content:center;position:relative;z-index:1;clear:both}
.blog-grid-section .pagination-wrap{padding:32px 0 8px}
.pagination-wrap .page-numbers{display:inline-flex;gap:6px;list-style:none;flex-wrap:wrap;justify-content:center}
.pagination-wrap .page-numbers li a,
.pagination-wrap .page-numbers li span{
  width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-family:var(--font-title);font-size:13px;font-weight:500;
  border:1.5px solid var(--border);background:var(--bg);color:var(--text);transition:all .2s;
}
.pagination-wrap .page-numbers li span.current{background:var(--primary);color:#fff;border-color:var(--primary)}
.pagination-wrap .page-numbers li a:hover{border-color:var(--primary);color:var(--primary)}
.pagination-wrap .page-numbers li .dots{border:none;background:none;width:auto}
/* Desktop: autor em duas colunas */
@media(min-width:1024px){
  .author-profile-block{
    max-width:800px;margin:0 auto;padding:28px 2vw;
  }
  .author-profile-img{width:90px;height:90px}
  .author-profile-info h1{font-size:22px}
}

/* ── COMMENTS ── */
.comments-section{padding:24px var(--pad);border-top:1px solid var(--border)}
.comments-header{margin-bottom:18px}
.comments-title{font-family:var(--font-title);font-size:17px;font-weight:700}
.comment-list{list-style:none}
.comment-list .children{list-style:none;padding-left:40px;border-left:2px solid var(--border);margin-left:20px}
.comment-item{padding:14px 0;border-bottom:1px solid var(--border)}
.comment-body{display:flex;gap:12px;align-items:flex-start}
.comment-avatar img{width:40px;height:40px;border-radius:50%;object-fit:cover;flex-shrink:0}
.comment-content{flex:1;min-width:0}
.comment-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:6px}
.comment-author{font-family:var(--font-title);font-size:13px;font-weight:600}
.comment-date{font-size:11px;color:var(--text-light)}
.comment-awaiting{font-size:11px;color:#f59e0b;background:#fef3c7;padding:2px 8px;border-radius:var(--radius-full)}
.comment-text{font-size:14px;line-height:1.65;color:var(--text)}
.comment-text p{margin-bottom:8px}
.comment-reply a{font-size:12px;color:var(--primary);font-weight:500}
.no-comments{font-size:13px;color:var(--text-light);padding:16px 0;text-align:center}
.comments-protected{font-size:14px;color:var(--text-light);padding:20px var(--pad);text-align:center}
/* Formulário */
.comment-respond{margin-top:28px;padding-top:22px;border-top:1px solid var(--border)}
.comment-respond h3{font-family:var(--font-title);font-size:17px;font-weight:700;margin-bottom:16px}
.comment-respond h3 a{color:var(--primary);font-size:13px;font-weight:400;margin-left:8px}
.comment-form-author,
.comment-form-email,
.comment-form-comment{margin-bottom:14px}
.comment-form-author label,
.comment-form-email label,
.comment-form-comment label{display:block;font-size:12px;font-weight:600;margin-bottom:5px;color:var(--text)}
.comment-form-author input,
.comment-form-email input{width:100%;border:1.5px solid var(--border);border-radius:var(--radius-sm);padding:10px 14px;font-size:13px;color:var(--text);outline:none;transition:border-color .2s;background:var(--bg)}
.comment-form-author input:focus,
.comment-form-email input:focus{border-color:var(--primary)}
.comment-form-comment textarea{width:100%;border:1.5px solid var(--border);border-radius:var(--radius-sm);padding:10px 14px;font-size:13px;color:var(--text);outline:none;resize:vertical;min-height:100px;transition:border-color .2s;background:var(--bg)}
.comment-form-comment textarea:focus{border-color:var(--primary)}
.comment-form-email small{display:block;font-size:11px;color:var(--text-light);margin-top:3px}
.comment-submit-btn{background:var(--primary);color:#fff;border:none;border-radius:var(--radius-full);padding:12px 28px;font-family:var(--font-title);font-size:14px;font-weight:600;transition:background .2s;width:100%}
.comment-submit-btn:hover{background:var(--primary-dark)}
.required{color:var(--primary)}
.comment-navigation{display:flex;justify-content:space-between;padding:12px 0;font-size:13px}
.comment-navigation a{color:var(--primary)}
/* Desktop */
@media(min-width:1024px){
  .comments-section{max-width:800px;margin:0 auto;padding:28px 2vw}
  .comment-submit-btn{width:auto}
}

/* ── HERO PLACEHOLDER (sem imagem de destaque) ── */
.hero-img-placeholder{
  width:100%;height:100%;
  background:linear-gradient(160deg,#fce4ef 0%,#f9c5dc 60%,#f4a0c5 100%);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.hero-img-placeholder::before{
  content:'';position:absolute;
  width:180px;height:180px;
  background:rgba(249,75,147,.12);border-radius:50%;
  top:-30px;right:-30px;
}
.hero-hearts{position:absolute;top:16px;right:8px}
.hero-hearts svg{width:40px;height:50px}
.person-silhouette{width:110px;height:auto;opacity:.35;margin-top:20px}

/* ── SEARCH OVERLAY ── */
.search-overlay{
  display:none;position:fixed;inset:0;
  background:rgba(0,0,0,.55);z-index:500;
  align-items:flex-start;justify-content:center;
  padding-top:80px;
}
.search-overlay.open{display:flex}
.search-overlay-inner{
  width:100%;max-width:640px;margin:0 16px;position:relative;
}
.search-overlay-form{
  display:flex;align-items:center;gap:12px;
  background:#fff;border-radius:var(--radius-full);
  padding:14px 20px;box-shadow:0 8px 40px rgba(0,0,0,.18);
}
.search-overlay-form svg{
  width:20px;height:20px;stroke:var(--primary);
  flex-shrink:0;fill:none;stroke-width:2;
}
.search-overlay-form input{
  flex:1;border:none;outline:none;font-size:17px;
  font-family:var(--font-body);color:var(--text);background:transparent;
}
.search-overlay-form input::placeholder{color:#bbb}
.search-overlay-btn{
  background:var(--primary);color:#fff;border:none;
  border-radius:var(--radius-full);padding:9px 22px;
  font-family:var(--font-title);font-size:14px;font-weight:600;
  cursor:pointer;transition:background .2s;white-space:nowrap;
}
.search-overlay-btn:hover{background:var(--primary-dark)}
.search-overlay-close{
  position:absolute;top:-48px;right:0;
  background:rgba(255,255,255,.15);border:none;
  border-radius:50%;width:36px;height:36px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s;
}
.search-overlay-close:hover{background:rgba(255,255,255,.3)}
.search-overlay-close svg{
  width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2.5;
}

/* ── CATEGORY PAGE — fix border-left overflow ── */
.page-title-block{
  background:var(--bg);
  padding:18px var(--pad) 14px;
  border-bottom:1px solid var(--border);
  border-left:4px solid var(--primary);
  overflow:hidden;
}
.page-title-block h1{
  font-family:var(--font-title);font-size:22px;font-weight:700;margin-bottom:4px;
}
.cat-icon-label{
  display:flex;align-items:center;gap:6px;
  font-family:var(--font-title);font-size:12px;font-weight:600;
  text-transform:uppercase;letter-spacing:.7px;margin-bottom:8px;
}
.cat-icon-label svg{width:16px;height:16px}

/* ── DESKTOP SIDEBAR ── */
.desktop-sidebar{display:none} /* oculta no mobile */
@media(min-width:1024px){
  .desktop-sidebar{display:flex}
  .sidebar-cat-link{
    display:flex;align-items:center;gap:10px;
    padding:10px 0;border-bottom:1px solid var(--border);
    text-decoration:none;color:var(--text);font-size:14px;
    transition:color .2s;
  }
  .sidebar-cat-link:last-child{border-bottom:none}
  .sidebar-cat-link:hover{color:var(--primary)}
  .sidebar-cat-link svg{width:16px;height:16px;stroke:var(--primary);flex-shrink:0}
  .sidebar-cat-count{
    margin-left:auto;font-size:12px;color:var(--text-light);
    background:var(--bg-soft);border-radius:var(--radius-full);
    padding:2px 8px;
  }
  .sidebar-newsletter-form{display:flex;flex-direction:column;gap:8px}
  .sidebar-newsletter-form input{
    width:100%;border:1.5px solid var(--border);border-radius:var(--radius-sm);
    padding:10px 14px;font-size:13px;color:var(--text);outline:none;
    transition:border-color .2s;background:var(--bg);
  }
  .sidebar-newsletter-form input:focus{border-color:var(--primary)}
  .sidebar-newsletter-form button{
    background:var(--primary);color:#fff;border:none;
    border-radius:var(--radius-full);padding:11px;
    font-family:var(--font-title);font-size:14px;font-weight:600;
    cursor:pointer;transition:background .2s;
  }
  .sidebar-newsletter-form button:hover{background:var(--primary-dark)}

  /* Oculta newsletter full no desktop (sidebar já tem versão compacta) */
  .desktop-layout ~ .newsletter-section{display:none}
}

/* ── SHARE POPUP ── */
.share-popup{
  position:fixed;inset:0;
  background:rgba(0,0,0,.5);backdrop-filter:blur(4px);
  z-index:99998;
  display:flex;align-items:flex-end;justify-content:center;
  opacity:0;transition:opacity .25s;
  pointer-events:none;
}
.share-popup.open{opacity:1;pointer-events:auto}
.share-popup-box{
  background:#fff;
  border-radius:24px 24px 0 0;
  width:100%;max-width:480px;
  padding:24px 20px 36px;
  transform:translateY(100%);
  transition:transform .3s cubic-bezier(.34,1.2,.64,1);
}
.share-popup.open .share-popup-box{transform:translateY(0)}
.share-popup-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:24px;
}
.share-popup-head span{
  font-family:var(--font-title);font-size:16px;font-weight:700;color:var(--text);
}
.share-popup-close{
  width:32px;height:32px;border-radius:50%;
  background:var(--bg-soft);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--text-light);padding:0;
  transition:background .15s;
}
.share-popup-close:hover{background:var(--border)}
.share-popup-close svg{width:14px;height:14px}
.share-popup-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.share-item{
  display:flex;flex-direction:column;align-items:center;gap:8px;
  padding:14px 8px;border-radius:14px;
  background:var(--bg-soft);border:1.5px solid var(--border);
  cursor:pointer;text-decoration:none;
  transition:border-color .18s,background .18s,transform .15s;
  font-family:var(--font-title);font-size:11.5px;font-weight:600;color:var(--text);
}
.share-item:hover{transform:translateY(-2px)}
.share-item-icon{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.share-item-icon svg{width:22px;height:22px}
/* cores individuais */
.share-item--whatsapp .share-item-icon{background:#E7F9EE;color:#25D366}
.share-item--whatsapp:hover{border-color:#25D366;background:#f0fdf4}
.share-item--facebook .share-item-icon{background:#EBF0FF;color:#1877F2}
.share-item--facebook:hover{border-color:#1877F2;background:#eff4ff}
.share-item--pinterest .share-item-icon{background:#FFEEF0;color:#E60023}
.share-item--pinterest:hover{border-color:#E60023;background:#fff5f5}
.share-item--x .share-item-icon{background:#F0F0F0;color:#000}
.share-item--x:hover{border-color:#000;background:#f5f5f5}
.share-item--instagram .share-item-icon{background:#FFF0F7;color:#E1306C}
.share-item--instagram:hover{border-color:#E1306C;background:#fff5fa}
.share-item--copy .share-item-icon{background:var(--primary-soft);color:var(--primary)}
.share-item--copy{border:1.5px solid var(--border);background:var(--bg-soft)}
.share-item--copy:hover{border-color:var(--primary);background:var(--primary-soft)}
@media(min-width:540px){
  .share-popup{align-items:center;padding:16px}
  .share-popup-box{border-radius:24px;max-width:420px}
}

