.product-card-single {
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: inline-block;
    text-align: center;
  }

.product-card:hover {
transform: scale(1.05);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 10px;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: -10px 0;
}

.product-price {
  font-size: 16px;
  color: #333;
  margin-bottom: -32px;
}

.product-juros {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
  }

.product-real {
  font-size: 30px;
  font-weight: bold;
  color: #0061fe;
  margin-bottom: -15px;
}

.product-aviso {
    font-size: 12px;
    font-weight: normal;
    color: #5e5e5e;
    margin-bottom: 0px;
  }

.product-button {
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 15px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.product-button:hover {
  background-color: #218838;
}

.product-button-single {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
    transition: transform 0.3s
  }
  
  .product-button-single:hover {
    background-color: #218838;
    transform: scale(1.05);
  }

.product-timestamp {
  display: block;
  color: #777;
  font-size: 12px;
  margin-top: 10px;
}

.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
body {
    font-family: Arial, sans-serif;
    background-color: #5040cb;
    margin: 0;
    padding: 20px;
  }
  
  h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .product-card {
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 350px;
    margin: 20px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: transform 0.5s;
  }
  
  .product-card:hover {
    transform: scale(1.05);
  }
  
  .product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    padding: 10px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: -10px 0;
  }
  
  .product-price {
    font-size: 16px;
    color: #333;
    margin-bottom: -32px;
  }
  
  .product-real {
    font-size: 30px;
    font-weight: bold;
    color: #0061fe;
    margin-bottom: -15px;
  }
  
  .product-juros {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .product-aviso {
    font-size: 12px;
    color: #5e5e5e;
    margin-bottom: 0px;
  }
  
  .product-button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 15px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .product-button:hover {
    background-color: #218838;
  }
  
  .product-timestamp {
    display: block;
    color: #777;
    font-size: 12px;
    margin-top: 10px;
  }
  
  .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  /* Rodapé fixo na parte inferior da página */


.footer-text {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin: 0; /* Remove a margem padrão */
}

.footer-button {
  background-color: #ff5733; /* Cor do botão */
  color: white;
  padding: 8px 15px; /* Botão menor */
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
}

.footer-button:hover {
  background-color: #e74c3c; /* Cor de hover */
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
  .footer {
      flex-direction: column; /* Muda para coluna em telas pequenas */
      align-items: flex-start; /* Texto e botão alinhados à esquerda */
  }

  .footer-button {
      margin-top: 10px; /* Espaço entre texto e botão */
      align-self: flex-end; /* Botão alinhado à direita em telas pequenas */
  }
}

/* Garante que o conteúdo do site não vá para debaixo do rodapé */
body {
  margin: 0;
  padding-bottom: 60px; /* Altura suficiente para não sobrepor o rodapé */
}

/* Estilo do cabeçalho */
.header {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza horizontalmente */
  padding: 10px;
  background-color: #333;
  color: white;
}

.logo-container {
  display: flex;
  align-items: center; /* Alinha a logo e o título na vertical */
  justify-content: center;
}

.logo {
  width: 100px; /* Tamanho da logo, ajuste conforme necessário */
  height: auto; /* Mantém a proporção da imagem */
  margin-right: 15px; /* Espaço entre a logo e o título */
}

h1 {
  font-size: 32px;
  font-weight: bold;
  margin: 0; /* Remove a margem padrão do título */
}


  