@media screen and (max-width: 767px) {body.pagina-inicial .cheio {display: block !important;}}

/* Mover botão "voltar ao topo" para o canto inferior esquerdo */
.scrollToTop {
  position: fixed !important;
  left: 20px !important;     /* distância da esquerda */
  right: auto !important;    /* desativa alinhamento à direita */
  bottom: 20px !important;   /* distância da parte inferior */
  z-index: 9999 !important;  /* garante que fique acima de outros elementos */
}

.flex-nav-next a.flex-next {
    background: transparent; /* fundo transparente */
    border: none;           /* sem borda */
    color: white;           /* cor do texto, ajuste se quiser */
    cursor: pointer;        /* muda o cursor ao passar por cima */
}

.flex-nav-next a.flex-next:hover {
    opacity: 0.8;           /* efeito sutil ao passar o mouse */
}

.flex-nav-prev a.flex-prev {
    background: transparent; /* fundo transparente */
    border: none;            /* sem borda */
    color: white;            /* cor do texto, se quiser */
    cursor: pointer;         /* cursor muda ao passar o mouse */
}

.flex-nav-prev a.flex-prev:hover {
    opacity: 0.8;            /* efeito sutil ao passar o mouse */
}