/* RESET + BASE */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #f6f6f6;
  padding-top: 140px;
}

/* NAVBAR */
.navbar-custom {
  background: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-logo {
  height: 70px;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: 0.3s;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* PADRONIZA IMAGENS DOS PRODUTOS */
.product-card img {
  width: 100%;
  height: 220px;    
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .product-card img {
    height: 150px;
  }
}

/* CARROSSEL DE PRODUTOS (CATEGORIAS) */
.products-carousel {
  position: relative;
}

.products-carousel .carousel-item {
  padding: 15px 0;
}

.products-carousel .carousel-control-prev,
.products-carousel .carousel-control-next {
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  top: 40%;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.products-carousel .carousel-control-prev {
  left: -25px;
}

.products-carousel .carousel-control-next {
  right: -25px;
}

.products-carousel .carousel-control-prev-icon,
.products-carousel .carousel-control-next-icon {
  filter: invert(28%) sepia(60%) saturate(500%) hue-rotate(185deg);
}

/* SLIDER DE MARCAS */
.brands-slider {
  background: #ffffff;
  padding: 30px 0;
  margin-top: 10px;
}

.brands-slider img {
  width: 100%;
  max-width: 160px;
  height: 70px;
  object-fit: contain;
}

.fornecedor-item img {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  font-size: 33px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* RODAPÉ */
footer {
  margin-top: 60px;
  background: #212529;
  padding: 40px 10px;
  text-align: center;
  color: white;
}
footer a {
  color: #fff;
  transition: 0.3s;
}
footer a:hover {
  color: #0d6efd;
}

section {
  scroll-margin-top: 100px;
}
.product-item {
  text-align: center;
}

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

  .brands-slider img {
    max-height: 55px;
    margin: 0 auto;
    display: block;
  }

  .fornecedor-item img {
    max-width: 130px;
  }
  
  .brands-slider .carousel-item .row {
    min-height: 120px;
  }

  .products-carousel .carousel-control-prev {
    left: -10px;
  }

  .products-carousel .carousel-control-next {
    right: -10px;
  }
  
}