/* ================= RESET ================= */

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

body {
  font-family: "DM Sans", sans-serif;
  color: #222;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ================= NAV ================= */

.navbar-brand img {
  width: 180px;
}

.nav-link {
  transition: color 0.3s ease;
}

/* LINK ACTIVO */
.home .nav-home,
.productos .nav-productos,
.marcas .nav-marcas,
.quienes .nav-quienes,
.contacto .nav-contacto {
  color: #7b2cbf !important;
  font-weight: bold;
}

/* ================= BANNER ================= */

.banner {
  width: 100%;
  height: 400px;
  background-image: url("../assets/img/banner-home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.banner-content {
  margin-left: 5%;
  color: white;
  max-width: 600px;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.banner-content .btn {
  background-color: #7b2cbf;
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner-content .btn:hover {
  transform: scale(1.05);
  background-color: #5a189a;
}

/* ================= PRODUCTOS ================= */

.producto-img {
  height: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.producto-img:hover {
  transform: scale(1.05);
}

/* ================= MARCAS ================= */

.marca-img {
  max-width: 260px;
  height: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.marca-img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ================= FOOTER ================= */

footer {
  background-color: #f5f5f5;
  padding: 20px 0;
}

footer p {
  margin-bottom: 10px;
}

/* ================= REDES SOCIALES ================= */

.redes-sociales {
  margin-top: 10px;
}

.redes-sociales img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.redes-sociales img:hover {
  transform: scale(1.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .navbar-brand img {
    width: 140px;
  }

  .banner {
    height: 300px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

}