
.contBotonGrande{
    display: flex;
    margin-bottom: 80px;

}

.contBotonGrande:hover .BotonGrande{

        background-color:var(--bg2);/* var(--secondColor);*/

}


.BotonGrande{
    /*Las variables para poder cambiar los colores de los botones sin tener
    que crear nuevos botones*/
    --bg1: black;
    --bg2: white;
    border: none;
    background-color: var(--bg1);
    width: 50vw;
    height: 30vw;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

    
}


.BotonRehabFitnes{
    margin-top: 100px;
    border: none;
    width: 50vw;
    height: 40vw;
    color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}


.BotonRehabFitnes div{
    position: absolute;
    top: 40%;
    font-size: 30px;
}

.BotonRehabFitnes img{
    height: 100%;
    object-fit: fill;
    width: 100%;
    transition: 0.25s transform ease-in-out;
    z-index: 0;
}

.BotonRehabFitnes img:hover{
    transform: scale(1.2);
}


.DescripcionBanner{
    height: fit-content;
    font-family: 'MonserratBold';
    /*Voy a experimentar con eso de ahi
    para hacer ajustes finos sobre valores plantilla*/
    font-size : 50pt;
    width: fit-content;
    z-index: 1;

    margin-left: auto;
    margin-right: auto;

}


.Descripcion{
    font-size: 86pt;
    color: white;
    z-index: 1;
    margin: auto;
    height: auto;
}
.fila{
    display: flex;
    justify-content: center;

}

.fila div img{
    width: 7vw;
    height: 9vw;
    margin-left: 0%;
}

.elemento{
    
    font-size: 30pt;
    margin-left: 25px;
    text-align: start;
}

.GridProductos{

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap : 30px 20px;
  width: 70%;
  max-width: 80vw; 
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
 


}

.ItemProductos{

    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;

}


.BotonProducto{
  background-color: #96A5B5;
        
  overflow: hidden;   
  display: flex;     
  border: 1px;
  border-radius: 50%;
  cursor: pointer;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
}
.BotonProducto img{
    object-fit: cover;
    display: block;
    width: 130px;
    height: 130px;
}

.BotonProducto:hover{
    background-color: #e62a26;
}


.TextoProducto{
    font-family: 'MonserratCustom';
    color :black;
    text-align: center;
    font-size: calc(var(--TamNormalGrande) + 5pt);
}



@media (max-width:880px) {
    .DescripcionBanner{
        font-size: 40pt;
    }
}

@media (max-width : 768px){

.fila div img{
    width: 10vw;
    height: 12vw;
    margin-left: 0%;
    
}

.DescripcionBanner{
    font-size : calc(var(--TamTitulos) - 2pt);
}
.elemento{
    font-size: var(--TamNormalGrande);
}
.elemento.especial{
    font-size:calc(var(--TamNormalGrande) + 4pt);
}



.BotonProducto img{

    width: 60px;
    height: 60px;
}


.BotonProducto{

  width: 67px;
  height: 67px;

}

.TextoProducto{

    font-size: var(--TamNormalGrande);
}

}



@media (max-width:768px) {
    .BotonRehabFitnes div{
        font-size: 15px;
        top: 50%
    }
    .Descripcion{
    font-size: var(--TamNormalGrande);
    }
}