/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  background: #fffbea;
  color: #222;
  line-height: 1.4; /* reduzido */
}

/* BARRA SUPERIOR */
.topbar {
  background: #facc15;
  text-align: center;
  font-weight: bold;
  padding: 6px;          /* estava 8px */
  font-size: 14px;
  color: #000;
  margin-bottom: 2px;    /* colado no próximo bloco */
}

/* BLOCO DO TÍTULO */
.hero {
  text-align: center;
  padding: 15px 10px;   /* estava 30px 20px */
}

.hero h1 {
  background: #f97316;
  color: #fff;
  padding: 12px 16px;   /* estava 15px 20px */
  border-radius: 8px;
  display: inline-block;
  max-width: 700px;
  font-size: 20px;
  line-height: 1.3;     /* mais compacto */
  margin-bottom: 8px;
}

.hero h1 span {
  color: #fcd34d; /* destaque amarelo */
}

.hero ul {
  margin: 6px auto;     /* estava 10px */
  text-align: left;
  max-width: 600px;
  list-style: none;
}

.hero ul li {
  margin: 4px 0;        /* estava 10px */
  padding-left: 22px;
  position: relative;
}

.hero ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

/* BOTÃO CTA */
.hero .cta {
  margin-top: 12px;    /* estava 20px */
  font-weight: bold;
  color: #fff;
  background-color: #f97316;
  text-decoration: none;
  display: inline-block;
  padding: 10px 18px;  /* menor */
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero .cta:hover {
  background-color: #ea580c;
  transform: scale(1.05);
}

/* PLAYER */
.video-container {
  text-align: center;
  margin: 10px auto 0 auto; /* reduzido */
}

.video-container video,
.video-container iframe {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* COMENTÁRIOS */
.comments-section {
  max-width: 600px;
  margin: 20px auto; /* estava 40px */
  font-family: Arial, sans-serif;
}

.comment, .reply {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px; /* estava 12px */
}

.reply {
  margin-left: 40px; /* menor */
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px; /* estava 10px */
}

.content {
  background: #f0f2f5;
  padding: 8px 12px; /* mais compacto */
  border-radius: 16px;
  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: 3px;
  font-size: 12px;
  color: #65676b;
}

/* BOTÃO CTA FINAL */
.cta-wrapper {
  text-align: center;
  margin-top: 12px;  /* estava 20px */
}

.cta {
  display: none; 
  font-weight: bold;
  color: #fff;
  background-color: #f97316;
  text-decoration: none;
  padding: 14px 26px; /* mais enxuto */
  border-radius: 8px;
  font-size: 18px;    /* estava 20px */
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta:hover {
  background-color: #ea580c;
  transform: scale(1.05);
}
