.BannerLogo-container {
  position: relative;
  width: 100%;
  height: 12.5rem;
  overflow: visible;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-text h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}

.logo-image {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  height: 12.5rem;
  z-index: 2;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%);
  max-width: 60%;
  color: #010036;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  padding: 2rem;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  justify-items: center;
}

.product-card {
  background-color: #ffffff;
  border: 0.06rem solid #ddd;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1019607843);
  width: 100%;
  max-width: 16.25rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card img {
  width: 70%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.product-card h2 {
  font-size: 1.125rem;
  margin: 0.75rem 0 0.5rem;
  color: #333;
}

.product-card .description {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.625rem;
}

.product-card .price {
  font-size: 1.25rem;
  color: #4a90e2;
  font-weight: bold;
  margin-bottom: 1rem;
}

.old-price {
  text-decoration: line-through;
  color: #d30c0c;
  margin-right: 2.5rem;
  margin-left: -5.625rem;
  font-size: 0.875rem;
}

.product-card button {
  background-color: #4a90e2;
  color: #ffffff;
  border: none;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.product-card button:hover {
  background-color: #3c7ac7;
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  height: 12.5rem;
  overflow: hidden;
}

.footer-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.footer-content p {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #000000;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.logotipo-footer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logotipo-footer:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 4px 8px;
}

@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .BannerLogo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 1rem;
  }
  .banner-image {
    display: none;
  }
  .logo-image {
    position: static;
    transform: none;
    height: 8rem;
    margin-bottom: 1rem;
  }
  .banner-text {
    position: static;
    margin-top: 2.5rem;
    max-width: 100%;
    text-align: center;
    color: #010036;
  }
  .banner-text h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
/* General */
* {
  font-family: "Exo 2", sans-serif;
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

.text-center {
  text-align: center;
}

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