/* ================================================
HERO SECTION - DA REPORTAGEM
Estilos Responsivos e Profissionais
================================================ */

.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 80px 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: #d32f2f;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.hero-deck {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.9;
  max-width: 600px;
  font-family: 'Roboto', sans-serif;
}

.hero-meta {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 24px;
  font-family: 'Roboto', sans-serif;
}

.hero-meta strong {
  font-weight: 700;
}

.hero-cta {
  display: inline-block;
  background: #d32f2f;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 24px;
  transition: background 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: #b71c1c;
  text-decoration: none;
  color: white;
}

/* ================================================
RESPONSIVE DESIGN - TABLET
================================================ */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-deck {
    font-size: 16px;
  }
}

/* ================================================
RESPONSIVE DESIGN - MOBILE
================================================ */
@media (max-width: 767px) {
  .hero-section {
    padding: 40px 15px;
    margin-bottom: 30px;
  }
  
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero-deck {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .hero-meta {
    font-size: 12px;
  }
  
  .hero-cta {
    padding: 10px 20px;
    font-size: 12px;
  }
}

/* ================================================
CATEGORY COLOR CODING
================================================ */

.hero-section.investigacao .hero-tag {
  background: #d32f2f;
}

.hero-section.crime-organizado .hero-tag {
  background: #1a1a1a;
  border: 2px solid #d32f2f;
  color: #d32f2f;
}

.hero-section.direitos-humanos .hero-tag {
  background: #ff6f00;
}

.hero-section.justica .hero-tag {
  background: #0277bd;
}

.hero-section.internacional .hero-tag {
  background: #6a1b9a;
}

/* ================================================
ACCESSIBILITY
================================================ */

.hero-cta:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-title {
  word-break: break-word;
}

/* ================================================
PRINT STYLES
================================================ */

@media print {
  .hero-section {
    background: white;
    color: black;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  
  .hero-cta {
    display: none;
  }
}
