/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  background: #fffbea;
  color: #222;
  line-height: 1.5;
}

/* BARRA SUPERIOR */
.topbar {
  background: #facc15;
  text-align: center;
  font-weight: bold;
  padding: 8px;
  font-size: 14px;
  color: #000;
}

/* BLOCO DO TÍTULO */
.hero {
  text-align: center;
  padding: 30px 20px;
}

.hero h1 {
  background: #f97316;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
  max-width: 700px;
  font-size: 20px;
  line-height: 1.4;
}

.hero h1 span {
  color: #fcd34d; /* destaque amarelo */
}

.hero ul {
  margin: 20px auto;
  text-align: left;
  max-width: 600px;
  list-style: none;
}

.hero ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.hero ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

/* BOTÃO CTA */
.hero .cta {
  margin-top: 20px;
  font-weight: bold;
  color: #fff;                  /* texto branco */
  background-color: #f97316;    /* fundo laranja */
  text-decoration: none;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero .cta:hover {
  background-color: #ea580c;    /* fundo laranja mais escuro */
  transform: scale(1.05);
}

/* PLAYER */
.video-container {
  text-align: center;
  margin: 30px 0;
}

.video-container video,
.video-container iframe {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.comments-section {
  max-width: 600px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.comment, .reply {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.reply {
  margin-left: 50px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.content {
  background: #f0f2f5;
  padding: 10px 14px;
  border-radius: 18px;
  max-width: 500px;
}

.name {
  font-weight: bold;
  color: #385898;
  font-size: 14px;
}

.content p {
  margin: 2px 0;
  font-size: 14px;
  color: #050505;
}

.meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #65676b;
}

.cta-wrapper {
  text-align: center;
  margin-top: 20px;
}

.cta {
  display: none; /* escondido até liberar no JS */
  font-weight: bold;
  color: #fff;
  background-color: #f97316;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta:hover {
  background-color: #ea580c;
  transform: scale(1.05);
}
