* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #74a9ff, #8e9bff);
  overflow-x: hidden;
}

/* FUNDO */
.page-bg {
  position: relative;
  min-height: 100vh;
  padding: 40px 0 80px;
}

/* BANNERS LATERAIS */
.side-banner {
  position: fixed;
  top: 0;
  width: 204px;
  height: 100vh;
  object-fit: cover;
  filter: blur(3px);
  opacity: 0.8;
  z-index: 1;
}
.side-banner.left { left: 0; }
.side-banner.right { right: 0; }

/* HERO */

.hero {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}


.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/mundocriancabg.jpg") center / cover no-repeat;
  opacity: 0.84; /* 84% como você pediu */
  z-index: 0;
}


.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
}

.hero-logo {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
}

.hero-card h1 {
  font-size: 28px;
  margin: 5px 0;
  color: #000;
}

.hero-card p {
  font-size: 14px;
  color: #111;
}


/* PRODUTOS */
.products-wrapper {
  background: #fff;
  max-width: 1150px;
  margin: auto;
  padding: 48px;
  border-radius: 28px;
  position: relative;
  z-index: 2;
}

.products-wrapper h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card h3 {
  min-height: 44px;
  font-size: 15px;
  margin-bottom: 6px;
}

.product-card .desc {
  min-height: 52px;
  font-size: 13px;
  color: #555;
}

.price {
  margin: 12px 0;
  font-weight: bold;
  color: #3b82f6;
}

/* BOTÃO */
.btn {
  margin-top: auto;
  background: #6fa3ff;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.2s;
}
.btn:hover {
  background: #5b91f5;
}

/* BADGES */
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 7px;
  color: #fff;
}
.badge-best { background: #f59e0b; }
.badge-recommended { background: #22c55e; }
.badge-pack { background: #ef4444; }

/* FOOTER */
footer {
  margin-top: -126px;
  text-align: center;
  color: #000000;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}

.socials img {
  width: 26px;
  transition: transform 0.2s;
}
.socials img:hover {
  transform: scale(1.1);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .side-banner { display: none; }

  .products-wrapper {
    padding: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
