:root {
  --orange: #EE8D44;
  --orange-soft: rgba(238, 141, 68, 0.16);
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b8b8b8;
  --soft: rgba(255, 255, 255, 0.72);
  --green: #23c55e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(238, 141, 68, 0.34), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(238, 141, 68, 0.13), transparent 38%),
    #050505;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,.45), transparent 1px),
    radial-gradient(circle at 72% 38%, rgba(238,141,68,.45), transparent 1px);
  background-size: 92px 92px, 130px 130px;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  position: relative;
  z-index: 1;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
}

.glass {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.11);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.glass::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), transparent 34%, rgba(238,141,68,0.06));
  opacity: 0.8;
}

.glass > * { position: relative; z-index: 2; }

.header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 14px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 28px;
  padding: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--orange);
  color: #000;
  font-weight: 1000;
  letter-spacing: -0.08em;
  box-shadow: 0 0 28px rgba(238, 141, 68, 0.38);
}

.brand small {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d6d6d6;
  font-size: 14px;
  font-weight: 750;
}

.menu a:hover { color: #fff; }

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.075);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 17px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:active { transform: scale(.985); }

.btn-primary {
  background: var(--orange);
  color: #050505;
  box-shadow: 0 0 34px rgba(238, 141, 68, 0.30);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.075);
  color: #fff;
  backdrop-filter: blur(18px);
}

.btn-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239,68,68,.95);
}

.hero {
  padding: 82px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(238,141,68,.28);
  border-radius: 999px;
  background: rgba(238,141,68,.11);
  color: #ffd6bb;
  font-size: 13px;
  font-weight: 900;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(238,141,68,.8);
}

h1, h2, h3 { margin: 0; letter-spacing: -0.055em; }

h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .9;
  font-weight: 1000;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  color: #e7e7e7;
  font-size: 13px;
  font-weight: 850;
}

.hero-card {
  border-radius: 34px;
  padding: 18px;
}

.hero-card-inner {
  min-height: 520px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 25%, rgba(238,141,68,.28), transparent 30%),
    linear-gradient(145deg, #171717, #050505 55%, #1c1917);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
}

.profile-ring {
  width: 190px;
  height: 190px;
  margin: 38px auto 0;
  padding: 5px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--orange), rgba(255,255,255,.18), rgba(238,141,68,.3));
  box-shadow: 0 0 58px rgba(238,141,68,.32);
}

.profile-ring img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 6px solid rgba(5,5,5,.92);
  animation: profileZoom 5.8s ease-in-out infinite;
}

.live-label {
  align-self: flex-start;
  border-radius: 999px;
  padding: 7px 10px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-card-caption {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
}

.hero-card-caption small {
  color: var(--orange);
  font-weight: 1000;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-card-caption h2 {
  margin-top: 8px;
  font-size: 38px;
  line-height: .95;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
}

.section-description {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  border-radius: 28px;
  padding: 24px;
}

.card h3 {
  font-size: 24px;
  line-height: 1.05;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.post-thumb {
  aspect-ratio: 16/9;
  background:
    radial-gradient(circle at 35% 35%, rgba(238,141,68,.30), transparent 30%),
    linear-gradient(145deg, #161616, #050505 60%, #1f140d);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.post-content {
  padding: 22px;
}

.post-meta {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.post-content h3 {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.08;
}

.post-content p {
  color: var(--muted);
  line-height: 1.68;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.big-panel {
  border-radius: 34px;
  padding: 34px;
}

.big-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  color: #e7e7e7;
  font-size: 14px;
  font-weight: 850;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 15px;
  background: rgba(0,0,0,.32);
  color: #fff;
  outline: none;
  font: inherit;
}

.form textarea { resize: vertical; min-height: 160px; }

.footer {
  padding: 42px 0 30px;
  color: #777;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
}

.article {
  padding: 54px 0;
}

.article-shell {
  width: min(100% - 36px, 860px);
  margin: 0 auto;
}

.article-hero {
  border-radius: 34px;
  padding: 34px;
  margin-bottom: 22px;
}

.article-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.article-body {
  border-radius: 30px;
  padding: 34px;
}

.article-body p,
.article-body li {
  color: #d1d1d1;
  font-size: 17px;
  line-height: 1.82;
}

.article-body h2 {
  margin-top: 34px;
  font-size: 34px;
}

.article-body a {
  color: #ffd6bb;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes profileZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.055); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

@media (max-width: 920px) {
  .menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5,5,5,.92);
    backdrop-filter: blur(22px);
  }

  .menu.open { display: flex; }

  .menu a {
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.055);
  }

  .menu-toggle { display: inline-grid; place-items: center; }

  .hero-grid, .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-card-inner {
    min-height: 440px;
  }

  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }

  .actions .btn-primary { display: none; }

  .brand strong { font-size: 14px; }

  h1 { font-size: clamp(43px, 13vw, 64px); }

  .hero p { font-size: 16px; }

  .hero-card-inner {
    min-height: 390px;
    padding: 18px;
  }

  .profile-ring {
    width: 150px;
    height: 150px;
  }

  .article-hero,
  .article-body,
  .big-panel,
  .card {
    padding: 24px;
  }
}

.footer-card {
  border-radius: 34px;
  padding: 30px;
}

.footer-brand {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.footer-brand strong {
  color: #fff;
  font-size: 24px;
  font-weight: 1000;
  letter-spacing: -0.05em;
}

.footer-brand span {
  color: var(--orange);
  font-weight: 950;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.06);
  color: #e9e9e9;
  font-size: 12.5px;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.footer-social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(238,141,68,.48);
  background: rgba(255,255,255,.095);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 14px;
}

.footer-links a {
  color: #d7d7d7;
  font-weight: 760;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 16px;
  color: #777;
}

.official-links-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd6bb;
}

@media (max-width: 560px) {
  .footer-card {
    padding: 24px 18px;
  }

  .footer-social-icon span {
    display: none;
  }

  .footer-social-icon {
    width: 44px;
    justify-content: center;
    padding: 10px;
  }
}

.brand-mark {
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.platform-card {
  display: grid;
  gap: 9px;
  border-color: color-mix(in srgb, var(--platform-color) 36%, rgba(255,255,255,.12));
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--platform-color) 30%, transparent), transparent 38%),
    linear-gradient(145deg, color-mix(in srgb, var(--platform-color) 13%, transparent), transparent 55%);
  opacity: .9;
  pointer-events: none;
}

.platform-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--platform-color);
  color: #050505;
  box-shadow: 0 0 26px color-mix(in srgb, var(--platform-color) 34%, transparent);
}

.platform-card.youtube .platform-icon,
.platform-card.tiktok .platform-icon,
.platform-card.twitch .platform-icon,
.platform-card.facebook .platform-icon {
  color: #fff;
}

.platform-card.x .platform-icon {
  color: #050505;
}

.latest-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feed-card {
  border-radius: 26px;
  padding: 18px;
  min-height: 220px;
}

.feed-card small {
  color: var(--orange);
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.feed-card h3 {
  margin-top: 12px;
  font-size: 22px;
}

.feed-card p {
  color: var(--muted);
  line-height: 1.65;
}

.feed-placeholder {
  margin-top: 18px;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 14px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
  line-height: 1.55;
}

.post-thumb {
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-thumb span {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  color: var(--orange);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.06);
  color: #e9e9e9;
  font-size: 13px;
  font-weight: 900;
}

.article-cover {
  margin: 22px 0;
  overflow: hidden;
  border-radius: 30px;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-topic {
  display: inline-flex;
  border: 1px solid rgba(238,141,68,.25);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(238,141,68,.08);
  color: #ffd6bb;
  font-size: 12px;
  font-weight: 850;
}

.related-posts {
  margin-top: 22px;
  border-radius: 30px;
  padding: 24px;
}

.related-posts h2 {
  font-size: 34px;
  margin: 0 0 18px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255,255,255,.055);
}

.related-card small {
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.related-card h3 {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.15;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.recaptcha-box {
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 14px;
  background: rgba(0,0,0,.22);
}

@media (max-width: 920px) {
  .latest-social-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* Proteção leve contra download casual de imagens, sem prejudicar SEO */
img.protect-image,
.post-thumb img,
.article-cover img,
.avatar img,
.brand-mark img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.post-thumb,
.article-cover {
  position: relative;
}

.post-thumb::after,
.article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
}

.article-cover {
  user-select: none;
}

.char-counter {
  display: block;
  margin-top: -8px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  text-align: right;
}

.system-page {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

.system-card {
  width: min(760px, 100%);
  border-radius: 36px;
  padding: 38px;
  text-align: center;
}

.system-code {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(238,141,68,.28);
  border-radius: 999px;
  color: var(--orange);
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(238,141,68,.08);
}

.system-card h1 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 7vw, 78px);
  line-height: .92;
  letter-spacing: -0.07em;
}

.system-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 620px;
}

.system-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}


/* V1.6.1: correções de produção */
.hidden { display: none !important; }
.header { z-index: 100; }
.nav { position: relative; z-index: 120; }
.menu-toggle {
  position: relative;
  z-index: 220;
  cursor: pointer;
  touch-action: manipulation;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 920px) {
  .menu { z-index: 190; }
  .menu.open,
  .menu.is-open { display: flex !important; }
  .actions { position: relative; z-index: 220; }
}
@media (max-width: 560px) {
  .nav { gap: 8px; }
  .actions { gap: 8px; }
  .actions .btn-primary { min-height: 42px; padding: 9px 11px; font-size: 12px; }
}
