main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.sec-titulo {
  gap: 20px;
}

.products {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cards-container {
  width: 100%;
  max-width: 1920px;
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  width: 360px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 4px 6px 5px 2px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-blue-strong);
  border-radius: 20px;
}
.card-titulo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  font-family: var(--gotham-Light-font);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: white;
  background: var(--color-blue-strong);
  padding: 20px;
  border-radius: 20px 20px 0 0px;
}
.card:hover .card-titulo {
  background: var(--color-yellow);
  color: var(--color-blue-strong);
  border: 1px solid var(--color-yellow);
}
.card-img {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.card-img img {
  width: 80%;
  height: 200px;
}
.btn-ver-producto {
  width: 90%;
  padding: 5px;
  font-family: var(--gotham-Bold-font);
  font-size: 2rem;
  border: 1.5px solid var(--color-blue-strong);
  border-radius: 10px;
  color: var(--color-blue-strong);
  background-color: white;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  padding: 10px;
}
.card:hover .btn-ver-producto:hover {
  background: var(--color-yellow);
  color: var(--color-blue-strong);
  border: none;
}
.img-container {
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px 20px 0 0;
  padding: 20px;
}
.img-container img {
  width: 100%;
  height: 360px;
}
.pagination {
  width: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 50px;
  font-family: var(--gotham-Bold-font);
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.pagination a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20%;
  text-align: center;
  background-color: var(--color-orange);
  color: white;
  border: none;
}
.pagination a:hover {
  background-color: white;
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
}
a.pag-active {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-yellow);
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
}
/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 250px) and (max-width: 767px) {
  .card-titulo {
    font-size: 1.2rem;
  }
  .sec-titulo {
    font-size: 0.8rem;
    text-align: center;
    padding: 0 20px;
  }
  .sec-titulo a img {
    width: 30px;
  }
  .cards-container {
    margin-top: 10px;
  }
  .card {
    width: 80%;
    height: auto;
  }
  .card-img img {
    height: 250px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
}
@media screen and (min-width: 1367px) and (max-width: 1919px) {
}
