.parallax-section {
  position: relative;
  background-image: url('../assest/img/pxfuel.jpg'); /* cambia a tu imagen */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 30px;
  text-align: center;
}

.parallax-section .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 10px;
}

.parallax-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.parallax-section h3 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #fff;
}
 

/* Cards / Bloques */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  /*max-width: 1000px;*/
  margin: 0 auto;
}

.feature {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.feature:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  cursor: pointer;
}

.feature img{

  margin: 0 auto;
}

.feature p{
  margin-top: 10px;
  color: #e97b2b;
  font-weight: 700;
}

.text-feacture{
  text-align: center;
  color: #fff !important;
  font-weight: 400 !important;
}



/* ========== RESPONSIVE (≤768px) ========== */
@media (max-width: 768px) {

  .parallax-section h3 {
    font-size: 1.7rem;
  }

  .feature {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .feature  p{
    color: #fff;
  }

 .text-feacture{
    display: none;
 }

}