*{margin:0;padding:0;box-sizing:border-box;font-family:Arial}

html, body {
  height: 100%;
  min-height: 100vh;
  background: #000;
  color: #fff;
}

.header{
  display:flex;justify-content:space-between;align-items:center;
  padding:20px;position:fixed;width:100%;top:0;
  background:rgba(0, 0, 0, 0.7);backdrop-filter:blur(10px);z-index:1000
}

.logo{height:45px}

nav a{color:#fff;margin-left:20px;text-decoration:none;transition:.3s}
nav a:hover{color:#f88901}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.8)),
              url('banner.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h1{font-size:3rem;margin-bottom:10px}
.hero p{opacity:.8;margin-bottom:20px}
.hero button{
  padding:12px 25px;background:#f88901;border:none;border-radius:30px;
  cursor:pointer;font-size:16px;font-weight:bold;transition:.3s;color: #000 !important;
}

.hero button:hover{transform:scale(1.1)}

.secao-produtos {
  background: #f88901;
  padding: 40px 20px;
}

.produtos {
  padding: 20px 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;

  background: #f88901; /* 🔥 aqui fica o laranja */
}

.card{
  background:#000000;border-radius:15px;padding:15px;text-align:center;
  transition:.4s;opacity:0;transform:translateY(30px)
}

.card.show{opacity:1;transform:translateY(0)}

.card:hover{transform:translateY(-10px) scale(1.03)}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1; /* deixa sempre quadrado */
  object-fit: cover;   /* corta a imagem sem distorcer */
  border-radius: 10px; /* opcional (fica mais bonito) */
}

.card h3{margin-bottom:10px}

.card button{
  padding:14px 22px;
  background:#f88901;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:bold;
  font-size:16px;
  color:#000 !important;
  margin: 0 auto;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.card button:hover{
  transform: scale(1.05);
  transition: 0.2s;
}

.icon-carrinho{
  width:18px;
  height:18px;
}


.whatsapp{
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}

.whatsapp img {
  width: 60px;
  height: 60px;
}

footer{text-align:center;padding:20px;background:#000000}

@media(max-width:600px){
  .hero h1{font-size:2rem}
}


.titulo-produtos {
  text-align: center;
  margin-bottom: 20px;
  font-size: 35px;
  color: #000;
}

html {
  scroll-behavior: smooth;
}

#titulo-produtos {
  scroll-margin-top: 80px;
}

/* hamburguer */
.hamburguer {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburguer span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* mobile */
@media(max-width: 768px) {

  /* ESCONDE menu padrão */
  #menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000000;
    width: 200px;
    display: none; /* 🔥 ESSENCIAL */
    flex-direction: column;
    padding: 20px;
    text-align: right;
    z-index: 1000;
  }

  /* mostra quando ativo */
  #menu.ativo {
    display: flex;
  }

  /* links */
  #menu a {
    margin: 10px 0;
  }

  /* mostra hamburguer */
  .hamburguer {
    display: flex;
  }
}

button {
  color: #000 !important;
}

