/* css/style.css */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #ffffff !important; /* Fundo branco puro e forçado */
  color: #333333 !important; /* Texto escuro para contraste */
  text-align: center;
}

header {
  background-color: #ffffff !important;
  padding: 20px;
  border-bottom: 1px solid #eeeeee;
}

.logo {
  max-width: 400px;
  height: auto;
}

.subtitle {
  color: #666666 !important;
  margin-top: 5px;
  font-size: 16px;
}

.intro {
  padding: 60px 20px;
  background-color: #ffffff !important;
}

.intro h1 {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 24px;
  color: #222222 !important;
}

.marketplaces {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: #ffffff !important;
}

.marketplaces img {
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Sombra mais visível no fundo branco */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketplaces img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

footer {
  padding: 40px 20px;
  background-color: #f8f8f8 !important; /* Rodapé levemente cinza para separar */
  color: #888888 !important;
  font-size: 14px;
  border-top: 1px solid #eeeeee;
  margin-top: 60px;
}
