/** Shopify CDN: Minification failed

Line 363:0 All "@import" rules must come first

**/
/* Estilos generales para la página de inicio */

body.index {
  background-color: #fafafa;
  font-family: "Poppins", sans-serif;
}

/* Títulos generales en la home */
h2.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #111;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

h2.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d6b56c;
  margin: 10px auto 0;
}

/* Separación entre bloques */
.maestro42-section,
.experiencias-premium,
.nuestras-categorias,
.mejores-productos {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .maestro42-section,
  .experiencias-premium,
  .nuestras-categorias,
  .mejores-productos {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Botón general reutilizable */
.btn-primary {
  background-color: #d6b56c;
  color: #002b45;
  font-weight: 500;
  border-radius: 6px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: #c5a85b;
  color: white;
}

/* Nuestras Categorías - Featured Collections */
.nuestras-categorias h3.title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.nuestras-categorias h3.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d6b56c;
  margin: 10px auto 0;
}

.nuestras-categorias .collection {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nuestras-categorias .collection:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.nuestras-categorias .collection-details {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
}

.nuestras-categorias .collection-details h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #002b45;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.nuestras-categorias .collection-images {
  width: 100%;
  height: 220px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.nuestras-categorias .collection:hover .collection-images {
  transform: scale(1.03);
}


.mejores-productos {
  background-color: #ffffff;
}

.mejores-productos h2.title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.mejores-productos h2.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d6b56c;
  margin: 10px auto 0;
}

/* Tarjeta de producto */
.mejores-productos .product {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 15px;
  margin: 10px;
}

.mejores-productos .product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Imagen de producto */
.mejores-productos .product .product-images img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.mejores-productos .product:hover .product-images img {
  transform: scale(1.04);
}

/* Nombre del producto */
.mejores-productos .product-title {
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-top: 12px;
  color: #002b45;
}

/* Botones */
.mejores-productos .product-buttons {
  margin-top: 10px;
}

.mejores-productos .product-buttons a {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mejores-productos .product {
    margin: 10px 0;
  }

  .mejores-productos .product-title {
    font-size: 1rem;
  }
}

.destacado-maestro42 {
  border: 2px solid #d6b56c;
  box-shadow: 0 8px 25px rgba(214, 181, 108, 0.2);
  position: relative;
  padding: 10px;
  margin: 0 5px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.destacado-maestro42:hover {
  transform: translateY(-6px);
}

.destacado-maestro42::before {
  content: "⭐ Destacado";
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d6b56c;
  color: #002b45;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Nuestros Servicios */
.nuestros-servicios {
  background-color: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.nuestros-servicios h3.title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.nuestros-servicios h3.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d6b56c;
  margin: 10px auto 0;
}

.nuestros-servicios .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.nuestros-servicios .col-md-4 {
  flex: 0 1 calc(25% - 30px);
  max-width: calc(25% - 30px);
}

@media (max-width: 991px) {
  .nuestros-servicios .col-md-4 {
    flex: 0 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 575px) {
  .nuestros-servicios .col-md-4 {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .nuestros-servicios .servicio-texto {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .nuestros-servicios.container {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.nuestros-servicios .servicio-item {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nuestros-servicios .servicio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.nuestros-servicios .servicio-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.nuestros-servicios .servicio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.nuestros-servicios .servicio-item:hover img {
  transform: scale(1.05);
}

.nuestros-servicios .servicio-texto {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  z-index: 2;
}


.nuestros-servicios .servicio-item a::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}



@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap");
