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

@media (max-width: 768px) {
  .productos-grid {
    grid-template-columns: 1fr;
  }
  .features .row {
    flex-direction: column;
    align-items: center;
  }
  .features .col-md-4 {
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) {
  .productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .features .row {
    flex-direction: row;
    justify-content: space-between;
  }
  .features .col-md-4 {
    margin-bottom: 0;
  }
}
.navbar {
  background-color: #2c5c37;
}
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  transition: all 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #e6f5eb;
}
.navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.navbar-toggler {
  border-color: #fff;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
}

.hero {
  background: url("../img/hero.png.PNG") center/cover no-repeat;
  height: 500px;
  border-radius: 8px;
  position: relative;
}
.hero-container {
  position: relative;
  top: -70px;
}
.hero .text-overlay {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
}
.hero .text-overlay h1 {
  color: #000;
}
.hero .text-overlay p {
  color: #000;
}

.features .card {
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s;
}
.features .card:hover {
  transform: translateY(-5px);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-top: 20px;
}

.producto {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 320px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  transition: transform 0.3s;
}
.producto:hover {
  transform: scale(1.03);
}
.producto-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.btn-primary {
  background-color: #2c5c37 !important;
  border-color: #2c5c37 !important;
}
.btn-primary:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/*# sourceMappingURL=style.css.map */
