body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #fff;
  padding: 0;
  text-align: center;
}

.logo {
  width: 100%;
  height: 130px; /* Ou outro valor de altura que desejar */
  display: block;
  object-fit: fill; /* <- Aqui é o segredo para esticar completamente */
}


.descricao {
  padding: 20px;
  text-align: center;
}

.placa-texto {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
  height: auto;
}

.video-container {
  margin: 20px auto;
  max-width: 500px;
}

.video-container iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 10px;
}

.subtitulo {
  text-align: center;
  font-size: 24px;
  margin: 30px 0 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  padding: 0 20px 30px;
}

.produto {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.produto img {
  max-width: 100px;
  margin-bottom: 10px;
}

.preco {
  color: green;
  font-weight: bold;
}

button {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 6px;
  width: 100%;
}

button:hover {
  background: #333;
}

.comentarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  padding: 0 20px 30px;
}

.comentario {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 10px;
  text-align: center;
}

.comentario img {
  width: 100%;
  border-radius: 6px;
  max-height: 140px;
  object-fit: cover;
}

.comentario .nome {
  font-weight: bold;
  margin-top: 6px;
}

.comentario .texto {
  color: #555;
  font-size: 0.9em;
}

footer {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

footer img {
  max-width: 200px;
  width: 32%;
  height: auto;
}

.notificacoes {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #4caf50;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 999;
  animation: fade 0.3s ease-in-out;
  display: none;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
