body {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    padding-bottom: 80px;
}

header {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #34495e;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}


.catalogo {
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: center;
    margin-top: 30px;
}

.producto {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px; 
    width: 280px; 
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

.producto:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.producto img {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-radius: 5px;
    margin-bottom: 15px;
}

.producto h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.2em;
}