* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #000;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  text-align: center;
}

img { max-width: 100%; display: block; }

.header {
  padding: 40px 20px;
}

.logo {
  width: 140px;
  margin: 0 auto 16px;
}

.btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid #555;
  transition: 0.3s;
}

/* BOTÃO PRINCIPAL (WhatsApp) */
/* BOTÃO PRINCIPAL */
.btn-primario {
  background: transparent;
  color: #fff;
  border-color: #555;
}

.btn-primario:hover {
  background: #fff;
  color: #000;
}



.btn-secundario {
  color: #aaa;
  border-color: transparent;
}

.btn-secundario:hover {
  color: #fff;
}

section {
  padding: 60px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}


@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.card {
  background: #111;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  text-align: center;

  width: 100%;
  max-width: 820px;
}


.img-box img {
  width: 100%;
  height: 1000px;
  object-fit: cover;
  border-radius: 14px;
}




.card img {
  border-radius: 14px;
}

.etiqueta-tecnica {
  position: absolute;
  bottom: 200px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 6px 8px;
  font-size: 0.6rem;
  border-radius: 8px;
  text-align: left;
}

.price-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  color: #000;
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
  transform: rotate(-6deg);
}

.acoes {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acoes .btn{
  width: auto;
  white-space: nowrap;
}

/* ================= FOOTER ================= */
footer {
  border-top: 1px solid #222;
  padding: 40px 20px;
  font-size: 0.85rem;
  color: #aaa;
}

/* EMPRESA */
.footer-empresa {
  margin-bottom: 24px;
}

.empresa-nome {
  font-size: 1rem;
  color: #fff;
}

.empresa-responsavel,
.empresa-cnpj,
.empresa-envio {
  font-size: 0.8rem;
  color: #777;
  margin-top: 4px;
}

/* CRÉDITOS */
.credito {
  padding-top: 20px;
  border-top: 1px solid #222;
}

.titulo-credito {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 6px;
}

.autor {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 8px;
}

.contato a {
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.contato a:first-child {
  color: #25d366; /* WhatsApp */
}

.contato a:last-child {
  color: #aaa; /* E-mail */
}

.contato a:hover {
  opacity: 0.8;
}


.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
}

