body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #001f3f;
}

.background-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: backgroundAnimation 25s infinite;
  z-index: -1;
}

@keyframes backgroundAnimation {
  0% {
    background-image: url('../images/zap/imagens da loja (1).jpeg');
  }
  25% {
    background-image: url('../images/zap/imagens da loja (2).jpeg');
  }
  50% {
    background-image: url('../images/zap/imagens da loja (3).jpeg');
  }
  75% {
    background-image: url('../images/zap/imagens da loja (4).jpeg');
  }
  100% {
    background-image: url('../images/zap/imagens da loja (5).jpeg');
  }
}

header {
  background-color: rgba(0, 31, 63, 0.9);
  color: white;
  padding: 20px 0;
  text-align: center;
  position: relative;
}

header h1 {
  margin: 0;
  font-size: 36px;
}

.content-container {
  padding: 40px 20px;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.9);
  max-width: 1200px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-container h2 {
  color: #cc5500;
  font-size: 28px;
  text-align: center;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-list li {
  font-size: 18px;
  margin: 10px 0;
  color: #001f3f;
  display: flex;
  align-items: center;
}

.product-list li::before {
  content: '\2022';
  color: #cc5500;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  margin-right: 10px;
}

footer {
  background-color: #001f3f;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

footer a {
  color: #cc5500;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.back-btn {
  display: inline-block;
  background-color: #cc5500;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 30px;
  transition: background-color 0.3s, transform 0.3s;
  text-align: center;
}

.back-btn:hover {
  background-color: #ff7f00;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .content-container {
    padding: 20px;
  }
}

/* Estilo para os itens da lista */
.product-list {
  position: relative;
}

.product-list li {
  position: relative;
  list-style: none;
  margin: 10px 0;
  font-size: 1.2em;
}

/* Estilo para os links */
.product-list li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Animação ao passar o mouse */
.product-list li a:hover {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

/* Exibir mensagem "Solicitar orçamento" */
.product-list li a::after {
  content: 'Solicitar orçamento';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.9em;
  color: white;
}

.product-list li a:hover::after {
  opacity: 1;
}

/* Contêiner para exibir a imagem */
.product-image-preview {
  position: absolute;
  top: 0;
  left: 250px; /* Ajuste para posicionar a imagem ao lado do link */
  width: 150px;
  height: 150px;
  border: 1px solid #ddd;
  background-color: white;
  display: none;
  align-items: center;
  justify-content: center;
}

.product-image-preview img {
  max-width: 100%;
  max-height: 100%;
}
