/* mobile-fix.css — arquivo NOVO que o browser nunca viu, sobrescreve tudo */

html body .cat-pills,
html body div.cat-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  overflow: visible !important;
  overflow-x: visible !important;
  padding: 4px 0 14px !important;
  margin-bottom: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
}

html body .cat-pill,
html body a.cat-pill {
  flex: 0 0 auto !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
}

@media (max-width: 768px) {
  html body .cat-pill { font-size: 12px !important; padding: 7px 13px !important; }
}
@media (max-width: 540px) {
  html body .cat-pills { gap: 6px !important; }
  html body .cat-pill { font-size: 11px !important; padding: 6px 11px !important; }
}
@media (max-width: 400px) {
  html body .cat-pill { font-size: 10px !important; padding: 5px 9px !important; }
}

/* HERO BADGE */
html body .hero-badge,
html body section.hero .hero-badge,
html body section.hero div .hero-badge {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255,107,0,.12) !important;
  border: 1px solid rgba(255,107,0,.35) !important;
  color: #FF6B00 !important;
  border-radius: 999px !important;
  padding: 6px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
}

@media (max-width: 540px) {
  html body .hero-badge {
    font-size: 11px !important;
    padding: 5px 12px !important;
  }
}

/* PERFIL */
html body .profile-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}
html body .profile-header-info {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
html body .profile-name {
  display: block !important;
  visibility: visible !important;
  color: #fff !important;
  font-size: 18px !important;
  word-break: break-word !important;
}
html body .profile-email {
  display: block !important;
  color: #888 !important;
  font-size: 13px !important;
  word-break: break-all !important;
}
@media (max-width: 540px) {
  html body .profile-header {
    flex-direction: column !important;
    text-align: center !important;
  }
}
