* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #080808;
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

header,
.menu {
  align-items: center;
  background: #000;
  border-bottom: 2px solid #fa8a01;
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header img,
.logo img {
  max-height: 58px;
}

.menu-content {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.menu-actions {
  align-items: center;
  display: flex;
}

.btn-contato {
  background: #fa8a01;
  border-radius: 999px;
  color: #080808;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  text-decoration: none;
  white-space: nowrap;
}

.menu-btn {
  border: 1px solid rgba(250, 138, 1, .36);
  border-radius: 8px;
  height: 44px;
  padding: 0;
  width: 44px;
}

.menu-btn span {
  background: #fa8a01;
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 4px auto;
  width: 21px;
}

#menu-toggle,
.menu-btn {
  background: transparent;
  border: 0;
  color: #fa8a01;
  cursor: pointer;
  display: none;
  font-size: 28px;
}

header nav,
.nav-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
}

header nav a,
.nav-menu a {
  color: #fa8a01;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

header nav a:hover,
header nav a.active,
.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.page-hero {
  background: linear-gradient(135deg, #151515, #050505);
  padding: 64px 20px 42px;
  text-align: center;
}

.page-hero h1 {
  color: #fa8a01;
  font-family: "Rubik", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 12px;
}

.page-hero p {
  color: #d6d6d6;
  margin: 0 auto;
  max-width: 760px;
}

main {
  margin: 0 auto;
  max-width: 980px;
  padding: 42px 20px 10px;
}

.report-card {
  background: #121212;
  border: 1px solid rgba(250, 138, 1, .22);
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
  scroll-margin-top: 92px;
}

.report-cover,
.report-image {
  background: #050505;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.report-cover {
  max-height: min(70vh, 620px);
}

.report-image {
  border-radius: 8px;
  margin-top: 18px;
  max-height: min(68vh, 560px);
}

.report-body {
  padding: 26px;
}

.report-body h2 {
  color: #fa8a01;
  font-family: "Rubik", sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.2;
  margin-bottom: 8px;
}

.meta {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 16px;
}

.report-body p {
  color: #e7e7e7;
  margin-bottom: 14px;
}

.video-container {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  margin-top: 18px;
  overflow: hidden;
}

.video-container iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.report-comments {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(250, 138, 1, .18);
  border-radius: 8px;
  margin-top: 22px;
  padding: 18px;
}

.report-comments h3 {
  color: #fa8a01;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.report-comment-form {
  display: grid;
  gap: 10px;
}

.report-comment-form input,
.report-comment-form textarea {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: #fff;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.report-comment-form textarea {
  min-height: 92px;
  resize: vertical;
}

.report-comment-form button {
  background: #fa8a01;
  border: 0;
  border-radius: 8px;
  color: #111;
  cursor: pointer;
  font-weight: 800;
  min-height: 44px;
  padding: 0 18px;
  justify-self: start;
}

.report-comments-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.report-comment {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 12px;
}

.report-comment strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.report-comment p {
  margin-bottom: 6px;
}

.report-comment time,
.report-comments-empty {
  color: #aaa;
  font-size: 12px;
}

@media (max-width: 980px) {
  .menu {
    padding: 10px 16px;
  }

  .menu-content {
    gap: 14px;
  }

  .menu-actions {
    display: none;
  }

  #menu-toggle,
  .menu-btn {
    display: block;
  }

  header nav,
  .nav-menu {
    background: #111;
    border: 1px solid rgba(250, 138, 1, .25);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    position: absolute;
    right: 16px;
    top: 78px;
  }

  header nav.show,
  .nav-menu.show,
  .nav-menu.active {
    display: flex;
  }
}
