
/*inicio de titulo */
.titulo{
    width:100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.titulo>h1{
    width: 85%;
    text-align: left;
}
/*fin de titulo */
/*inicio de catalogo*/
.productos{
    width: 100%;
    display: flex;
    justify-content: center;
}
.catalogo {
    width: 85%;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(min(100%,280px),1fr));
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 50px;
}
.card-catalogo{
    margin-bottom: 50px;
}

.img-catalogo {
    width: 100%;
    overflow: hidden;
}

.img-catalogo>img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.img-catalogo>img:hover {
    transform: scale3d(1.1, 1.1, 1);
    transition: transform 0.6s;
}
.texto{
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.card-title{
    font-size: 20px;
    color: #282828;
    width: 60%;
}
.leer-mas{
    width: 40%;
    text-decoration: none;
    color: #ff5a05;
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: flex-end;
}

.icon-flecha{
    width: 6%;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.icon-flecha>img{
    width: 100%;
}
/*fin de catalogo*/

@media (max-width:1250px) {}

@media (max-width:1100px) {}

@media (max-width:1050px) {}

@media (max-width:1000px) {
    
}

@media (max-width:900px) {
   
}

@media (max-width:800px) {
  
}

@media (max-width:600px) {
 
}

@media (max-width:500px) {
   
}

@media (max-width:450px) {
  
}

@media (max-width:400px) {
   
}
@media(max-width:350px){
    .texto{
        flex-direction: column;
    }
    .leer-mas{
        width: 100%;
        justify-content: flex-start;
    }
    .card-title{
        width: 100%;
    }
    
}
@media (max-width:300px) {
  
    
}