/* ═══════════════════════════════════════════
   Pô Birigui — main.css v1.0.0
   Portal de Notícias — Birigui, SP
═══════════════════════════════════════════ */

:root {
  --po-red:        #D62828;
  --po-red-dark:   #A31F1F;
  --po-red-light:  #F5E6E6;
  --po-black:      #0A0A0A;
  --po-gray-900:   #111111;
  --po-gray-800:   #1C1C1C;
  --po-gray-700:   #2E2E2E;
  --po-gray-600:   #444444;
  --po-gray-500:   #666666;
  --po-gray-400:   #888888;
  --po-gray-300:   #BBBBBB;
  --po-gray-200:   #DEDEDE;
  --po-gray-100:   #F0F0F0;
  --po-gray-50:    #F8F8F6;
  --po-white:      #FFFFFF;
  --po-gold:       #C9952A;
  --po-gold-light: #FDF5E4;
  --po-silver:     #6B7280;
  --po-font-head:  'Sora', sans-serif;
  --po-font-body:  'Lora', serif;
  --po-radius:     4px;
  --po-radius-md:  8px;
  --po-radius-lg:  12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--po-font-body); font-size: 16px; color: var(--po-gray-800); background: var(--po-gray-50); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CONTAINER ── */
.po-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.po-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 32px 0; }
@media (max-width: 900px) { .po-layout { grid-template-columns: 1fr; } }

/* ── TOPBAR ── */
.po-topbar { background: var(--po-black); color: var(--po-gray-300); font-family: var(--po-font-head); font-size: 11px; letter-spacing: .05em; padding: 6px 0; border-bottom: 2px solid var(--po-red); }
.po-topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.po-topbar__date { color: var(--po-gray-400); }
.po-topbar__links { display: flex; gap: 20px; align-items: center; }
.po-topbar__links a:hover { color: var(--po-white); }
.po-topbar__social { display: flex; gap: 8px; }
.po-topbar__social a { width: 24px; height: 24px; background: var(--po-gray-700); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; transition: background .2s; }
.po-topbar__social a:hover { background: var(--po-red); }

/* ── HEADER ── */
.po-header { background: var(--po-white); border-bottom: 1px solid var(--po-gray-200); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.po-header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.po-logo a { font-family: var(--po-font-head); font-weight: 800; font-size: 28px; color: var(--po-black); letter-spacing: -.03em; }
.po-logo a span { color: var(--po-red); }
.po-logo a em { font-style: normal; font-size: 13px; font-weight: 400; color: var(--po-gray-500); display: block; letter-spacing: .08em; margin-top: -4px; }
.po-header__search { flex: 1; max-width: 380px; position: relative; }
.po-header__search input { width: 100%; padding: 9px 16px 9px 40px; border: 1.5px solid var(--po-gray-200); border-radius: var(--po-radius-md); font-family: var(--po-font-head); font-size: 13px; background: var(--po-gray-50); color: var(--po-gray-800); outline: none; transition: border-color .2s; }
.po-header__search input:focus { border-color: var(--po-red); }
.po-search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--po-gray-400); font-size: 15px; }
.po-header__cta { display: flex; gap: 10px; align-items: center; }

/* ── HAMBURGER ── */
.po-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.po-hamburger span { display: block; width: 24px; height: 2px; background: var(--po-gray-800); border-radius: 2px; transition: all .3s; }
@media (max-width: 768px) { .po-hamburger { display: flex; } }

/* ── BUTTONS ── */
.po-btn { font-family: var(--po-font-head); font-weight: 600; font-size: 12px; letter-spacing: .04em; padding: 9px 18px; border-radius: var(--po-radius); border: none; cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.po-btn--red { background: var(--po-red); color: white; }
.po-btn--red:hover { background: var(--po-red-dark); }
.po-btn--whatsapp { background: #22C55E; color: white; }
.po-btn--whatsapp:hover { background: #16A34A; }
.po-btn--outline { background: transparent; color: var(--po-gray-700); border: 1.5px solid var(--po-gray-200); }
.po-btn--outline:hover { border-color: var(--po-red); color: var(--po-red); }
.po-btn--full { width: 100%; justify-content: center; }
.po-btn--sm { padding: 7px 14px; font-size: 11px; }
.po-btn-white { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--po-red); font-family: var(--po-font-head); font-weight: 700; font-size: 13px; padding: 12px 28px; border-radius: var(--po-radius); border: none; cursor: pointer; transition: all .2s; margin-top: 24px; }
.po-btn-white:hover { background: var(--po-gray-100); }

/* ── NAV ── */
.po-nav { background: var(--po-black); border-bottom: 3px solid var(--po-red); }
.po-nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.po-nav__menu { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; list-style: none; }
.po-nav__menu::-webkit-scrollbar { display: none; }
.po-nav__menu li a { display: block; font-family: var(--po-font-head); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--po-gray-300); padding: 14px 16px; white-space: nowrap; border-bottom: 3px solid transparent; margin-bottom: -3px; transition: all .2s; }
.po-nav__menu li a:hover, .po-nav__menu li.current-menu-item a { color: var(--po-white); border-color: var(--po-red); }
.po-nav__badge { background: var(--po-red); color: white; font-size: 9px; padding: 1px 5px; border-radius: 3px; margin-left: 4px; vertical-align: middle; }

/* ── BREAKING NEWS ── */
.po-breaking { background: var(--po-red); color: white; font-family: var(--po-font-head); font-size: 12px; padding: 8px 0; overflow: hidden; }
.po-breaking__inner { display: flex; align-items: center; gap: 16px; }
.po-breaking__label { background: white; color: var(--po-red); font-weight: 800; font-size: 10px; letter-spacing: .1em; padding: 3px 10px; border-radius: 2px; flex-shrink: 0; text-transform: uppercase; }
.po-breaking__ticker { overflow: hidden; white-space: nowrap; flex: 1; }
.po-breaking__ticker span { display: inline-block; animation: po-ticker 40s linear infinite; }
@keyframes po-ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── SECTION HEADERS ── */
.po-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--po-gray-200); }
.po-section-title { font-family: var(--po-font-head); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--po-gray-800); display: flex; align-items: center; gap: 10px; }
.po-section-title::before { content: ''; display: block; width: 3px; height: 18px; background: var(--po-red); border-radius: 2px; }
.po-section-link { font-family: var(--po-font-head); font-size: 11px; font-weight: 600; letter-spacing: .05em; color: var(--po-red); text-transform: uppercase; }
.po-section-link:hover { text-decoration: underline; }
.po-section-card { background: var(--po-white); border: 1px solid var(--po-gray-200); border-radius: var(--po-radius-md); padding: 24px; margin-bottom: 32px; }

/* ── HERO ── */
.po-hero-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 3px; margin-bottom: 32px; border-radius: var(--po-radius-md); overflow: hidden; }
.po-hero-main { grid-column: 1; grid-row: 1/3; position: relative; min-height: 380px; background: var(--po-gray-800); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.po-hero-side { position: relative; min-height: 188px; background: var(--po-gray-700); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.po-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--po-gray-700); }
.po-hero-img--placeholder { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b1b 100%); }
.po-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 60%, transparent 100%); }
.po-hero-content { position: relative; z-index: 1; padding: 24px; color: white; }
.po-hero-side .po-hero-content { padding: 16px; }
.po-hero-cat { display: inline-block; font-family: var(--po-font-head); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--po-red); color: white; padding: 4px 10px; border-radius: 2px; margin-bottom: 10px; }
.po-hero-main h2 { font-family: var(--po-font-head); font-size: 22px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; color: white; }
.po-hero-main h2 a { color: white; }
.po-hero-side h3 { font-family: var(--po-font-head); font-size: 14px; font-weight: 600; color: white; line-height: 1.35; position: relative; z-index: 1; }
.po-hero-side h3 a { color: white; }
.po-hero-meta { font-family: var(--po-font-head); font-size: 11px; color: rgba(255,255,255,.6); display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) { .po-hero-grid { grid-template-columns: 1fr; } .po-hero-main { grid-row: auto; min-height: 280px; } }

/* ── NEWS LIST ── */
.po-news-list { display: flex; flex-direction: column; }
.po-news-item { display: grid; grid-template-columns: 100px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--po-gray-200); }
.po-news-item:first-child { padding-top: 0; }
.po-news-item:last-child { border-bottom: none; }
.po-news-thumb { width: 100px; height: 72px; border-radius: var(--po-radius); overflow: hidden; flex-shrink: 0; display: block; }
.po-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.po-news-thumb-placeholder { width: 100%; height: 100%; background: var(--po-gray-100); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.po-news-cat { font-family: var(--po-font-head); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--po-red); margin-bottom: 5px; }
.po-news-title { font-family: var(--po-font-head); font-size: 14px; font-weight: 600; color: var(--po-gray-900); line-height: 1.4; margin-bottom: 6px; }
.po-news-title a { color: inherit; }
.po-news-title a:hover { color: var(--po-red); }
.po-news-time { font-family: var(--po-font-head); font-size: 11px; color: var(--po-gray-400); }

/* ── SIDEBAR ── */
.po-sidebar { display: flex; flex-direction: column; gap: 24px; }
.po-sidebar-card { background: var(--po-white); border-radius: var(--po-radius-md); border: 1px solid var(--po-gray-200); overflow: hidden; }
.po-sidebar-card__head { background: var(--po-black); padding: 12px 16px; font-family: var(--po-font-head); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--po-white); border-bottom: 2px solid var(--po-red); }
.po-sidebar-card__body { padding: 16px; }

/* ── WEATHER ── */
.po-weather { display: flex; align-items: center; gap: 16px; padding: 16px; }
.po-weather__icon { font-size: 42px; line-height: 1; }
.po-weather__temp { font-family: var(--po-font-head); font-size: 36px; font-weight: 700; color: var(--po-gray-900); line-height: 1; }
.po-weather__desc { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-500); margin-top: 3px; }
.po-weather__city { font-family: var(--po-font-head); font-size: 11px; font-weight: 600; color: var(--po-red); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }
.po-weather__details { padding: 0 16px 16px; font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-500); display: flex; justify-content: space-between; }

/* ── POLL ── */
.po-poll__question { font-family: var(--po-font-head); font-size: 14px; font-weight: 600; color: var(--po-gray-800); margin-bottom: 14px; line-height: 1.4; }
.po-poll__option { margin-bottom: 10px; }
.po-poll__label { display: flex; justify-content: space-between; font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-700); margin-bottom: 5px; }
.po-poll__bar-bg { height: 6px; background: var(--po-gray-100); border-radius: 3px; overflow: hidden; }
.po-poll__bar { height: 100%; background: var(--po-red); border-radius: 3px; transition: width .8s ease; }
.po-poll__meta { font-family: var(--po-font-head); font-size: 11px; color: var(--po-gray-400); margin-top: 12px; }

/* ── UTILITY ── */
.po-utility-list { display: flex; flex-direction: column; gap: 8px; }
.po-utility-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: var(--po-gray-50); border-radius: var(--po-radius); border: 1px solid var(--po-gray-100); }
.po-utility-icon { width: 32px; height: 32px; border-radius: var(--po-radius); background: var(--po-red-light); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.po-utility-name { font-family: var(--po-font-head); font-size: 12px; font-weight: 600; color: var(--po-gray-800); }
.po-utility-detail { font-family: var(--po-font-head); font-size: 11px; color: var(--po-gray-500); }
.po-utility-sponsor { font-family: var(--po-font-head); font-size: 10px; color: var(--po-gray-400); text-align: center; margin-top: 12px; }

/* ── COLUMNIST ── */
.po-columnist-list { display: flex; flex-direction: column; gap: 12px; }
.po-columnist-item { display: flex; align-items: center; gap: 12px; color: inherit; }
.po-columnist-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--po-red-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--po-font-head); font-size: 15px; font-weight: 700; color: var(--po-red); overflow: hidden; }
.po-columnist-avatar__img { width: 100%; height: 100%; object-fit: cover; }
.po-columnist-name { font-family: var(--po-font-head); font-size: 13px; font-weight: 600; color: var(--po-gray-800); line-height: 1.3; }
.po-columnist-column { font-family: var(--po-font-head); font-size: 11px; color: var(--po-gray-400); margin-top: 1px; }

/* ── PÔ+ ── */
.po-poplus-section { background: var(--po-white); border: 1px solid var(--po-gray-200); border-radius: var(--po-radius-md); padding: 24px; margin-bottom: 32px; }
.po-poplus-desc { font-family: var(--po-font-head); font-size: 13px; color: var(--po-gray-500); }
.po-poplus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 20px; }
.po-poplus-card { border: 1px solid var(--po-gray-200); border-radius: var(--po-radius-md); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.po-poplus-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.po-poplus-card a { display: block; color: inherit; }
.po-poplus-thumb { height: 130px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); background-size: cover; background-position: center; position: relative; }
.po-poplus-badge { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.7); color: white; font-family: var(--po-font-head); font-size: 9px; font-weight: 700; letter-spacing: .1em; padding: 3px 8px; border-radius: 2px; text-transform: uppercase; }
.po-poplus-info { padding: 14px; }
.po-poplus-seg { font-family: var(--po-font-head); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--po-gray-400); margin-bottom: 6px; }
.po-poplus-title { font-family: var(--po-font-head); font-size: 13px; font-weight: 600; color: var(--po-gray-800); line-height: 1.4; }

/* ── VOCÊ REPÓRTER ── */
.po-reporter-section { background: var(--po-white); border: 1px solid var(--po-gray-200); border-radius: var(--po-radius-md); padding: 24px; margin-bottom: 32px; }
.po-reporter-desc { font-family: var(--po-font-head); font-size: 13px; color: var(--po-gray-500); }
.po-reporter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
@media (max-width: 600px) { .po-reporter-grid { grid-template-columns: 1fr; } }
.po-reporter-card { background: var(--po-gray-50); border: 1px solid var(--po-gray-200); border-radius: var(--po-radius-md); padding: 20px; text-align: center; cursor: pointer; transition: all .2s; display: block; color: inherit; }
.po-reporter-card:hover { border-color: var(--po-red); background: var(--po-red-light); }
.po-reporter-icon { font-size: 32px; margin-bottom: 10px; }
.po-reporter-name { font-family: var(--po-font-head); font-size: 14px; font-weight: 600; color: var(--po-gray-800); margin-bottom: 5px; }
.po-reporter-desc-card { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-500); }

/* ── GUIA HERO ── */
.po-guia-hero { background: var(--po-gray-900); color: white; padding: 60px 0 40px; }
.po-guia-hero__eyebrow { font-family: var(--po-font-head); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--po-red); margin-bottom: 10px; }
.po-guia-hero__title { font-family: var(--po-font-head); font-size: 36px; font-weight: 800; color: white; margin-bottom: 12px; }
.po-guia-hero__sub { font-family: var(--po-font-head); font-size: 15px; color: var(--po-gray-300); margin-bottom: 28px; }
.po-guia-search { display: flex; gap: 10px; max-width: 500px; }
.po-guia-search input { flex: 1; padding: 12px 18px; border: 1.5px solid var(--po-gray-600); border-radius: var(--po-radius); background: var(--po-gray-800); color: white; font-family: var(--po-font-head); font-size: 14px; outline: none; }
.po-guia-search input:focus { border-color: var(--po-red); }
.po-guia-search button { background: var(--po-red); color: white; border: none; padding: 12px 24px; border-radius: var(--po-radius); font-family: var(--po-font-head); font-weight: 700; font-size: 13px; cursor: pointer; }

/* ── GUIA CATEGORIAS ── */
.po-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; }
.po-cat-item { background: var(--po-gray-800); border: 1px solid var(--po-gray-700); border-radius: var(--po-radius-md); padding: 16px 10px; text-align: center; cursor: pointer; transition: all .2s; display: block; color: inherit; }
.po-cat-item:hover, .po-cat-item--active { background: var(--po-red); border-color: var(--po-red); }
.po-cat-icon { font-size: 24px; margin-bottom: 6px; }
.po-cat-name { font-family: var(--po-font-head); font-size: 11px; font-weight: 600; color: var(--po-gray-300); }
.po-cat-count { font-family: var(--po-font-head); font-size: 10px; color: var(--po-gray-500); margin-top: 2px; }
.po-cat-item:hover .po-cat-name, .po-cat-item--active .po-cat-name { color: white; }

/* ── EMPRESA CARDS ── */
.po-guia-cta-bar { display: flex; justify-content: space-between; align-items: center; background: var(--po-red-light); border: 1px solid var(--po-red); border-radius: var(--po-radius-md); padding: 14px 20px; margin-bottom: 24px; font-family: var(--po-font-head); font-size: 14px; font-weight: 600; color: var(--po-red-dark); }
.po-guia-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 32px; }
.po-empresa-card { background: var(--po-white); border: 1px solid var(--po-gray-200); border-radius: var(--po-radius-lg); overflow: hidden; position: relative; transition: box-shadow .2s, transform .2s; }
.po-empresa-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.po-empresa-card--ouro { border: 2px solid var(--po-gold); }
.po-empresa-card--prata { border: 2px solid var(--po-silver); }
.po-empresa-seal { font-family: var(--po-font-head); font-size: 10px; font-weight: 700; padding: 6px 12px; text-align: center; }
.po-empresa-seal--ouro { background: var(--po-gold-light); color: var(--po-gold); }
.po-empresa-seal--prata { background: var(--po-silver-light); color: var(--po-silver); }
.po-empresa-thumb { height: 160px; background: var(--po-gray-100) center/cover no-repeat; }
.po-empresa-info { padding: 16px; }
.po-empresa-cat { font-family: var(--po-font-head); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--po-red); margin-bottom: 6px; }
.po-empresa-name { font-family: var(--po-font-head); font-size: 16px; font-weight: 700; color: var(--po-gray-900); margin-bottom: 8px; line-height: 1.3; }
.po-empresa-name a { color: inherit; }
.po-empresa-excerpt { font-size: 13px; color: var(--po-gray-500); margin-bottom: 10px; line-height: 1.5; }
.po-empresa-details { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.po-empresa-details span { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-600); }
.po-empresa-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── PLANS ── */
.po-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .po-plans-grid { grid-template-columns: 1fr; } }
.po-plan-card { background: var(--po-white); border: 1px solid var(--po-gray-200); border-radius: var(--po-radius-lg); padding: 28px 24px; position: relative; transition: transform .2s; }
.po-plan-card:hover { transform: translateY(-4px); }
.po-plan-card--featured { border: 2px solid var(--po-gold); }
.po-plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--po-gold); color: var(--po-black); font-family: var(--po-font-head); font-size: 10px; font-weight: 800; letter-spacing: .08em; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; white-space: nowrap; }
.po-plan-name { font-family: var(--po-font-head); font-size: 14px; font-weight: 700; color: var(--po-gray-800); margin-bottom: 10px; }
.po-plan-price { margin-bottom: 20px; }
.po-price-amount { font-family: var(--po-font-head); font-size: 36px; font-weight: 800; color: var(--po-gray-900); line-height: 1; }
.po-price-free { font-family: var(--po-font-head); font-size: 28px; font-weight: 800; color: var(--po-gray-900); }
.po-price-period { font-family: var(--po-font-head); font-size: 13px; color: var(--po-gray-400); margin-left: 4px; }
.po-plan-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.po-plan-features li { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-600); display: flex; gap: 8px; align-items: flex-start; }
.po-plan-features li::before { content: '✓'; color: var(--po-red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.po-plan-cta { display: block; width: 100%; padding: 12px; font-family: var(--po-font-head); font-size: 13px; font-weight: 700; border-radius: var(--po-radius); border: none; cursor: pointer; transition: all .2s; letter-spacing: .04em; text-align: center; }
.po-plan-cta--free { background: var(--po-gray-100); color: var(--po-gray-600); }
.po-plan-cta--free:hover { background: var(--po-gray-200); }
.po-plan-cta--silver { background: var(--po-silver); color: white; }
.po-plan-cta--silver:hover { background: #555; }
.po-plan-cta--gold { background: var(--po-gold); color: var(--po-black); }
.po-plan-cta--gold:hover { background: #b8841e; }

/* ── MEDIA KIT ── */
.po-mediakit-hero { background: var(--po-red); color: white; padding: 60px 0; }
.po-mediakit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .po-mediakit-inner { grid-template-columns: 1fr; gap: 32px; } }
.po-mediakit-eyebrow { font-family: var(--po-font-head); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.po-mediakit-title { font-family: var(--po-font-head); font-size: 36px; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px; }
.po-mediakit-desc { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 28px; }
.po-mk-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.po-mk-stat { background: rgba(255,255,255,.1); border-radius: var(--po-radius-md); padding: 16px; }
.po-mk-num { font-family: var(--po-font-head); font-size: 28px; font-weight: 800; color: white; line-height: 1; }
.po-mk-label { font-family: var(--po-font-head); font-size: 11px; color: rgba(255,255,255,.65); margin-top: 4px; }
.po-formats-title { font-family: var(--po-font-head); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.po-format-list { display: flex; flex-direction: column; gap: 10px; }
.po-format-item { background: rgba(255,255,255,.1); border-radius: var(--po-radius); padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
.po-format-name { font-family: var(--po-font-head); font-size: 13px; color: white; font-weight: 500; }
.po-format-size { font-family: var(--po-font-head); font-size: 11px; color: rgba(255,255,255,.55); }
.po-format-price { font-family: var(--po-font-head); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }

/* ── SINGLE POST ── */
.po-single { max-width: 800px; }
.po-breadcrumb { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-400); margin-bottom: 20px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.po-breadcrumb a:hover { color: var(--po-red); }
.po-single__header { margin-bottom: 24px; }
.po-single__cat { font-family: var(--po-font-head); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.po-single__title { font-family: var(--po-font-head); font-size: 32px; font-weight: 800; line-height: 1.2; color: var(--po-gray-900); margin-bottom: 14px; }
.po-single__excerpt { font-size: 18px; color: var(--po-gray-600); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.po-single__meta { display: flex; gap: 16px; align-items: center; font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-500); flex-wrap: wrap; margin-bottom: 16px; }
.po-single__author { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--po-gray-700); }
.po-author-avatar { border-radius: 50%; }
.po-single__share { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.po-share-label { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-500); }
.po-share-btn { font-family: var(--po-font-head); font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: var(--po-radius); color: white; }
.po-share-btn--fb { background: #1877F2; }
.po-share-btn--wa { background: #22C55E; }
.po-share-btn--tw { background: #1DA1F2; }
.po-single__thumb { margin-bottom: 24px; border-radius: var(--po-radius-md); overflow: hidden; }
.po-single__thumb img { width: 100%; height: auto; max-height: 500px; object-fit: cover; }
.po-single__caption { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-400); text-align: center; padding: 8px; }
.po-single__content { line-height: 1.8; color: var(--po-gray-800); }
.po-single__content p { margin-bottom: 1.2em; }
.po-single__content h2, .po-single__content h3 { font-family: var(--po-font-head); font-weight: 700; margin: 1.5em 0 0.5em; color: var(--po-gray-900); }
.po-single__content h2 { font-size: 22px; }
.po-single__content h3 { font-size: 18px; }
.po-single__content blockquote { border-left: 3px solid var(--po-red); padding-left: 20px; margin: 1.5em 0; font-style: italic; color: var(--po-gray-600); }
.po-single__tags { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--po-gray-200); }
.po-tags-label { font-family: var(--po-font-head); font-size: 12px; font-weight: 600; color: var(--po-gray-500); }
.po-tag { font-family: var(--po-font-head); font-size: 12px; background: var(--po-gray-100); color: var(--po-gray-600); padding: 5px 12px; border-radius: 20px; }
.po-tag:hover { background: var(--po-red-light); color: var(--po-red); }
.po-single__share--bottom { padding: 20px 0; border-top: 1px solid var(--po-gray-200); margin-top: 20px; }

/* ── RELATED ── */
.po-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 16px; }
@media (max-width: 600px) { .po-related-grid { grid-template-columns: 1fr; } }
.po-related-item a { display: block; color: inherit; }
.po-related-thumb { height: 120px; background: var(--po-gray-200) center/cover no-repeat; border-radius: var(--po-radius); margin-bottom: 10px; }
.po-related-info h3 { font-family: var(--po-font-head); font-size: 13px; font-weight: 600; color: var(--po-gray-900); line-height: 1.4; margin-bottom: 5px; }
.po-related-info h3:hover { color: var(--po-red); }
.po-related-info span { font-family: var(--po-font-head); font-size: 11px; color: var(--po-gray-400); }

/* ── PWA BANNER ── */
.po-pwa-banner { background: var(--po-black); padding: 16px 20px; border-radius: var(--po-radius-md); display: flex; align-items: center; gap: 16px; margin-bottom: 24px; border: 1px solid var(--po-gray-700); }
.po-pwa-icon { width: 52px; height: 52px; background: var(--po-red); border-radius: var(--po-radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.po-pwa-title { font-family: var(--po-font-head); font-size: 14px; font-weight: 700; color: white; margin-bottom: 2px; }
.po-pwa-desc { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-400); }
.po-pwa-toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%); background: var(--po-black); color: white; border-radius: var(--po-radius-lg); padding: 14px 18px; display: flex; align-items: center; gap: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.4); z-index: 998; max-width: 380px; width: calc(100% - 40px); border: 1px solid var(--po-gray-700); }
.po-pwa-toast__icon { font-size: 28px; flex-shrink: 0; }
.po-pwa-toast__text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.po-pwa-toast__text strong { font-family: var(--po-font-head); font-size: 13px; }
.po-pwa-toast__text span { font-family: var(--po-font-head); font-size: 11px; color: var(--po-gray-400); }
.po-pwa-toast__btn { background: var(--po-red); color: white; border: none; padding: 8px 16px; border-radius: var(--po-radius); font-family: var(--po-font-head); font-size: 12px; font-weight: 700; cursor: pointer; flex-shrink: 0; }
.po-pwa-toast__close { background: none; border: none; color: var(--po-gray-400); cursor: pointer; font-size: 16px; padding: 4px; flex-shrink: 0; }

/* ── AD WRAP ── */
.po-ad-wrap { text-align: center; margin-bottom: 24px; }
.po-ad-wrap img { margin: 0 auto; }

/* ── WHATSAPP FLOAT ── */
.po-whatsapp-float { position: fixed; bottom: 24px; right: 24px; background: #22C55E; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 4px 20px rgba(34,197,94,.4); cursor: pointer; z-index: 999; transition: transform .2s, box-shadow .2s; text-decoration: none; }
.po-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(34,197,94,.5); }

/* ── FOOTER ── */
.po-footer { background: var(--po-black); color: var(--po-gray-400); padding: 48px 0 24px; border-top: 3px solid var(--po-red); margin-top: 48px; }
.po-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .po-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.po-footer__logo { font-family: var(--po-font-head); font-size: 26px; font-weight: 800; color: white; margin-bottom: 12px; }
.po-footer__logo span { color: var(--po-red); }
.po-footer__desc { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-500); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.po-footer__social { display: flex; gap: 10px; }
.po-footer__social a { width: 36px; height: 36px; background: var(--po-gray-800); border-radius: var(--po-radius); display: flex; align-items: center; justify-content: center; font-family: var(--po-font-head); font-size: 11px; font-weight: 700; color: var(--po-gray-400); transition: all .2s; }
.po-footer__social a:hover { background: var(--po-red); color: white; }
.po-footer__col-title { font-family: var(--po-font-head); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--po-gray-200); margin-bottom: 14px; }
.po-footer__links { display: flex; flex-direction: column; gap: 8px; }
.po-footer__links a { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-500); transition: color .2s; }
.po-footer__links a:hover { color: var(--po-white); }
.po-footer__bottom { border-top: 1px solid var(--po-gray-800); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-family: var(--po-font-head); font-size: 11px; color: var(--po-gray-600); flex-wrap: wrap; gap: 10px; }

/* ── PAGINAÇÃO ── */
.po-pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 24px 0; }
.po-pagination .page-numbers { font-family: var(--po-font-head); font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: var(--po-radius); border: 1.5px solid var(--po-gray-200); color: var(--po-gray-600); transition: all .2s; }
.po-pagination .page-numbers.current { background: var(--po-red); color: white; border-color: var(--po-red); }
.po-pagination .page-numbers:hover { border-color: var(--po-red); color: var(--po-red); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .po-header__search { display: none; }
  .po-guia-hero__title { font-size: 26px; }
  .po-mediakit-title { font-size: 26px; }
  .po-single__title { font-size: 24px; }
  .po-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .po-topbar__links { display: none; }
  .po-header__cta .po-btn:not(.po-btn--whatsapp) { display: none; }
  .po-footer__grid { grid-template-columns: 1fr; }
}

/* ── WORDPRESS CORE ── */
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { text-align: center; }
.wp-caption-text { font-family: var(--po-font-head); font-size: 12px; color: var(--po-gray-400); margin-top: 6px; }
.sticky { border-left: 3px solid var(--po-red); padding-left: 16px; }
