* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    padding: 15px 30px;
}

.logo img {
    height: 50px;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar ul li a:hover {
    color: #5dade2;
}

.titulo {
    text-align: center;
    padding: 40px;
}

.titulo h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.titulo p {
    color: #555;
}

.grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 20px;
}

.producto {
    background: white;
    width: 220px;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.producto:hover {
    transform: translateY(-5px);
}

.producto img {
    width: 100%;
    border-radius: 10px;
}

.producto h3 {
    margin: 10px 0;
    color: #333;
}

.producto p {
    color: #2980b9;
    font-weight: bold;
    margin-bottom: 10px;
}

.producto button {
    background: #2980b9;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.producto button:hover {
    background: #1f618d;
}

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}