
.practice-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    
    display: flex; 
    flex-direction: column;
    align-items: flex-start;    
    text-align: left;   
    
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.practice-card:hover {
    border-color: #2a2a2a;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

#contenedor-productos {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 20px;
    padding: 20px;
}
.practice-card img {
    align-self: center;
    max-width: 100%;
    height: 180px;         
    object-fit: contain;   
    margin-bottom: 15px;   
}

.practice-title {
    align-self: center;
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

.practice-description {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
    width: 100%;
}

.practice-price {
    font-weight: bold;
    color: #2a2a2a;
    font-size: 1.1rem;
}

.body{
    background-color: #EFE4D2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.h1{
    text-align: center;
    font-weight: bold;
    color: #2a2a2a;
    font-size: 3.5rem;
}
.btnProductos{
    border: 2.5px solid #2A9D8F; 
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: white;
    padding: 10px 20px;
    cursor: pointer;
}

.btnProductos:hover{
    box-shadow: 0 2px 3px rgb(42, 157, 143);
    background-color: #2A9D8F;
    border-color: black;
    color: white;
}

