#cart-bnt::selection {
    background-color: #35ad33;
}

body {
  background-color: #b9f3b8;
}

.contenedor__producto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: minmax(0, 500px);
  gap: 15px;
  margin-top: 20vh;
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  grid-column-start: 1;
  grid-column-end: 3;
  object-fit: fill;
}

.producto {
  display: grid;
  padding-bottom: 3.5px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  border: .2px solid #000000;
  border-radius: 8px;
  background-color: #ffffff;
}

.producto:hover {
    transition: .8s ease-in-out;
}


.producto button {
  height: 7vh;
  border: .3px solid #000000;
  padding: 2px;
    border-radius: 25px;
    margin-left: 10%;
    margin-right: 10%;
    font-size: 13px;
}

.quitar {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 6;
  grid-row-end: 7;
}

.agregar {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 6;
  grid-row-end: 7;
}

.agregar:hover {
    background-color: #35ad33;
    color: #ffffff;
    transition: .3s ease-out;
}

.quitar:hover {
  background-color: #e0070b;
  color: #ffffff;
  transition: .3s ease-out;
}

.contenedor__producto h3 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  border-bottom: .5px solid #000000;
}

.contenedor__producto p {
  font-size: 15px;
  text-align: center;
  grid-row-start: 4;
  grid-row-end: 5;
  border-bottom: .5px solid #000000;
}

.carrito {
    font-size: 15px;
}

.btn-comprar {
    font-size: 15px;
    border: .2px solid #000000;
    border-radius: 15px;
    margin: 8px;
    padding: 5px;
    margin-right: 10px;
}

.btn-comprar:hover {
    background-color: #35ad33;
    color: #ffffff;
    transition: .3s ease-out;
}

.colorear {
  background-color: #35ad33;
  color: #ffffff;
}

.imagen__producto {
  width: 100%;
  height: 50vh;
}


@media (max-width: 768px) {
    body {
      width: 100%;
    }
  
    #menu-btn {
      display: inline-block;
    }
    .header .search-form {
      width: 70%;
    }
    .header .navbar {
      position: absolute;
      top: 110%;
      right: -110%;
      width: 30rem;
      box-shadow: var(--box-shadow);
      border-radius: 0.5rem;
      background: #fff;
    }
    .header .navbar a {
      font-size: 1.5rem;
      margin: 1.5rem 2rem;
      display: block;
    }
    .inicio {
      display: cover;
      padding-top: 10rem;
      padding-bottom: 5rem;
    }
    .servicios .box-conteiner .box {
      padding: 1rem;
    }
  .nav__input:checked + .nav__menu {
      clip-path: circle(100% at center);
  }
  
  .carousel-item {
      text-align: center; 
  } 
  
  .c-img {
      max-width: 100%; 
      height: auto; 
  }
  
  .carousel-caption {
      position: absolute;
      top: 50%; 
      left: 0;
      right: 0;
      transform: translateY(-50%);
      text-align: center;
  }
  .pie-pagina .grupo-1 {
      width: 90%;
      grid-template-columns: repeat(1, 1fr);
      grid-gap: 30px;
      padding: 35px 0;
  }
  
  .logo {
    display: none;
  }
  
  .icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-self: flex-end;
  }
  
  .carrito {
    margin-right: 15%;
  }
  
  }