        body {
            font-family: 'Roboto', sans-serif;
            color: white;"
            margin: 0;
            padding: 0;
            background-color: transparent;
            background-image: url('img/fondo.jpg'); /* Ruta de la imagen */
            background-size: cover; /* Hace que la imagen cubra toda la página */
            background-position: center; /* Centra la imagen */
            background-attachment: fixed; /* Fija la imagen mientras haces scroll */
        }
        header {
            background-color: #000;
            color: #FFD700; /* Amarillo del club */
            padding: 20px;
            text-align: center;
            font-size: 2em;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            background-color: #000;
        }
        nav ul li {
            margin: 0 20px;
        }
        nav ul li a {
            color: #FFD700;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        nav ul li a:hover {
            background-color: #FFD700;
            color: #000;
        }
        section {
            padding: 40px 20px;
            margin: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .slider {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: auto;
            overflow: hidden;
            border-radius: 8px;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slide {
            min-width: 100%;
            box-sizing: border-box;
        }
        .slide img {
            width: 100%;
            border-radius: 8px;
        }
        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .gallery img {
            width: 30%;
            height: auto;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .producto {
            display: inline-block;
            width: 30%;
            margin: 10px;
            padding: 20px;
            text-align: center;
            background-color: #FFD700;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .producto:hover {
            transform: scale(1.05);
        }
        .producto img {
            width: 100%;
            border-radius: 8px;
        }
        .producto h3 {
            margin-top: 10px;
            color: #000;
        }
        .producto p {
            color: #333;
        }
        .producto button {
            padding: 10px;
            background-color: #000;
            color: #FFD700;
            border: none;
            cursor: pointer;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .producto button:hover {
            background-color: #FFD700;
            color: #000;
        }

        /* Footer con Redes Sociales */
        footer {
            background-color: #000;
            color: #FFD700;
            text-align: center;
            padding: 20px;
        }
        footer .social-links {
            margin-top: 15px;
        }
        footer .social-links a {
            color: #FFD700;
            font-size: 24px;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        footer .social-links a:hover {
            color: #000;
            background-color: #FFD700;
            border-radius: 50%;
            padding: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header {
                font-size: 1.5em;
                padding: 15px;
            }
            nav ul {
                flex-direction: column;
                margin-top: 10px;
            }
            nav ul li {
                margin: 10px 0;
            }
            .producto {
                width: 90%; /* Ajusta los productos para pantallas pequeñas */
                margin: 10px auto;
            }
            .gallery img {
                width: 100%; /* Galería a una sola columna en móviles */
            }
            .slider {
                max-width: 100%;
            }
            .slide img {
                height: auto;
            }
        }