/* Estilos globales */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: #202124;
}

/* Banner Pixelsnap */
.pixelsnap-hero {
  max-width: 1280px;
  margin: 30px auto;
  background: #e8eef8;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 40px;
  align-items: center;
}

.pixelsnap-info h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}

.pixelsnap-info p {
  font-size: 14px;
  color: #3c4043;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 440px;
}

.pixelsnap-info a {
  color: #1a73e8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.pixelsnap-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pixelsnap-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.pixelsnap-gallery .large-img {
  grid-row: span 2;
}

/* Catálogo de productos */
.catalog-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.product-img-box {
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.product-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #202124;
}

.product-price {
  font-size: 13px;
  color: #5f6368;
  font-weight: 500;
}

/* Botones */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-blue {
  background-color: #1a73e8;
  color: #ffffff;
}

/* Adaptabilidad para pantallas pequeñas */
@media (max-width: 900px) {
  .main-layout {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pixelsnap-hero {
    grid-template-columns: 1fr;
  }
}