*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Roboto', sans-serif;
  background:#fafafa;
}

/* Topo */
.topo-redes{
  background:#111;
  color:white;
  padding:8px 0;
}

.topo-container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.left-text{
  font-size:13px;
  opacity:.8;
}

.social-icons a{
  color:white;
  margin-left:12px;
  font-size:14px;
  transition:.2s;
}

.social-icons a:hover{
  color:#ff6f61;
}

/* Banner */
.banner{
  width:100%;
  height:260px;  
  display:flex;
  align-items:center;
  justify-content:center;
}

.banner-overlay{
  text-align:center;
  background:rgba(0,0,0,.55);
  padding:25px 50px;
  border-radius:14px;
}

.banner h1{
  color:white;
  margin:0;
  font-size:32px;
}

.banner p{
  color:white;
  margin-top:6px;
  opacity:.9;
}

/* Produtos */
.titulo-secao{
  text-align:center;
  color:#222;
  margin-top:30px;
  margin-bottom:10px;
  font-weight:700;
}

.produtos{
  width:90%;
  margin:auto;
  margin-top:15px;
}

.card{
  background:white;
  padding:20px;
  border-radius:18px;
  margin-bottom:18px;
  box-shadow:0 10px 35px rgba(0,0,0,.06);
  border:1px solid #eee;
}

/* Cabeçalho do card */
.linha-topo{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.titulo-produto{
  margin:0;
  font-size:17px;
  color:#333;
  font-weight:700;
}

/* Estoque */
.estoque-box{
  padding:4px 9px;
  border-radius:25px;
  font-size:10px;
  letter-spacing:.3px;
}

.ok{
  background:#D9F7B7;
  color:#39640B;
  border:1px solid #65AE13;
}

.off{
  background:#ffe9e9;
  color:#b71c1c;
  border:1px solid #b71c1c;
}

/* Separador clean */
.separador{
  width:100%;
  height:1px;
  background:linear-gradient(to right, transparent, #ddd, transparent);
  margin:12px 0;
}

/* ⭐ PREÇO ELEGANTE */
.preco{
  font-size:19px;
  font-weight:900;
  color:#1a1a1a;
  margin:0;
  display:inline-block;
  background:#fff2ef;
  color:#c23c33;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid #ff6f61;
  box-shadow:0 6px 20px rgba(255,111,97,.25);
}

/* Rodapé */
footer{
  background:#111;
  color:white;
  margin-top:50px;
  padding-top:35px;
}

.footer-container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-column{
  width:30%;
  min-width:260px;
}

.footer-column h3{
  margin-top:0;
  margin-bottom:10px;
}

.footer-column p{
  font-size:14px;
  opacity:.9;
}

.footer-column i{
  color:#7D8635;
  margin-right:6px;
}

.redes-footer a{
  display:inline-block;
  width:32px;
  height:32px;  
  color:#111;
  border-radius:50%;
  text-align:center;
  line-height:32px;
  margin-right:8px;
  transition:.2s;
}

.redes-footer a:hover{
  
}

.footer-bottom{
  text-align:center;
  padding:12px;
  margin-top:10px;
  font-size:13px;
  background:#000;
}
/* ========= INFORMAÇÕES BOXES ========= */
.info-boxes{
  background:#f5f7e8; /* cor suave */
  padding:50px 0;
}

.info-boxes .container{
  width:1200px;   /* mesma largura do topo */
  max-width:95%;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.info-boxes .box{
  flex:1;
  min-width:250px;
  background:#fff;
  padding:25px 20px;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  text-align:left;
  transition:0.3s;
}

.info-boxes .box:hover{
  transform:translateY(-5px);
  box-shadow:0 8px 15px rgba(0,0,0,0.12);
}

/* Header com ícone e título */
.info-boxes .box-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.info-boxes .box-header i{
  font-size:24px;
  color:#7D8635;
}

.info-boxes .box-header h3{
  margin:0;
  font-size:18px;
  color:#7D8635;
}

.info-boxes .box p{
  color:#333;
  font-size:15px;
  line-height:1.6;
}

/* RESPONSIVO */
@media(max-width:900px){
  .info-boxes .container{
    flex-direction:column;
    align-items:center;
  }

  .info-boxes .box{
    width:90%;
  }
}