* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #f2f2f2;
}

.topo {
  background: #1b5e20;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topo a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}

.container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.aviso {
  text-align: center;
  font-size: 18px;
}

.lote h2 {
  margin-top: 0;
}

.info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 15px 0;
}

.lance-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.valor {
  font-size: 36px;
  color: #d32f2f;
  font-weight: bold;
}

.tempo {
  font-size: 24px;
}

.btn-lance {
  width: 100%;
  padding: 18px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
}

.btn-lance:hover {
  background: #1b5e20;
}

.bloqueado {
  background: #999;
  text-align: center;
  display: block;
  pointer-events: none;
}

.rodape {
  text-align: center;
  padding: 15px;
  background: #e0e0e0;
  font-size: 14px;
}






.topbar-item.center a {
  color: #fff;       /* cor dos ícones */
  margin: 0 8px;     /* espaçamento entre eles */
  font-size: 18px;   /* tamanho do ícone */
  text-decoration: none;
}

.topbar-item.center a:hover {
  color: #ffd700;    /* cor ao passar o mouse */
}
.topbar {
  background: #da4c0c;
  color: #fff;
  font-size: 14px;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-item {
  white-space: nowrap;
}

.topbar-item.center {
  flex: 1;
  text-align: center;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  margin-left: 8px;
  font-weight: 500;
}

.topbar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .topbar-item.center {
    flex: none;
  }
}









.header {
  background: white;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #e37b4c;   /* Borda de 1px no topo */
  border-bottom: 1px solid #e37b4c; /* Borda de 1px embaixo */
  border-left: none;             /* Sem borda lateral esquerda */
  border-right: none;            /* Sem borda lateral direita */
  box-sizing: border-box;        /* Garante que a borda não aumente a largura total */
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.menu {
  display: flex;
  gap: 10px;
}


.menu a {
    margin: 0px 9px;
    text-decoration: none;
    color: #616160;
    font-weight: 600;
    font-size: 14px;
}

.menu a:hover {
  color: black;
}

.acoes {
  display: flex;
  gap: 10px;
}

.btn-cta {
  background: #2e7d32;
  color: #fff;
  padding: 10px 14px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-cliente {
    background: #da4c0c;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 15px;
    text-decoration: none;
}

.btn-aovivo {
    background: white;
    border: 1px solid red;
    color: red;
    padding: 10px 14px;
    border-radius: 15px;
    text-decoration: none;
}


.header-capa img {
  width: 100%;
  display: block;
}