 /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Century Gothic', sans-serif;
            background-color: #fff6ef;
            color: #3D2314;
            line-height: 1.6;
        }
        
        /* Estilos del Header */
        header {
            width: 100%;
            height: auto;
            min-height: 125px;
            background-color: #3D2314;
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
        }
        
        .header_logo {
            float: left;
        }
        
        .header_logo img {
            width: 125px;
            height: 125px;
        }
        
        .header_title {
            margin-left: 30px;
            font-size: 40px;
            color: #FFFEFD;
            font-family: 'Great Vibes', 'Century Gothic', sans-serif;
        }
        
        .header_menu {
            position: absolute;
            right: 5%;
            top: 20px;
        }
        
        #menu {
            list-style: none;
            display: flex;
        }
        
        #menu li {
            margin: 0 0 0 27px;
        }
        
        #menu li a {
            color: #FFFEFD;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            padding: 8px 5px;
            display: block;
        }
        
        #menu li a:hover {
            color: #BF6F45;
        }
 
        /* Estilos del footer */
        .footer {
        background-color: #3D2314;
        color: #FFFEFD;
        text-align: center;
        padding: 20px;
        font-family: 'Century Gothic', sans-serif;
        margin-top: 40px;
        }

        .footer a {
        color: #FFFEFD;
        text-decoration: underline;
        margin: 0 8px;
        font-size: 14px;
        }

        .footer a:hover {
        color: #BF6F45;
        }

        .footer-content p {
        margin: 8px 0;
        font-size: 14px;
        }


        /* Estilos del contenido principal */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .title_promociones {
            text-align: center;
            margin: 20px 0;
            color: #3D2314;
        }
        
        .alerta_vendido {
            color: #FF0000;
            text-align: center;
            margin-bottom: 30px;
        }
        
        /* Imagen principal */
        .imagen_principal {
            width: 100%;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .imagen_principal img {
            max-width: 90%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Descripción */
        .descripcion_promos {
            font-family: 'Century Gothic', sans-serif;
            text-align: justify;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 30px;
            padding: 0 5%;
        }

        .descripcion_promos ul {
            padding-left: 40px;
            margin-left: 0; /* elimina margen izquierdo para que solo tome el padding */
        }
                    
        /* Estado promoción */
        .estado_promocion {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            border-radius: 8px;
            background-color: rgba(61, 35, 20, 0.05);
        }
        
        /* Galería enlaces */
        /* Galería enlaces - Solución con flexbox para centrar elementos */
        .enlaces_galeria {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
            justify-content: center; /* Centra los elementos */
        }

        .enlace_item {
            flex: 0 0 300px; /* Ancho fijo de 300px */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }

        
        .enlace_item:hover {
            transform: translateY(-5px);
        }
        
        .enlace_item a {
            display: inline-block;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .enlace_item img {
            width: 320px;
            height: 240px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .enlace_item:hover img {
            transform: scale(1.05);
        }
        
        .enlace_item span {
            margin-top: 10px;
            color: #3D2314;
            font-weight: bold;
        }
        

        
        /* Botón volver */
        #volver {
            text-align: center;
            margin: 30px 0;
        }
        
        button {
            background-color: #3D2314;
            color: #FFFEFD;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        button:hover {
            background-color: #BF6F45;
        }




        /* Media queries para responsive */
        @media (max-width: 992px) {
            .enlaces_galeria {
                justify-content: center; /* Asegura centrado en tablets */
            }
            
            .enlace_item {
                flex: 0 0 calc(50% - 15px); /* Dos columnas en tablets */
            }
        }



        @media (max-width: 768px) {
            header {
                flex-direction: column;
                height: auto;
                padding: 10px;
                text-align: center;
            }
            
            .header_logo {
                float: none;
            }
            
            .header_title {
                margin: 10px 0;
                font-size: 30px;
            }
            
            .header_menu {
                position: static;
                margin-top: 15px;
            }
            
            #menu {
                flex-direction: column;
                align-items: center;
            }
            
            #menu li {
                margin: 10px 0;
            }
            
            .galeria {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .imagen img {
                max-width: 95%;
            }
            
            .imagen a {
                margin: 0 10px;
            }


            .descripcion_promos {
                padding: 0;
            }
            
            .enlaces_galeria {
                flex-direction: column;
                align-items: center;
            }
            
            .enlace_item {
                flex: 0 0 auto;
                width: 100%;
                max-width: 320px;
            }
            
            .enlace_item img {
                width: 100%;
                height: auto;
                max-width: 320px;
            }
        }
        
        @media (max-width: 480px) {
            .header_title {
                font-size: 24px;
            }
            
            .galeria {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            h1 {
                font-size: 24px;
            }
    
            h2 {
                font-size: 20px;
            }
        }


