* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f7f9;
  color: #1f2933;
}

.pagina {
  display: grid;
  grid-template-columns: 230px 1fr 280px;
  gap: 20px;
  min-height: 100vh;
  padding: 20px;
}

.menu-esquerdo {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d8f7ff, #08a9c4 65%, #2f7d59);
}

.marca {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 8px;
  background: #12324a;
  color: white;
  font-weight: bold;
  text-align: center;
}

.conteudo {
  background: white;
  border: 1px solid #dce3ea;
}

.topo {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 14px 24px;
  border-bottom: 1px solid #dce3ea;
}

.topo img {
  max-width: 100%;
  max-height: 180px;
}

.texto-fixo-topo {
  max-width: 760px;
  margin-top: 14px;
  color: #1f2933;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.texto-fixo-topo p {
  margin: 6px 0;
}

section {
  padding: 26px;
}

#categoria-produto {
  color: #2f7d59;
  font-weight: bold;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #12324a;
  font-size: 34px;
}

#descricao-produto {
  max-width: 780px;
  color: #62717f;
  font-size: 18px;
  line-height: 1.5;
}

.logo-deus-pratica {
  display: block;
  width: min(320px, 100%);
  margin: 0 0 18px auto;
  border-radius: 4px;
}

.tv {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  border: 14px solid #101820;
  border-bottom-width: 22px;
  border-radius: 8px;
  overflow: hidden;
  background: #101820;
}

.tv iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.menu-direito {
  align-self: start;
  padding: 18px;
  border-radius: 8px;
  background: #f8fafb;
  border: 1px solid #dce3ea;
}

.produto-btn,
.capitulo-btn {
  width: 100%;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: bold;
}

.produto-btn {
  background: #12324a;
  color: white;
  overflow: hidden;
}

.capitulo-btn {
  background: white;
  color: #1f2933;
  border: 1px solid #dce3ea;
}

.produto-btn.ativo,
.capitulo-btn.ativo {
  background: #f2c94c;
  color: #1f2933;
}

.produto-btn .produto-imagem {
  display: block;
  width: 100%;
  max-width: 160px;
  max-height: 170px;
  object-fit: contain;
  margin: 0 auto 8px;
  border-radius: 4px;
}

.produto-btn span {
  display: block;
  text-align: center;
}

.atalhos-laterais {
  margin-top: 80px;
}

.atalhos-laterais a {
  display: block;
  margin-bottom: 12px;
}

.atalhos-laterais img {
  display: block;
  width: 100%;
  border-radius: 4px;
}

.chamada-final {
  display: none;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #dce3ea;
  border-radius: 8px;
  background: #f8fafb;
}

.chamada-final.ativa {
  display: block;
}

.botao-final {
  display: inline-block;
  margin-top: 10px;
  padding: 13px 16px;
  border-radius: 8px;
  background: #f2c94c;
  color: #1f2933;
  font-weight: bold;
  text-decoration: none;
}

footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 260px;
  gap: 24px;
  align-items: start;
  padding: 22px 26px;
  border-top: 1px solid #dce3ea;
}

footer p {
  margin-top: 0;
}

.apoio-pix {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  text-align: center;
}

.apoio-pix .logo-rodape {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 12px;
}

.apoio-pix .qr-pix {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 12px;
}

.apoio-pix p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.apoio-pix a {
  color: #12324a;
  font-weight: bold;
}

@media (max-width: 900px) {
  .pagina {
    grid-template-columns: 1fr;
  }

  .conteudo {
    order: 1;
  }

  .menu-direito {
    order: 2;
  }

  .menu-esquerdo {
    order: 3;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .apoio-pix {
    width: 100%;
  }
}