@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    background-image: url('logo_mejor.jpg'); /* Marca de agua */
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

header {
    background-color: #b30000;
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b30000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.menu-container img {
    max-width: 150px;
    height: auto;
    margin-right: 20px;
}

.menu-superior {
    display: flex;
    justify-content: center;
}

.menu-superior ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.menu-superior ul li {
    padding: 10px 15px;
}

.menu-superior ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-superior ul li a:hover {
    color: #ffcc00;
}

section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
    background: white;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
}

.producto {
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.producto:hover {
    transform: translateY(-5px);
}

.producto img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
}

footer {
    background-color: #b30000;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
