.article-nav,
.article-nav .nav-container,
.back-btn {
  all: unset;
}

body {
  background: #0a0a0a;
}

h1 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif !important;
  text-transform: uppercase;
  /* font-weight: bolder !important; */
}

.article-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}
.back-btn:hover {
  color: #fff;
}

.article-container {
  all: unset;
  display: block;
}

.article-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.30) 0%,
    rgba(10,10,10,0.55) 30%,
    rgba(10,10,10,0.95) 70%,
    #0a0a0a 100%
  );
}

.article-hero-bar {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 0%, #d4a017 50%, transparent 100%);
}

.article-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 80px 48px 80px;
}

.article-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 24px;
}

.article-hero-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #d4a017;
}

.article-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  color: #fff;
  margin: 0 0 20px;
  max-width: 780px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 640px;
  margin: 24px 0 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.article-body p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}

.video-destaque {
  margin: 40px 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.article-body p:last-of-type {
  margin-bottom: 0;
}

.article-body p strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}

.article-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  opacity: 0.25;
}

.article-divider span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d4a017;
}

.article-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #d4a017, transparent);
}

.article-channel {
  text-align: center;
  margin-top: 48px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.article-channel a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-channel a:hover {
  color: #d4a017;
}

@media (max-width: 768px) {
  .article-hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .article-hero img {
    position: relative;
    height: auto;
    display: block;
    padding-top: 52px;
    background: #0a0a0a;
  }
  .article-hero-gradient {
    display: none;
  }
  .article-hero-bar {
    display: none;
  }
  .article-hero-content {
    padding: 32px 20px 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.03), #0a0a0a 40px);
  }
  .article-hero h1 {
    font-size: 2.6rem;
    margin: 0 0 16px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin: 0 0 40px;
  }
  .article-hero-tag {
    margin-bottom: 16px;
  }
  .article-body {
    padding: 0 20px 60px;
  }
  .article-body p {
    font-size: 0.98rem;
  }
  .article-nav {
    padding: 16px 20px;
  }
}
