.locations-preview {
  padding: 80px 0;
}

.location-item {
  padding: 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.location-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Blog Preview */
.featured-blog {
  background: #f8f9fa;
  padding: 80px 0;
}

.blog-preview-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-preview-card:hover {
  transform: translateY(-5px);
}

.blog-preview-image {
  height: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-preview-content {
  padding: 25px;
}

/* Quick Contact */
.quick-contact {
  background: var(--primary-color);
  color: white;
  padding: 40px 0;
}

.quick-contact .btn-light {
  border: 2px solid white;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  position: relative;
  width: 100%;
  /* Asegurar que ocupe todo el ancho */
}

.product-image img {
  width: 100%;
  /* Ocupar todo el ancho disponible */
  height: 100%;
  object-fit: cover;
  /* Cubrir todo el espacio sin distorsionar */
  transition: transform 0.5s ease;
  display: block;
  /* Eliminar espacio inferior */
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image .fa-4x {
  font-size: 4rem;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.card-text {
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-specs {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-specs h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.btn-custom {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #1a252f;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .product-image {
    height: 180px;
  }
}

