/*
Theme Name:  Café da Gumiho
Theme URI:   https://cafedagumiho.com.br
Author:      Café da Gumiho
Author URI:  https://cafedagumiho.com.br
Description: Tema dark premium rosa/roxo para portal K-pop. Inclui suporte a Custom Post Types para Grupos e Shows, blocos Gutenberg customizados, AdSense integrado e layout responsivo.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cafedagumiho
Tags: dark, kpop, portal, news, magazine, custom-colors, custom-logo, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* ═══════════════════════════════════════════════════════════
   VARIÁVEIS — Paleta rosa/roxo dark premium
═══════════════════════════════════════════════════════════ */
:root {
  --bg:         #0d0d12;
  --bg2:        #13131a;
  --bg3:        #1a1a24;
  --bg4:        #20202d;
  --pink:       #e040a0;
  --pink2:      #f06ab8;
  --pink-dim:   rgba(224, 64, 160, 0.10);
  --pink-glow:  rgba(224, 64, 160, 0.28);
  --purple:     #9b59d0;
  --purple2:    #b87ee0;
  --green:      #00c896;
  --blue:       #4d9fff;
  --yellow:     #ffc837;
  --text:       #f0eaf8;
  --text2:      #a898c0;
  --text3:      #6b5f80;
  --border:     rgba(224, 64, 160, 0.18);
  --border2:    rgba(255, 255, 255, 0.07);
  --border3:    rgba(255, 255, 255, 0.04);
  --serif:      'Playfair Display', serif;
  --sans:       'Inter', sans-serif;
  --radius:     12px;
  --radius-sm:  7px;
  --max-w:      1320px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Noto+Serif+KR:wght@300;400&display=swap');

a            { color: var(--pink2); text-decoration: none; transition: color .18s; }
a:hover      { color: var(--pink); }
img          { display: block; max-width: 100%; height: auto; }
ul, ol       { padding-left: 1.5rem; }

::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13, 13, 18, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border2);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--pink-glow);
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 15px; font-weight: 600; color: var(--text); }
.logo-sub  { font-size: 10px; color: var(--text3); letter-spacing: .06em; text-transform: uppercase; margin-top: 1px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: .15rem; flex: 1; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: .1rem; padding: 0; margin: 0; }

.main-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text2);
  padding: 6px 13px;
  border-radius: 6px;
  transition: color .18s, background .18s;
  display: block;
}
.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--pink); background: var(--pink-dim); }

/* Botão loja no nav */
.nav-loja a {
  color: var(--pink2) !important;
  border: 1px solid rgba(224, 64, 160, .25);
  border-radius: 6px;
  background: var(--pink-dim) !important;
}

.nav-right { display: flex; align-items: center; gap: .75rem; margin-left: auto; }

/* Search form no header */
.header-search form {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg3);
  border: 1px solid var(--border3);
  border-radius: 20px;
  padding: 6px 14px;
  transition: border-color .2s;
}
.header-search form:focus-within { border-color: var(--border); }
.header-search input[type="search"] {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  width: 130px;
}
.header-search input::placeholder { color: var(--text3); }
.header-search button { background: none; border: none; color: var(--text3); cursor: pointer; padding: 0; }

/* Botão newsletter */
.btn-newsletter {
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  padding: 7px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s, box-shadow .2s;
}
.btn-newsletter:hover { opacity: .9; box-shadow: 0 0 18px var(--pink-glow); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   TICKER (Breaking news)
═══════════════════════════════════════════════════════════ */
.news-ticker {
  height: 32px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border3);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker-label {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-track  { display: flex; animation: ticker 34s linear infinite; white-space: nowrap; }
.ticker-item   { font-size: 12px; color: var(--text2); padding: 0 2.5rem; }
.ticker-item a { color: var(--pink2); font-weight: 500; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════
   LAYOUT GERAL
═══════════════════════════════════════════════════════════ */
.site-main  { max-width: var(--max-w); margin: 0 auto; padding: 2.5rem 2rem; }
.content-layout { display: grid; grid-template-columns: 1fr 308px; gap: 2.5rem; align-items: start; }

/* Wrappers de seção */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
}
.section-title::before {
  content: '';
  width: 3px;
  height: 16px;
  background: linear-gradient(to bottom, var(--pink), var(--purple));
  border-radius: 2px;
  flex-shrink: 0;
}
.section-more {
  font-size: 11px;
  font-weight: 500;
  color: var(--text3);
  transition: color .18s;
}
.section-more:hover { color: var(--pink2); }

/* ═══════════════════════════════════════════════════════════
   HERO / POST DESTAQUE
═══════════════════════════════════════════════════════════ */
.hero-post {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg3);
  cursor: pointer;
  margin-bottom: 2rem;
  display: block;
  text-decoration: none;
}
.hero-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero-post:hover img { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,18,.97) 0%, rgba(13,13,18,.3) 55%, transparent 100%);
}
.hero-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
}
.hero-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink2);
  margin-bottom: .85rem;
}
.hero-category::before { content: ''; width: 16px; height: 1.5px; background: var(--pink2); border-radius: 1px; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: .75rem;
  max-width: 560px;
}
.hero-meta { display: flex; align-items: center; gap: .85rem; font-size: 12px; color: var(--text2); flex-wrap: wrap; }
.hero-meta .sep { color: var(--text3); }
.hero-cta {
  position: absolute;
  bottom: 2rem; right: 2rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px var(--pink-glow);
  transition: transform .2s, box-shadow .2s;
}
.hero-post:hover .hero-cta { transform: scale(1.08); box-shadow: 0 0 32px rgba(224,64,160,.5); }

/* ═══════════════════════════════════════════════════════════
   CARDS DE POST
═══════════════════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border3);
  border: 1px solid var(--border3);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.post-card {
  background: var(--bg2);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  text-decoration: none;
  transition: background .18s;
}
.post-card:hover { background: var(--bg3); }

.post-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; }

.post-kicker { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--pink2); }
.post-title  { font-family: var(--serif); font-size: 13.5px; font-weight: 400; line-height: 1.5; color: var(--text); }
.post-meta   { font-size: 11px; color: var(--text3); margin-top: auto; }

/* Grid 3 colunas */
.posts-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ═══════════════════════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════════════════════ */
.single-layout { display: grid; grid-template-columns: 1fr 308px; gap: 2.5rem; }

.article-header { padding: 2rem 0 1.75rem; border-bottom: 1px solid var(--border3); margin-bottom: 2rem; }
.article-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink2); margin-bottom: 1rem;
}
.article-kicker::before { content: ''; width: 16px; height: 1.5px; background: var(--pink2); border-radius: 1px; }

.article-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.article-excerpt {
  font-size: 17px; color: var(--text2); line-height: 1.7;
  font-style: italic; font-family: var(--serif);
  border-left: 3px solid var(--pink); padding-left: 1.1rem;
  margin-bottom: 1.5rem;
}

.article-meta {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; padding-top: 1.25rem;
  border-top: 1px solid var(--border3);
  font-size: 12px; color: var(--text2);
}
.article-author {
  display: flex; align-items: center; gap: .65rem;
}
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-dim), rgba(155,89,208,.1));
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 600; color: var(--text); display: block; }
.author-role { font-size: 11px; color: var(--text3); }
.meta-sep { color: var(--text3); }

/* Corpo do artigo */
.entry-content { font-size: 16px; line-height: 1.9; color: var(--text2); }
.entry-content p         { margin-bottom: 1.5rem; }
.entry-content h2        { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--text); margin: 2.5rem 0 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--border3); }
.entry-content h3        { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--text); margin: 2rem 0 .75rem; }
.entry-content a         { color: var(--pink2); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover   { color: var(--pink); }
.entry-content strong    { color: var(--text); font-weight: 600; }
.entry-content blockquote { border-left: 3px solid var(--pink); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--bg2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--serif); font-size: 17px; color: var(--text); font-style: italic; }
.entry-content img       { border-radius: var(--radius-sm); margin: 2rem 0; }
.entry-content ul, .entry-content ol { margin-bottom: 1.5rem; }
.entry-content li        { margin-bottom: .5rem; }
.entry-content hr        { border: none; border-top: 1px solid var(--border3); margin: 2.5rem 0; }

/* Paginação */
.posts-pagination { display: flex; gap: 5px; justify-content: center; margin-top: 2rem; }
.posts-pagination a, .posts-pagination span {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border2); background: var(--bg2); color: var(--text2);
  transition: all .18s; text-decoration: none;
}
.posts-pagination a:hover       { border-color: var(--border); color: var(--pink2); }
.posts-pagination .current      { background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border-color: transparent; }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 80px; }

.widget {
  background: var(--bg2);
  border: 1px solid var(--border3);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text2);
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--border3);
  display: flex;
  align-items: center;
  gap: 7px;
}
.widget-title::before {
  content: '';
  width: 2px; height: 12px;
  background: linear-gradient(to bottom, var(--pink), var(--purple));
  border-radius: 1px;
}
.widget-content { padding: 1rem 1.2rem; }

/* Posts recentes no widget */
.widget-post { display: flex; gap: .75rem; padding: .65rem 1.2rem; border-bottom: 1px solid var(--border3); text-decoration: none; transition: background .15s; }
.widget-post:last-child { border-bottom: none; }
.widget-post:hover { background: var(--bg3); }
.widget-post-thumb { width: 56px; height: 40px; border-radius: 5px; overflow: hidden; background: var(--bg3); flex-shrink: 0; }
.widget-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-post-title { font-size: 12.5px; font-weight: 500; color: var(--text); line-height: 1.35; }
.widget-post-meta  { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* Newsletter widget */
.widget-newsletter {
  background: linear-gradient(135deg, rgba(224,64,160,.14), rgba(155,89,208,.08), transparent);
  border: 1px solid rgba(224,64,160,.2);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}
.widget-newsletter::after {
  content: '🦊';
  position: absolute; right: -8px; top: -8px;
  font-size: 72px; opacity: .07; pointer-events: none; line-height: 1;
}
.widget-newsletter h3 { font-family: var(--serif); font-size: 17px; font-weight: 700; margin-bottom: .4rem; }
.widget-newsletter p  { font-size: 12px; color: var(--text2); line-height: 1.55; margin-bottom: 1rem; }
.widget-newsletter input {
  width: 100%; background: var(--bg); border: 1px solid var(--border2);
  border-radius: 7px; padding: 9px 12px; font-family: var(--sans); font-size: 13px;
  color: var(--text); outline: none; margin-bottom: 6px;
}
.widget-newsletter input::placeholder { color: var(--text3); }
.widget-newsletter button {
  width: 100%; background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; border-radius: 7px; padding: 9px;
  font-family: var(--sans); font-size: 13px; font-weight: 600; cursor: pointer;
}

/* Tags cloud */
.tag-cloud { padding: .85rem 1.2rem; display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud a {
  font-size: 11.5px; font-weight: 500; padding: 4px 11px;
  border-radius: 20px; border: 1px solid var(--border2);
  background: var(--bg3); color: var(--text2);
  transition: all .18s; text-decoration: none;
}
.tag-cloud a:hover { border-color: var(--border); color: var(--pink2); background: var(--pink-dim); }

/* AdSense widget */
.ad-widget {
  background: var(--bg2);
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ad-widget::before {
  content: 'ANÚNCIO';
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 600; letter-spacing: .12em;
  color: var(--text3); opacity: .4;
}

/* ═══════════════════════════════════════════════════════════
   CATEGORY PILLS
═══════════════════════════════════════════════════════════ */
.cat-pills {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border3);
}
.cat-pill {
  font-size: 12px; font-weight: 500; padding: 6px 14px;
  border-radius: 20px; border: 1px solid var(--border2);
  background: var(--bg2); color: var(--text2);
  text-decoration: none; transition: all .18s;
}
.cat-pill:hover     { border-color: var(--border); color: var(--text); background: var(--bg3); }
.cat-pill.current   { border-color: var(--pink); color: var(--pink); background: var(--pink-dim); }

/* ═══════════════════════════════════════════════════════════
   CUSTOM POST TYPE — GRUPOS
═══════════════════════════════════════════════════════════ */
.grupo-header {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--bg2);
  margin-bottom: 2rem;
}
.grupo-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 30%, rgba(224,64,160,.35), transparent 55%),
              linear-gradient(170deg, #160e20, #0d0d12);
}
.grupo-header-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: flex-end; gap: 1.5rem;
}
.grupo-avatar {
  width: 90px; height: 90px; border-radius: var(--radius);
  border: 3px solid var(--pink); box-shadow: 0 0 24px var(--pink-glow);
  overflow: hidden; flex-shrink: 0; background: var(--bg3);
}
.grupo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.grupo-name { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: .35rem; }
.grupo-empresa { font-size: 14px; color: var(--text2); }

/* ═══════════════════════════════════════════════════════════
   CUSTOM POST TYPE — EVENTOS
═══════════════════════════════════════════════════════════ */
.evento-card {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 1.25rem; align-items: center;
  background: var(--bg2); border: 1px solid var(--border3);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-bottom: 1px; transition: background .18s;
}
.evento-card:hover { background: var(--bg3); }
.evento-date { text-align: center; border-radius: var(--radius-sm); padding: .6rem .4rem; }
.evento-day  { font-size: 24px; font-weight: 700; color: var(--pink2); line-height: 1; }
.evento-month{ font-size: 9px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text3); margin-top: 2px; }
.evento-title{ font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: .25rem; }
.evento-info { font-size: 12px; color: var(--text2); }
.btn-ticket  {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; border-radius: 20px;
  padding: 8px 18px; font-family: var(--sans); font-size: 12px;
  font-weight: 600; cursor: pointer; white-space: nowrap;
  text-decoration: none; display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   AFILIADO BANNER
═══════════════════════════════════════════════════════════ */
.affiliate-banner {
  width: 100%;
  background: linear-gradient(135deg, rgba(224,64,160,.18), rgba(155,89,208,.14));
  border: 1px solid rgba(224,64,160,.22);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  margin: 1.75rem 0; cursor: pointer;
  transition: border-color .2s; text-decoration: none;
}
.affiliate-banner:hover { border-color: rgba(224,64,160,.42); }
.affiliate-icon  { font-size: 36px; flex-shrink: 0; }
.affiliate-body  { flex: 1; }
.affiliate-label { font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--pink2); margin-bottom: 3px; }
.affiliate-title { font-size: 14px; font-weight: 600; color: var(--text); }
.affiliate-sub   { font-size: 12px; color: var(--text2); margin-top: 2px; }
.affiliate-cta   {
  flex-shrink: 0; background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; border-radius: 20px; padding: 8px 18px;
  font-family: var(--sans); font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--border3);
  background: var(--bg2);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2rem 1.5rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p  { font-size: 13px; color: var(--text2); line-height: 1.65; max-width: 260px; margin: .65rem 0 1rem; }
.social-links    { display: flex; gap: 7px; }
.social-link     { width: 34px; height: 34px; border-radius: 8px; background: var(--bg3); border: 1px solid var(--border3); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all .2s; text-decoration: none; color: var(--text2); }
.social-link:hover { border-color: var(--border); background: var(--pink-dim); }
.footer-col h4   { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text2); margin-bottom: .9rem; }
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 7px; padding: 0; }
.footer-col a    { font-size: 13px; color: var(--text3); transition: color .18s; }
.footer-col a:hover { color: var(--pink2); }
.footer-bottom   {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.1rem 2rem;
  border-top: 1px solid var(--border3);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text3);
}
.footer-bottom b { background: linear-gradient(135deg, var(--pink), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .content-layout, .single-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .posts-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { height: 56px; gap: 1rem; }
  .main-nav     { display: none; }
  .site-main    { padding: 1.5rem 1rem; }
  .posts-grid   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom{ flex-direction: column; gap: .5rem; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   BLOCOS GUTENBERG CUSTOMIZADOS
═══════════════════════════════════════════════════════════ */
.wp-block-cdg-highlight {
  background: linear-gradient(135deg, rgba(224,64,160,.1), rgba(155,89,208,.07));
  border: 1px solid rgba(224,64,160,.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.wp-block-cdg-highlight .cdg-highlight-label {
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--pink2); margin-bottom: .6rem;
}

/* Comentários */
.comment-list    { list-style: none; padding: 0; }
.comment         { background: var(--bg2); border: 1px solid var(--border3); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.comment-author  { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: .25rem; }
.comment-meta    { font-size: 11px; color: var(--text3); margin-bottom: .75rem; }
.comment-content { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* Formulário de comentário */
.comment-form input, .comment-form textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-family: var(--sans); font-size: 14px; color: var(--text); outline: none;
  margin-bottom: .75rem;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--pink); }
.comment-form input[type="submit"] {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; border: none; cursor: pointer; font-weight: 600;
  border-radius: 20px; padding: 10px 24px; width: auto;
}
