/* ======= Título da página de votação ======= */
.votacao-faixa {
  width: 100%;
  background-color: #460000; /* mesma cor da sua faixa */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 16px;
  box-sizing: border-box;
}

.votacao-titulo {
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.6px;
  font-size: clamp(18px, 6vw, 40px);
  text-transform: uppercase;
  padding: 6px 12px;
  max-width: 1100px;
  width: 100%;
  box-sizing: border-box;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

/* destaque do "e VOTE AGORA!" */
.votacao-titulo span {
  display: inline-block;
  color: #ffd8b8;
  font-weight: 800;
  margin-left: 8px;
  font-size: 0.95em;
}

@media (max-width: 480px) {
  .votacao-faixa {
    padding: 16px 10px;
  }
  .votacao-titulo {
    font-size: clamp(16px, 8vw, 28px);
    letter-spacing: 0.4px;
    padding: 6px 10px;
  }
  .votacao-titulo span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    font-size: 0.9em;
  }
}

/* animação de entrada */
.votacao-titulo {
  transform: translateY(6px);
  opacity: 0;
  transition: transform 1000ms cubic-bezier(.2,.9,.2,1), opacity 1000ms ease;
}
.votacao-titulo.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ======= Seção de Votação ======= */
.votacao-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.duelo-imagem-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.duelo-imagem {
  width: 100%;
  height: auto;
  display: block;
}

.botao-votar {
  position: absolute;
  width: 40%;
  cursor: pointer;
  transition: transform .2s;
}

.botao-votar:hover {
  transform: scale(1.07);
}

/* Botão vermelho → lado esquerdo  */
.botao-vermelho {
  left: 4%;
  bottom: 20%;
}

/* Botão azul → lado direito */
.botao-azul {
  right: 4%;
  bottom: 20%;
}

@media (min-width: 1024px) {
  .botao-votar {
    width: 35%;
  }

  .botao-vermelho {
    left: 12%;
    bottom: 20%;
  }

  .botao-azul {
    right: 12%;
    bottom: 20%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .botao-votar {
    width: 32%;
    bottom: 18%;
  }
}

/* Mobile ajustes finos */
@media (max-width: 480px) {
  .botao-votar {
    width: 43%;
    bottom: 18%;
  }
}

.patrocinadores-videos {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.titulo-patrocinadores {
  font-weight: 700;
  margin-bottom: 15px;
  color: #460000;
  font-size: 22px;
}

/* ======= Seção do Gráfico ======= */
.votacao-grafico-section {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

.votacao-grafico-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.grafico-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  padding: 20px 20px 16px 20px;
  border-top: 4px solid #460000;
}

.grafico-titulo {
  margin: 0 0 4px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #460000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.grafico-subtitulo {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  color: #666666;
}

.grafico-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 260px;
}

.grafico-legenda-total {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
}

/* Mobile */
@media (max-width: 480px) {
  .grafico-card {
    padding: 16px 14px 12px 14px;
  }
  .grafico-titulo {
    font-size: 1.1rem;
  }
  .grafico-subtitulo {
    font-size: 0.85rem;
  }
  .grafico-canvas-wrapper {
    height: 220px;
  }
}

.banner-proxima-votacao {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.banner-votacao-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-wrapper {
  min-height: calc(100vh - 80px);
}

footer {
  height: 80px;
}
