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

body body {
  background-color: #f2f4f8;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

footer {
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}
footer p {
  margin: 0;
}

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  font-weight: bold;
  color: #000;
}
.navbar .nav-link {
  color: #000 !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: border-bottom 0.3s ease;
}
.navbar .nav-link:hover {
  border-bottom: 2px solid #000;
}
.navbar .nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.btn-primary, .card .card-body .btn {
  background-color: #000 !important;
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.btn-primary:hover, .card .card-body .btn:hover {
  background-color: rgb(25.5, 25.5, 25.5);
}

.card {
  background-color: #e5e9f0;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.03);
}
.card .card-img-top {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .card-body {
  padding: 15px;
}
.card .card-body .card-text {
  font-weight: bold;
  margin-bottom: 10px;
}
.banner img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .banner img {
    height: 200px;
  }
}

.novedades {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.novedades h2 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.novedades .row {
  justify-content: center;
}

.productos-section {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.productos-section h2 {
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.productos-section .row {
  justify-content: center;
}