.rodape-container {
  width: 100%;
  background: #2b104d;
  padding: 12px 0;
  color: #d4af37;
  font-size: 0.95rem;
  font-family: sans-serif;
  border-top: 2px solid #d4af37;
}

.rodape-linha {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
}

.rodape-bloco {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 4px;
}

.rodape-bloco .data-hora-box {
  background: #d4af37;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  color: #120323;
  display: inline-block;
  min-width: 160px;
}

.linha-vertical-total {
  width: 2px;
  background-color: #d4af37;
}

@media screen and (max-width: 768px) {
  .rodape-linha {
    flex-direction: column;
    gap: 10px;
  }

  .linha-vertical-total {
    display: none;
  }

  .rodape-bloco {
    width: 100%;
  }
}