.mabex-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* Hero Section */
.mabex-hero {
  min-height: 100vh;
  /*      background: linear-gradient(rgba(26, 42, 79, 0.85), rgba(26, 42, 79, 0.9)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;*/
  background: linear-gradient(rgba(26, 42, 79, 0.85), rgba(26, 42, 79, 0.9)), url(../images/bg-hero-vs1.jpg.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
}

.mabex-logo {
  width: 180px;
  filter: brightness(0) invert(1);
  margin-bottom: 30px;
}

.mabex-divider {
  width: 100px;
  height: 2px;
  background: var(--mabex-gold);
  margin: 30px auto;
}

/* About Section */
.mabex-about-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.mabex-about-img {
  height: 100%;
  min-height: 400px;
  background: url(../images/bg-home-seccion_1.jpg.jpg) center/cover no-repeat;
}

/* Values Section */
.mabex-value-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  border-top: 4px solid var(--mabex-gold);
}

.mabex-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mabex-value-icon {
  font-size: 2.5rem;
  color: var(--mabex-gold);
  margin-bottom: 25px;
}

/* Fabrics Section */
.mabex-fabric-card {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.mabex-fabric-img {
  width: 40%;
  background-size: cover;
  background-position: center;
}

.mabex-fabric-content {
  width: 60%;
  padding: 30px;
}

/* Products Section */
.mabex-product-card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mabex-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mabex-product-img {
  height: 300px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.mabex-product-card:hover .mabex-product-img {
  transform: scale(1.05);
}

.mabex-section-title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.mabex-section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--mabex-gold);
}

.mabex-section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
}

.mabex-bg-light {
  background-color: var(--mabex-light);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mabex-fabric-card {
    flex-direction: column;
  }

  .mabex-fabric-img,
  .mabex-fabric-content {
    width: 100%;
  }

  .mabex-fabric-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .mabex-about-img {
    min-height: 300px;
  }

  .mabex-hero h1 {
    font-size: 2.5rem;
  }

  .mabex-product-img {
    height: 250px;
  }
}


.btn-detalle-mabex {
  border: 1px solid #333;
  background-color: white;
  color: #333;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.btn-detalle-mabex:hover {
  background-color: #333;
  color: white;
}
