body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #eef5ec;
}

/* HEADER */
header {
    background: #1b5e20;
    color: white;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* PRODUCTOS */
.productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px;
}

.card {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.img {
    width: 100%;
    height: 50%;
    border-radius: 8px;
}

/* EFECTO ESPEJO */
.reflejo {
    width: 100%;
    height: 20%;
    transform: scaleY(-1);
    opacity: 0.55;
    margin-top: -5px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

/* SECCIONES */
.info {
    margin: 30px;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

/* FOOTER */
footer {
    text-align: center;
    background: #1b5e20;
    color: white;
    padding: 15px;
}