* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  --preto: #000;
  --amarelo: #FFDD40;
  --branco: #fff;
  --cinza: #1a1a1a;
}

body {
  background: radial-gradient(circle at top,
      rgba(255, 208, 0, 0.932),
      #000 60%);
  color: var(--branco);

}

@keyframes glow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}


/* CONTAINER */
.timeline {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.search-filter-bar {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 30px;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  color: #fff;
  font-size: 0.95rem;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 221, 64, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.search-summary {
  color: #ffd400;
  font-weight: 600;
  min-width: 180px;
}

@media(max-width: 900px) {
  .search-filter-bar {
    grid-template-columns: 1fr;
  }
}

/* TÍTULO */
.page-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #000;
}

/* CARD DO EVENTO */
.event-card {
  background: var(--cinza);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 80px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.event-card:hover {
  transform: translateY(-6px);
}

/* HEADER */
.event-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.event-header h2 {
  color: var(--amarelo);
}

/* CARROSSEL */
.carousel {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel img.active {
  opacity: 1;
}

/* CONTEÚDO */
.event-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.event-content p {
  flex: 1;
  color: #ddd;
}

.video-btn {
  background: var(--amarelo);
  color: var(--preto);
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* EVENTO PRECISA SER RELATIVO */
.event-card {
  position: relative;
  overflow: hidden;
}

/* CAMADA DE REPORTAGEM */
.event-report {
  position: absolute;
  top: 0;
  left: -45%;
  width: 45%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 40px 30px;
  transition: all 0.5s ease;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TEXTO */
.event-report h3 {
  color: var(--amarelo);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.event-report p {
  color: #ffffff;
  background: transparent;
  font-size: 0.95rem;
  line-height: 1.6;
}

.event-report p a {
  color: var(--amarelo);
  text-decoration: underline;
}

.event-report p a:hover,
.event-report p a:focus {
  color: #fff;
  text-decoration: none;
}

/* HOVER ATIVA */
.event-card:hover .event-report {
  left: 0;
}

/*========= fontes ========= */
@font-face {
  font-family: 'StainStreet';
  src: url('../fontes/StainStreet_PERSONAL_USE_ONLY.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.pichacao {
  font-family: 'StainStreet', sans-serif;
  font-size: 150px;
  color: #FFD400;
  -webkit-text-stroke: 1px black;
  text-shadow: 6px 6px 0 #000;
}
.page-heading {
  margin-bottom: 40px;
}
/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 20px;
}

.footer-content {
  gap: 20px;
}

.footer-section {
  text-align: center;
}

.footer-links {
  align-items: center;
}

.social-icons {
  justify-content: center;
}

/* Cards Grid Responsivo */
.nopic-cards-grid {
  grid-template-columns: 1fr;
}

.nopic-card-main {
  padding: 30px 20px;
}

.card-header {
  font-size: 36px;
}

.nopic-card-main h5 {
  font-size: 1.1rem;
}

/* NOPIC Station Card */
.station-card {
  padding: 20px;
}

.station-title {
  font-size: 1.8rem;
}

.pagination-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
}

.pagination-button {
  background: rgba(255, 221, 64, 0.95);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 46px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.pagination-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.pagination-button.active {
  background: #fff;
}

.pagination-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}


.station-description {
  font-size: 1rem;
}

.station-image img {
  width: 200px;
}

/* Interviewers */
.interviewers-section .section-title {
  font-size: 1.8rem;
}

.interviewer-card {
  padding: 20px;
}

.interviewer-photo img {
  width: 100px;
  height: 100px;
}

.interviewer-info h4 {
  font-size: 1.3rem;
}


.industrial-stripes {
  background: repeating-linear-gradient(45deg,
      #FFD400,
      #FFD400 12px,
      #000 80px,
      #000 80px);
}

/* Logo NOPIC */
.navbar-brand {
  width: 05%;
  height: 05%;
}

/* ==================== RESPONSIVIDADE MOBILE ==================== */
@media (max-width: 768px) {
  /* Navbar mobile */
  .navbar {
    padding: 12px 15px !important;
    flex-wrap: wrap !important;
  }

  .navbar-links {
    display: none !important;
  }

  .hamburger {
    display: block !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
  }

  .hamburger:hover {
    background-color: rgba(255, 204, 0, 0.1) !important;
  }

  .hamburger span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background-color: #fff !important;
    margin: 5px 0 !important;
    transition: 0.3s !important;
    border-radius: 2px !important;
  }

  /* Mobile menu */
  .mobile-menu {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    width: 100% !important;
    background: #000 !important;
    padding: 20px !important;
    z-index: 999 !important;
    border-top: 2px solid #ffcc00 !important;
    display: none !important;
  }

  .mobile-menu.open {
    display: block !important;
  }

  .mobile-menu a {
    display: block !important;
    padding: 12px 0 !important;
    color: #fff !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 204, 0, 0.1) !important;
    transition: color 0.3s ease !important;
  }

  .mobile-menu a:hover {
    color: #ffcc00 !important;
  }

  /* Timeline responsivo */
  .timeline {
    padding: 40px 15px !important;
  }

  /* Pichacao responsivo */
  .pichacao {
    font-size: 60px !important;
    -webkit-text-stroke: 1px black !important;
    text-shadow: 3px 3px 0 #000 !important;
  }

  /* Event cards responsivo */
  .event-card {
    padding: 20px !important;
    margin-bottom: 40px !important;
  }

  .event-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .event-header h2 {
    font-size: 1.5rem !important;
  }

  /* Carousel responsivo */
  .carousel {
    height: 250px !important;
    margin-bottom: 15px !important;
  }

  /* Event content responsivo */
  .event-content {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }

  .event-info h3 {
    font-size: 1.2rem !important;
  }

  .event-info p {
    font-size: 0.9rem !important;
  }

  .event-report {
    position: static !important;
    width: 100% !important;
    margin-top: 15px !important;
  }

  /* Footer responsivo */
  .footer {
    padding: 30px 15px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-section {
    text-align: center !important;
  }

  /* Imagens responsivas */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Botões responsivos */
  .btn, button {
    width: 100% !important;
    margin: 10px 0 !important;
  }

  /* Grid responsivo geral */
  .grid, .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* Flex responsivo */
  .flex {
    flex-direction: column !important;
  }

  /* Espaçamentos responsivos */
  .p-4, .px-4, .py-4 {
    padding: 15px !important;
  }

  .m-4, .mx-4, .my-4 {
    margin: 15px !important;
  }

  /* Textos grandes */
  .text-5xl, .text-4xl, .text-3xl {
    font-size: 2rem !important;
  }

  .text-2xl, .text-xl {
    font-size: 1.5rem !important;
  }
}