/*
 * Ganhando Promoções — assets/css/main.css
 * Layout, componentes e responsividade do tema (mobile-first).
 * Variáveis de cor/tipografia/espaçamento ficam em style.css (raiz do tema).
 */

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--gp-radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  border: 2px solid transparent;
}
.gp-btn:active {
  transform: scale(0.98);
}
.gp-btn-primary {
  background: var(--gp-primary);
  color: #fff;
  box-shadow: var(--gp-shadow-sm);
}
.gp-btn-primary:hover {
  background: var(--gp-primary-dark);
}
.gp-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: inherit;
}
.gp-btn-whatsapp {
  background: var(--gp-whatsapp);
  color: #fff;
}
.gp-btn-whatsapp:hover {
  background: #1eb454;
}
.gp-btn-sm {
  padding: 8px 14px;
  font-size: 0.82rem;
}
.gp-btn-lg {
  padding: 15px 28px;
  font-size: 1.02rem;
}
.gp-btn-block {
  width: 100%;
}

/* ==========================================================================
   BADGES / CHIPS
   ========================================================================== */
.gp-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--gp-radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.gp-badge-sponsored {
  background: var(--gp-bg-dark);
  color: #fff;
}
.gp-badge-urgent {
  background: var(--gp-accent);
  color: #3a2900;
}
.gp-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--gp-radius-pill);
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ==========================================================================
   TOPBAR (faixa rotativa no topo)
   ========================================================================== */
.gp-topbar {
  background: var(--gp-bg-dark);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.gp-topbar-track {
  display: inline-flex;
  gap: 3rem;
  padding: 8px 0;
  animation: gp-marquee 28s linear infinite;
}
.gp-topbar-track span {
  padding-right: 3rem;
}
@keyframes gp-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gp-topbar-track { animation: none; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gp-border);
  transition: box-shadow 0.2s ease;
}
.gp-header.is-scrolled {
  box-shadow: var(--gp-shadow-sm);
}
.gp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--gp-header-height);
  padding-top: 10px;
  padding-bottom: 10px;
}
.gp-header-brand img {
  max-height: 44px;
  width: auto;
}
.gp-logo-fallback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}
.gp-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gp-primary);
  color: #fff;
  font-weight: 900;
}
.gp-nav-desktop {
  display: none;
}
.gp-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.gp-menu > li > a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gp-text);
  position: relative;
  padding: 6px 0;
}
.gp-menu > li > a:hover {
  color: var(--gp-primary);
}
.gp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gp-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--gp-text);
}
.gp-icon-btn:hover {
  background: var(--gp-bg-soft);
}
.gp-header-cta {
  display: none;
}
.gp-menu-toggle {
  display: inline-flex;
}

.gp-search-box {
  border-top: 1px solid var(--gp-border);
  padding: 14px 0;
}
.gp-search-form {
  display: flex;
  gap: 8px;
  max-width: var(--gp-container);
  margin: 0 auto;
  padding: 0 20px;
}
.gp-search-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--gp-radius-pill);
  border: 1px solid var(--gp-border-strong);
  background: var(--gp-bg-soft);
}
.gp-search-input:focus {
  outline: 2px solid var(--gp-primary);
  outline-offset: 1px;
}

/* ==========================================================================
   MENU MOBILE (drawer)
   ========================================================================== */
.gp-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--gp-bg);
  z-index: 900;
  box-shadow: var(--gp-shadow-lg);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
.gp-mobile-menu:not([hidden]) {
  transform: translateX(0);
}
.gp-mobile-menu-inner {
  padding: 20px;
}
.gp-menu-close {
  margin-left: auto;
  display: flex;
}
.gp-menu-mobile {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.gp-menu-mobile > li > a {
  display: block;
  padding: 14px 6px;
  border-bottom: 1px solid var(--gp-border);
  font-weight: 600;
}
.gp-mobile-cta {
  width: 100%;
  margin-top: 24px;
}
.gp-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 21, 26, 0.5);
  z-index: 890;
}
.gp-mobile-menu[hidden],
.gp-mobile-overlay[hidden],
.gp-search-box[hidden] {
  display: none;
}

/* ==========================================================================
   LAYOUT GERAL
   ========================================================================== */
.gp-main {
  min-height: 40vh;
}
.gp-section {
  padding: 48px 0;
}
.gp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.gp-section-head-center {
  justify-content: center;
  text-align: center;
}
.gp-section-title {
  font-size: 1.5rem;
}
.gp-section-link {
  font-weight: 700;
  color: var(--gp-primary);
  white-space: nowrap;
}

.gp-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-top: 32px;
  padding-bottom: 56px;
}
.gp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gp-sidebar-vip {
  background: var(--gp-bg-soft);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  padding: 20px;
  text-align: center;
}
.gp-sidebar-vip-title {
  font-weight: 700;
  margin-bottom: 12px;
}
.gp-widget {
  background: var(--gp-bg-soft);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  padding: 20px;
}
.gp-widget-title,
.gp-footer-title {
  font-size: 1rem;
  margin-bottom: 12px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.gp-hero {
  background: linear-gradient(160deg, var(--gp-bg-dark) 0%, #24262f 100%);
  color: #fff;
  padding: 40px 0 56px;
}
.gp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.gp-hero-eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--gp-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.gp-hero-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin-bottom: 14px;
}
.gp-hero-title em,
.gp-hero-title i {
  color: var(--gp-accent);
  font-style: normal;
}
.gp-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin-bottom: 24px;
}
.gp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.gp-hero-card {
  position: relative;
  display: block;
  background: var(--gp-bg);
  color: var(--gp-text);
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  box-shadow: var(--gp-shadow-lg);
}
.gp-hero-card .gp-badge-sponsored {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.gp-hero-card-media {
  aspect-ratio: 16/10;
  background: var(--gp-bg-soft);
}
.gp-hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gp-hero-card-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gp-primary-light), var(--gp-bg-soft));
}
.gp-hero-card-body {
  padding: 20px;
}
.gp-hero-card-brand {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.gp-hero-card-title {
  font-size: 1.2rem;
  margin: 6px 0 14px;
}
.gp-hero-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gp-hero-card .gp-chip {
  background: var(--gp-primary-light);
  color: var(--gp-primary-dark);
}

/* ==========================================================================
   INDICADORES
   ========================================================================== */
.gp-indicators {
  background: var(--gp-bg-soft);
  border-bottom: 1px solid var(--gp-border);
  padding: 28px 0;
}
.gp-indicators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.gp-indicator-value {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--gp-primary);
}
.gp-indicator-label {
  font-size: 0.82rem;
  color: var(--gp-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   GRID / CARDS
   ========================================================================== */
.gp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.gp-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gp-scroller .gp-card {
  min-width: 260px;
  scroll-snap-align: start;
}
.gp-scroller::-webkit-scrollbar {
  height: 6px;
}
.gp-scroller::-webkit-scrollbar-thumb {
  background: var(--gp-border-strong);
  border-radius: 999px;
}

.gp-card {
  background: var(--gp-bg);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.gp-card:hover {
  box-shadow: var(--gp-shadow-md);
  transform: translateY(-2px);
}
.gp-card-link {
  display: block;
}
.gp-card-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--gp-bg-soft);
}
.gp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gp-card-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gp-primary-light), var(--gp-bg-soft));
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gp-primary);
}
.gp-card-media .gp-badge,
.gp-card-media .gp-countdown {
  position: absolute;
  top: 10px;
  left: 10px;
}
.gp-card-body {
  padding: 16px;
}
.gp-card-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.gp-card-title {
  font-size: 1rem;
  margin: 6px 0 10px;
  line-height: 1.3;
}
.gp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.gp-card-cat,
.gp-card-premio {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--gp-radius-pill);
  background: var(--gp-bg-soft);
  color: var(--gp-text-muted);
}
.gp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gp-card-prazo {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gp-primary-dark);
}
.gp-card-excerpt {
  font-size: 0.85rem;
  color: var(--gp-text-muted);
  margin-bottom: 10px;
}
.gp-card-date {
  font-size: 0.76rem;
  color: var(--gp-text-soft);
}
.gp-countdown {
  background: var(--gp-bg-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--gp-radius-pill);
}

@media (min-width: 640px) {
  .gp-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .gp-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .gp-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   CATEGORIAS
   ========================================================================== */
.gp-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gp-category-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--gp-radius-md);
  border: 1px solid var(--gp-border);
  background: var(--gp-bg-soft);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.gp-category-pill:hover {
  border-color: var(--gp-primary);
  background: var(--gp-primary-light);
}
.gp-category-icon {
  font-size: 1.3rem;
}
.gp-category-name {
  font-weight: 700;
  font-size: 0.9rem;
  flex: 1;
}
.gp-category-count {
  font-size: 0.76rem;
  color: var(--gp-text-soft);
  font-weight: 700;
}

/* ==========================================================================
   FILTRO POR ABAS
   ========================================================================== */
.gp-filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.gp-filter-tab {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--gp-radius-pill);
  border: 1px solid var(--gp-border-strong);
  font-weight: 600;
  font-size: 0.85rem;
}
.gp-filter-tab.is-active,
.gp-filter-tab:hover {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
  color: #fff;
}

/* ==========================================================================
   VIP CTA
   ========================================================================== */
.gp-vip-cta {
  background: var(--gp-primary);
  color: #fff;
  padding: 52px 0;
}
.gp-vip-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.gp-vip-cta-eyebrow {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: var(--gp-radius-pill);
  margin-bottom: 16px;
}
.gp-vip-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.gp-vip-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}
.gp-vip-cta .gp-btn-whatsapp {
  box-shadow: var(--gp-shadow-md);
}

/* ==========================================================================
   COMO PARTICIPAR
   ========================================================================== */
.gp-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.gp-step {
  text-align: center;
  padding: 8px;
}
.gp-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gp-primary-light);
  color: var(--gp-primary-dark);
  font-weight: 900;
  margin-bottom: 14px;
}
.gp-step-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.gp-step-text {
  color: var(--gp-text-muted);
  font-size: 0.9rem;
}

@media (min-width: 720px) {
  .gp-steps-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.gp-newsletter {
  background: var(--gp-bg-soft);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  padding: 32px;
  text-align: center;
  margin: 8px 0 40px;
}
.gp-newsletter h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.gp-newsletter p {
  color: var(--gp-text-muted);
  margin-bottom: 20px;
}
.gp-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.gp-newsletter-input {
  padding: 13px 16px;
  border-radius: var(--gp-radius-pill);
  border: 1px solid var(--gp-border-strong);
  background: #fff;
  text-align: center;
}
.gp-newsletter-note {
  font-size: 0.76rem;
  color: var(--gp-text-soft);
  margin-top: 12px;
  margin-bottom: 0;
}

@media (min-width: 560px) {
  .gp-newsletter-form { flex-direction: row; }
  .gp-newsletter-input { text-align: left; flex: 1; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.gp-footer {
  background: var(--gp-bg-dark);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 32px;
  padding-top: 48px;
}
.gp-footer .gp-newsletter {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.gp-footer .gp-newsletter h2 { color: #fff; }
.gp-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.gp-footer-brand .gp-logo-fallback { color: #fff; }
.gp-footer-tagline {
  font-size: 0.88rem;
  margin: 14px 0;
  max-width: 34ch;
}
.gp-footer-social a {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gp-whatsapp);
}
.gp-footer-title {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gp-footer-menu li {
  margin-bottom: 10px;
}
.gp-footer-menu a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}
.gp-footer-menu a:hover {
  color: #fff;
}
.gp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 12px;
}
.gp-footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.gp-footer-bottom a {
  color: #fff;
  font-weight: 700;
}

@media (min-width: 720px) {
  .gp-footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ==========================================================================
   NAVEGAÇÃO INFERIOR (mobile)
   ========================================================================== */
.gp-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  display: flex;
  background: var(--gp-bg);
  border-top: 1px solid var(--gp-border);
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(20, 21, 26, 0.06);
}
.gp-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gp-text-muted);
  border-radius: var(--gp-radius-sm);
}
.gp-bottom-nav a.is-active {
  color: var(--gp-primary);
}
.gp-bottom-nav-vip {
  color: var(--gp-whatsapp) !important;
}
body {
  padding-bottom: 66px;
}
@media (min-width: 960px) {
  .gp-bottom-nav { display: none; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   ARTIGO / PÁGINA DE CONTEÚDO
   ========================================================================== */
.gp-article-header,
.gp-promo-header {
  padding-top: 8px;
  margin-bottom: 20px;
}
.gp-article-title,
.gp-promo-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin: 10px 0;
}
.gp-article-meta {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gp-text-muted);
}
.gp-article-thumb,
.gp-promo-thumb {
  border-radius: var(--gp-radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16/9;
}
.gp-article-thumb img,
.gp-promo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gp-article-content {
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 72ch;
}
.gp-article-content h2 {
  font-size: 1.35rem;
  margin-top: 1.6em;
}
.gp-article-content h3 {
  font-size: 1.15rem;
  margin-top: 1.4em;
}
.gp-article-content p {
  margin-bottom: 1.1em;
}
.gp-article-content img {
  border-radius: var(--gp-radius-md);
  margin: 1.2em 0;
}
.gp-article-content a {
  color: var(--gp-primary-dark);
  text-decoration: underline;
}
.gp-article-content ul,
.gp-article-content ol {
  margin: 0 0 1.1em 1.3em;
  list-style: revert;
}
.gp-article-share {
  margin: 28px 0;
}
.gp-comments {
  margin-top: 40px;
}

/* ==========================================================================
   PÁGINA DE PROMOÇÃO
   ========================================================================== */
.gp-promo-header-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.gp-promo-brand {
  display: block;
  font-weight: 700;
  color: var(--gp-text-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
.gp-promo-deadline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--gp-radius-pill);
  background: var(--gp-primary-light);
  color: var(--gp-primary-dark);
  font-weight: 800;
  font-size: 0.88rem;
  margin-top: 12px;
}
.gp-promo-deadline.is-encerrada {
  background: var(--gp-bg-soft);
  color: var(--gp-text-muted);
}
.gp-promo-deadline-date {
  font-weight: 500;
  opacity: 0.8;
}
.gp-promo-cta-top {
  margin: 20px 0 24px;
  text-align: center;
}
.gp-promo-cta-note {
  display: block;
  font-size: 0.76rem;
  color: var(--gp-text-soft);
  margin-top: 8px;
}
.gp-promo-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: var(--gp-bg-soft);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  padding: 18px;
  margin-bottom: 24px;
}
.gp-promo-fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gp-promo-fact span {
  font-size: 0.72rem;
  color: var(--gp-text-soft);
  text-transform: uppercase;
  font-weight: 700;
}
.gp-promo-fact strong {
  font-size: 0.95rem;
}
.gp-promo-how {
  margin-bottom: 24px;
}
.gp-promo-how h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.gp-promo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 14px;
}
.gp-promo-disclaimer {
  font-size: 0.8rem;
  color: var(--gp-text-soft);
  border-top: 1px dashed var(--gp-border);
  padding-top: 16px;
}
.gp-promo-vip-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--gp-bg-soft);
  border-radius: var(--gp-radius-md);
  padding: 18px 20px;
  margin: 24px 0;
}
.gp-promo-vip-inline p {
  margin: 0;
  font-weight: 700;
}
.gp-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 66px;
  z-index: 550;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gp-border);
}
@media (min-width: 960px) {
  .gp-sticky-cta { display: none; }
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.gp-breadcrumbs {
  margin-bottom: 18px;
}
.gp-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gp-text-soft);
}
.gp-breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 6px;
  color: var(--gp-border-strong);
}
.gp-breadcrumbs a {
  color: var(--gp-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   404
   ========================================================================== */
.gp-404-inner {
  text-align: center;
  padding: 60px 20px;
}
.gp-404-code {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gp-primary-light);
  -webkit-text-stroke: 2px var(--gp-primary);
}
.gp-404 h1 {
  font-size: 1.6rem;
  margin: 10px 0;
}
.gp-404 p {
  color: var(--gp-text-muted);
  margin-bottom: 24px;
}

/* ==========================================================================
   PUBLICIDADE
   ========================================================================== */
.gp-ad-slot {
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  margin: 28px auto;
  padding: 8px 0;
}
.gp-ad-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gp-text-soft);
  margin-bottom: 8px;
}

/* ==========================================================================
   PAGINAÇÃO
   ========================================================================== */
.gp-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.gp-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--gp-radius-sm);
  border: 1px solid var(--gp-border);
  font-weight: 700;
  font-size: 0.85rem;
}
.gp-pagination .page-numbers.current {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
  color: #fff;
}

/* ==========================================================================
   BREAKPOINTS GERAIS (header desktop, containers)
   ========================================================================== */
@media (min-width: 960px) {
  .gp-nav-desktop { display: block; }
  .gp-header-cta { display: inline-flex; }
  .gp-menu-toggle { display: none; }
  .gp-with-sidebar { grid-template-columns: 1fr 320px; }
  .gp-hero-grid { grid-template-columns: 1.1fr 0.9fr; }
  .gp-indicators-grid { grid-template-columns: repeat(4, 1fr); }
  .gp-categories-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 640px) and (max-width: 959px) {
  .gp-categories-grid { grid-template-columns: repeat(3, 1fr); }
}
