<style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .logo2 {
            margin: 0;
            top: 0;
            left: 0;
            width: 400px; /* Ajusta el tamaño si es necesario */
            height: auto; 
            justify-content: center; 
            align-items: center;
        }
        .logo {
            position: absolute;
            left: 0;
            width: 170px; /* Ajusta el tamaño si es necesario */
            height: auto;
        }

        header {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        nav {
            background-color: #555;
            color: #fff;
            padding: 10px;
            text-align: center;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
        }

        nav a:hover {
            color: #ffd700; /* Cambia el color al pasar el cursor */
        }
        .imagen-centrada {
            width: 200px;
            height: 150px;
        }

        section {
            padding: 20px;
        }

        .producto {
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
        }

        .producto img {
            width: 100%;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        footer {
            background-color: #333;
            color: #fff;
            padding: 0.00px;
            text-align: center;
            position: fixed;
            bottom: 0;
            width: 100%;
        }

        .whatsapp-bubble {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
          }
    </style>
