/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    color: #333;
}

 margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
}

/* Barra de navegación */
header {
    background-color: #ff6347; /* Rojo tomate */
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Sección de bienvenida */
#bienvenida {
    text-align: center;
    padding: 50px;
    background-color: #ffebcd; /* Beige suave */
}

#bienvenida h1 {
    font-size: 36px;
    color: #d9534f; /* Rojo fuerte */
}

#bienvenida p {
    font-size: 20px;
    color: #555;
}

/* Sección del menú */
#menu {
    padding: 30px 20px;
    text-align: center;
    background-color: #fff;
}

#menu h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #d9534f;
}

.producto {
    display: inline-block;
    width: 30%;
    margin: 15px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.producto img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.producto h3 {
    font-size: 24px;
    color: #d9534f;
    margin-top: 10px;
}

.producto p {
    font-size: 16px;
    color: #555;
}

/* Pie de página */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ff6347;
    color: white;
    position: absolute;
    width: 100%;
    bottom: 0;
}
