
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
      font-size: 20px; /* aumenta o tamanho de tudo */

}
header, footer {
  text-align: center;
  padding: 20px;
  background: #00b7ffce;
}
/* NAVBAR */
.navbar {
  width: 100%;
  padding: 15px 30px;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #000000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 45px;
  width: auto;
  border-radius: 8px;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: #00d9ff;
  letter-spacing: 1px;
}

.navbar {
  backdrop-filter: blur(6px);
}

.sumario {
  margin: 20px 0;
  padding: 20px;
  background: #111111;
  border-radius: 8px;
  border-left: 4px solid #00c3ff;
  
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


.sumario h2 {
  color: #00c3ff;
  margin-bottom: 15px;
}

.sumario ul {
  list-style: none;
  padding: 0;
}

.sumario li {
  margin-bottom: 8px;
}

.sumario a {
  color: #ccc;
  text-decoration: none;
  transition: .2s;
}

h1,{
  color: #000000;
}



.produtos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 30px;
  width: 100%;
  min-height: 100vh;       /* preenche a tela inteira */
  box-sizing: border-box;
}


section.produto {
  width: 600px;              /* tamanho ideal pro "card" */
  margin: 20px auto;         /* CENTRALIZA a section inteira */
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;        /* CENTRALIZA os textos e botões */
  box-shadow: 0 0 10px #00000015;
}
.foto-produto {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
a {
  display: inline-block;
  margin: 10px 5px;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.btn-amazon {
  background: #ff9900;
  color: #000;
}

.btn-shopee {
  background: #ff4d00;
  color: #fff;
}
.card {
    position: relative;
    display: inline-block;
}

.card img {
    width: 100%;
    border-radius: 10px;
}
a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

