.contenedor-catalogo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.tarjeta-producto {
    background-color: #cadffb;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}
.tarjeta-producto:hover {
    transform: translateY(-5px);
    border-color: #38BDF8;
}
.tarjeta-producto img {
    width: 100%;           
    height: 450px;         
    object-fit: cover;  
    border-radius: 10px 10px 10px 10px;
}
.tarjeta-producto h3 {
    padding-top: 20px;
    margin-bottom: 10px;
    color: black;
}
.tarjeta-producto p {
    color: #171616;
    font-size: 14px;
    margin-bottom: 20px;
}
.btn-comprar {
    display: inline-block;
    background-color: #38BDF8;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}