/* =========================
   🎨 BASE E VARIÁVEIS
========================= */
:root {
  --color-primary: #60003c;
  --color-secondary: #FCC02E;
  --color-bg: #60003c;
  --color-text: #fff;
  --color-light: #fff;
  --color-border: #D4AF37;
  --font-main: 'Arial', sans-serif;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   🌐 ESTRUTURA GERAL
========================= */
body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(180deg, #60003c 0%, #400028 100%);
  background-attachment: fixed;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   🟨 CABEÇALHO
========================= */
.header {
  border: 1.5px solid #000;
  background-color: var(--color-secondary);
  padding: 6px 0;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  max-width: 400px;
  margin: 10px auto;
  font-size: 0.95rem;
  color: #000;
}

/* =========================
   🟥 HERO / CHAMADA PRINCIPAL
========================= */
.hero {
  text-align: center;
  color: var(--color-text);
  padding: 20px 15px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}

.highlight {
  color: var(--color-secondary);
}

/* =========================
   🎥 VÍDEO / PLAYER
========================= */
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.video-placeholder {
  max-width: 400px;
  width: 100%;
  border: 2px dashed var(--color-secondary);
  border-radius: 10px;
  padding: 30px;
  background-color: #fff8e1;
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
}

/* =========================
   📺 LOGOS DOS CANAIS
========================= */
.logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.logos img {
  height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
   💬 COMENTÁRIOS
========================= */
.comments {
  max-width: 800px;
  margin: 50px auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px 25px;
}

.comments-title {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #8B4513;
  text-align: center;
  font-weight: bold;
}

.comment-card {
  background: var(--color-light);
  border-left: 4px solid var(--color-border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.comment-header,
.comment-reply {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  object-fit: cover;
}

.comment-info h4,
.comment-info h5 {
  color: #8B4513;
  font-weight: bold;
  margin-bottom: 5px;
}

.comment-info p {
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: #666;
}

.comment-actions span {
  cursor: pointer;
}

.comment-actions .time {
  color: #999;
}

/* =========================
   ⚫ RODAPÉ
========================= */
.footer {
  background-color: #333;
  color: #ccc;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.8rem;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  margin: 10px 0;
  line-height: 1.4;
}

/* =========================
   📱 RESPONSIVIDADE
========================= */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .comments {
    padding: 25px 15px;
  }

  .comment-avatar {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
    margin: 15px 0;
  }

  .comment-card {
    padding: 15px;
  }

  .comment-avatar {
    width: 35px;
    height: 35px;
  }

  .comment-info p {
    font-size: 0.95rem;
  }
}
