body {
    margin: 0;
    font-family: Arial, sans-serif;
}
body {
    padding-top: 59px;
}
header {
    background-color: #e70abd;
    padding: 10px 0;
    text-align: center;
    color: white;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e70abd; /* el mismo color de fondo */
    z-index: 1000; /* para que esté sobre otros elementos */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* sombra opcional para que destaque */
}


nav .logo {
    display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    background-color: #e70abd;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    animation: glowing 1.5s infinite alternate;
}


nav ul li a:hover {
    background-color: rgba(230, 0, 0, 1);
    color: white;
    border-radius: 5px;
}


nav ul li a {
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px; /* Aumenta el tamaño del texto */
    font-weight: bold; /* Hace el texto más grueso */
}


nav ul li a:hover + .banner-text {
    display: block;
}

.banner {
    position: relative;
}

.banner img {
    width: 100%;
    height: auto;
}




.adorno {
    position: relative;
    width: 100%;
    height: auto;
}

.adorno-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.5;
    z-index: 1;
}

.SobrePuesto {
    position: relative;
    z-index: 2;
    color: #000;
    width: auto;
    height: 140px;
    left: 60px;
    top: -19px;
}


.quienes-somos {
    padding: 2px;
    text-align: center;
}

.quienes-somos h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.quienes-somos p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;   
    margin-left: 40px;     
    margin-right: 40px;
}

.Productos {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.productos {
    padding: 20px;
    text-align: center;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.producto-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px #e70abd;
    padding: 15px;
    transition: transform 0.3s ease;
}

.producto-card:hover {
    transform: scale(1.05);
}

.producto-card img {
    width: 150px;
    border-radius: 8px;
}

.producto-card h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

.producto-card p {
    font-size: 16px;
    margin: 5px 0;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .productos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.Precio{
    color: #e70abd;
    font-size: 34px !important;
    font-weight: bold;
}





 footer {
            background-color: #e70abd; /* Magenta base */
            color: white;
            padding: 30px 0;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }
        
        /* Efecto de luces animadas */
        footer::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                rgba(255, 0, 255, 0.1) 0%,
                rgba(255, 0, 255, 0.3) 20%,
                rgba(255, 0, 255, 0.6) 50%,
                rgba(255, 0, 255, 0.3) 80%,
                rgba(255, 0, 255, 0.1) 100%
            );
            animation: luz-magenta 8s infinite linear;
            z-index: 0;
        }
        
   
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1; /* Asegura que el contenido esté sobre el efecto */
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin: 10px 20px;
        }
        
        .footer-column h3 {
            border-bottom: 2px solid rgba(255, 255, 255, 0.5);
            padding-bottom: 10px;
            font-size: 18px;
            text-shadow: 0 0 5px rgba(255, 0, 255, 0.5); /* Brillo suave */
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column ul li {
            margin: 8px 0;
        }
        
        .footer-column ul li a {
            color: white;
            text-decoration: none;
            transition: text-shadow 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; /* Efecto neon al hover */
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-icons a {
            color: white;
            font-size: 20px;
            transition: text-shadow 0.3s ease;
        }
        
        .social-icons a:hover {
            text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff; /* Brillo magenta en íconos */
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 1;
        }


