/* ===================================
    Seccion Beneficios
====================================== */

/* posiciones tarjetas y background */
.block.a{ top: 0; left: 0;   background: rgba(26, 184, 182, .90); }
.block.b{ top: 0; left: 0; background: rgba(26, 126, 189, .90); }
.block.c{ top: 0; right:0; background: rgba(26, 136, 74, .90); }
.block.d{ top: 0; right: 0;  background: rgba(44, 69, 131, .90); }

/* Background tarjetas hover */
.block.a:hover{background: rgba(26, 184, 182, .70); }
.block.b:hover{background: rgba(26, 126, 189, .70); }
.block.c:hover{background: rgba(26, 136, 74, .70); }
.block.d:hover{background: rgba(44, 69, 131, .70); }


/* ===================================
    Cards
====================================== */


#biometano .mini-cards-section{
  position: relative;
  overflow: visible;
  height: auto!important;
}


/* Contenedor */
#biometano .mini-cards{
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap:15px;
}

/* Tarjeta (solo parallax aquí) */
#biometano .mini-card{
  position: relative;
  width: 100%;
  min-height: 100%!important;
  will-change: transform;
  transform: translate3d(0,0,0);
}


/* Estilo visual */
#biometano .mini-card-inner{
  width: 100%;
  height: 100%;
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 20px!important;
  box-shadow: 0 18px 42px rgba(17,24,39,.18);
}

/* Icono */
#biometano .mini-ico{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;

}

#biometano .mini-ico img{
  width:auto;
  height: 50px;
}

/* Texto */
#biometano .mini-card-inner p{
  margin: 0;
  text-align: left;
  color: #B0B0B0;
}

/* Responsive: se acomodan solas */

/* xxs */ @media (max-width: 430px) {}
/* xs  */ @media (min-width: 431px) {


} /* @media (max-width: 575px) {} */
/* sm  */ @media (min-width: 576px) {



}
/* md  */ @media (min-width: 768px) {

  #biometano .mini-card{width: 100%;}
  #biometano .mini-ico img{ height: 70px;}

  #biometano .mini-cards{grid-template-columns: repeat(4,1fr);gap:15px;}

  #biometano .mini-card{
  position: relative;
  width: 100%;
  min-height: 200px;
  will-change: transform;
  transform: translate3d(0,0,0);
}

} /* ipad Portrait */
/* lg  */ @media (min-width: 992px) {


} /* ipad Landscape */
/* xl  */ @media (min-width: 1200px) {}
/* xxl */ @media (min-width: 1400px) {}



/* ===================================
    responsive
====================================== */

/* lg  */ @media (min-width: 992px) {


.block.a{ top: 10%; left: 0;}
.block.b{ top: 50%; left: 20%;}
.block.c{ top: 35%; right:20%;}
.block.d{ top: -5%; right: 0;}


} /* ipad Landscape */