@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #080808;
  --card-bg: #121212;
  --border-color: #222222;
  --neon-green: #39ff14;
  --neon-green-hover: #00cc52;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --font-title: 'Orbitron', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

h1, h2, h3, .logo, .btn-neon, .tag, .hero-tag {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* HEADER */
header {
  background-color: #000;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 110px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 110px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.site-logo:hover {
  transform: scale(1.03);
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-weight: 600;
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--neon-green);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: radial-gradient(circle at center, #152512 0%, var(--bg-dark) 70%);
  border-radius: 16px;
  margin-bottom: 3rem;
  border: 1px solid #1e3318;
}

.hero-tag {
  color: var(--neon-green);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* BOTÕES */
.btn-neon {
  background-color: var(--neon-green);
  color: #000;
  padding: 0.9rem 2rem;
  font-weight: 800;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.btn-neon:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

/* SECÇÕES */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
}

.see-more {
  color: var(--neon-green);
  font-size: 0.85rem;
  font-weight: 700;
}

/* CARTÕES E NOTÍCIAS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.news-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  border-color: var(--neon-green);
  transform: translateY(-4px);
}

.tag {
  color: var(--neon-green);
  font-size: 0.75rem;
  font-weight: 800;
}

/* SHORTS */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.short-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 0.8rem;
  text-align: center;
  transition: transform 0.2s;
}

.short-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-green);
}

/* EQUIPA */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.team-card p {
  color: var(--neon-green);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* FOOTER */
footer {
  background: #000;
  border-top: 1px solid var(--border-color);
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.85rem;
}

.footer-links {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ESTILOS DA PÁGINA DE MÉDIA & CARROSSÉIS
   ========================================================================== */

.media-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  scrollbar-width: none;
}

.media-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.vertical-aspect .carousel-item {
  width: 240px;
  height: 425px;
}

.horizontal-aspect .carousel-item {
  width: 380px;
  height: 215px;
}

.spotify-aspect .carousel-item {
  width: 100%;
  max-width: 600px;
  height: 152px;
}

.arrow-btn {
  background: #1a1a1a;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 0.3rem;
  transition: all 0.2s ease;
}

.arrow-btn:hover {
  background: var(--neon-green);
  color: #000;
}

.btn-external {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-external:hover {
  background-color: var(--neon-green);
  color: #000;
  transform: translateY(-2px);
}

/* ==========================================================================
   ESTILOS DA PÁGINA DE LEITURA DE NOTÍCIA (ESTILO FRAMER)
   ========================================================================== */

.article-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.back-btn {
  display: inline-block;
  background: #111;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background 0.2s;
  font-family: var(--font-title);
}

.back-btn:hover {
  background: var(--neon-green);
  color: #000;
}

.article-category {
  color: var(--neon-green);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-title);
}

h1#art-titulo {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 15px;
  font-family: var(--font-title);
}

.art-subtitulo {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 15px;
}

.art-meta {
  font-size: 0.85rem;
  color: #737373;
  margin-bottom: 30px;
}

.art-img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 35px;
}

.art-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e5e7eb;
}

.art-body p {
  margin-bottom: 20px;
}

.art-body ul {
  margin: 20px 0;
  padding-left: 20px;
}

.art-body li {
  margin-bottom: 10px;
  list-style-type: disc; /* Garante os pontos circulares nas listas em vez de números */
}

.art-body strong {
  color: var(--text-white);
}
