html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; }
.glass-effect {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.text-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #2a9d8f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Estilos Paginación */
.page-btn.active {
    background-color: #2A9D8F!important;
    color: white!important;
}
.box-Logo{
    width: 8%;
}
.imgLogo img{
    width: 100%;
}
.box-product{
    height: 62vh;
    display: flex!important;
    flex-direction: column!important;
    justify-content: space-between!important;
}
.brand-section {
  padding: 20px 0px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: sans-serif;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.brand-grid img {
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  mix-blend-mode: multiply;
}

.brand-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.brand-section-certi {
  padding: 30px 0;
  width: 100%;
}

.brand-grid-certi {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.brand-grid-certi img {
  height: 80px;
  width: 80px;
  /*max-height: 40px;
  max-width: 120px;*/
  object-fit: contain;
  /*opacity: 0.6;
  filter: brightness(0) invert(1);*/
  border-radius: 15px;
  mix-blend-mode: lighten;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.brand-grid-certi img:hover {
  opacity: 1;
  filter: none;
}

@media (max-width: 768px) {
  .brand-grid-certi {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .brand-grid-certi img {
    max-height: 32px;
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .brand-section {
    padding: 40px 15px;
  }
  
  .brand-title {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
  
  .brand-grid {
    gap: 25px;
  }
  
  .brand-grid img {
    max-width: 110px;
    max-height: 45px;
  }
}
@media (max-width: 768px) {
    .box-Logo {
        width: 25%;
    }
    .box-product {
        height: auto;
        gap: 20px;
    }
    .brand-section {
        padding: 40px 15px;
    }
    .brand-title {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }
    .brand-grid {
        gap: 25px;
    }
    .brand-grid img {
        max-width: 110px;
        max-height: 45px;
    }
    .brand-grid-certi {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    .brand-grid-certi img {
        height: auto;
        width: auto;
        max-height: 32px;
        max-width: 100px;
    }
  }
  .glass-effect {
      background-color: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
  }
  