/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, sans-serif;
  background: #fffbea; /* mantém o bege do site */
  color: #222;
  line-height: 1.4;
}

/* BARRA SUPERIOR */
.topbar {
  background: #facc15;
  text-align: center;
  font-weight: bold;
  padding: 6px;
  font-size: 14px;
  color: #000;
  margin-bottom: 2px;
}

/* BLOCO DO TÍTULO */
.hero {
  text-align: center;
  padding: 15px 10px;
}

.hero h1 {
  background: #f97316;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  display: inline-block;
  max-width: 700px;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero h1 span {
  color: #fcd34d;
}

.hero ul {
  margin: 6px auto;
  text-align: left;
  max-width: 600px;
  list-style: none;
}

.hero ul li {
  margin: 4px 0;
  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;
  font-weight: bold;
  color: #fff;
  background-color: #16a34a;
  text-decoration: none;
  display: inline-block;
  padding: 10px 18px;
  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 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe,
.video-container video {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 400px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent !important;
  display: block;
  object-fit: cover;
}

/* COMENTÁRIOS */
.comments-section {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.comment, .reply {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.reply {
  margin-left: 40px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
}

.content {
  background: #f0f2f5;
  padding: 8px 12px;
  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;
}

.cta {
  display: none; 
  font-weight: bold;
  color: #fff;
  background-color: #16a34a;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta:hover {
  background-color: #15803d;
  transform: scale(1.05);
}

/* --- REMOVE BORDAS E FUNDO DO WISTIA --- */
.w-vulcan--background,
.w-css-reset[data-handle="thumbnail"] img,
.w-css-reset[data-handle="thumbnail"],
.w-css-reset[data-handle="backgroundFocus"],
.w-css-reset[data-handle="statusBar"] {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Remove arredondamento e espaçamento interno */
.w-vulcan--background {
  padding: 0 !important;
  margin: 0 auto !important;
}

/* Garante que o vídeo preencha o bloco sem sobras */
.w-vulcan--background video,
.w-vulcan--background iframe,
.w-vulcan--background img {
  border-radius: 0 !important;
  object-fit: cover !important;
  background: transparent !important;
}

/* Corrige o wrapper principal do player */
.wistia_responsive_padding,
.wistia_responsive_wrapper {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

