body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    /* background-color: #ceddcf; */
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 500px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin: 0 10px;
}

nav a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.banner {
    position: relative;
    text-align: center;
    color: rgb(0, 89, 205);
}

.banner img {
    width: 100%;
    height: auto;
}

.banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section {
    padding: 20px;
}

#productos-destacados {
    display: flex;
    justify-content: space-around;
}

.producto {
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}
