      @font-face {
            font-family: 'FontsFree-Net-Rockwell-Bold';
            src: url('FontsFree-Net-Rockwell-Bold.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

      body, html {
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Previene el scroll horizontal si 100vw causa overflow */
            font-family: 'FontsFree-Net-Rockwell-Bold', sans-serif;

        }
        .navbar-custom {
            background-color: #f68b1e;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
        }
        .navbar-nav .nav-link {
            font-size: 0.9rem; /* o podrías usar 14px */
        }
        .navbar-brand img {
            height: 100px;
            object-fit: contain; /* Asegura que la imagen se ajuste bien */
        }
        /* Estilos para el div con fondo personalizado */
        .fondo-personalizado {
            background-image: url('back_.jpeg'); 
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Estilo para el contenido */
        .contenido {
            color: white;
            text-align: center;
            font-size: 2rem;
            opacity: 0;
            animation: slideFromTop 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
            @keyframes slideFromTop {
                0% {
                    opacity: 0;
                    transform: translateY(-150%);
                }
                70% {
                    opacity: 1;
                    transform: translateY(10%);
                }
                100% {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
       


        /* Ajustes para pantallas pequeñas */
        @media (max-width: 768px) {
            .fondo-personalizado {
                height: 40vh; /* Reduce la altura en móviles */
                background-position: top; /* Ajusta la posición para que se vea mejor */
            }

            .contenido img {
                width: 100%; /* Reduce el tamaño del logo en móviles */
                height: auto;
            }

            .contenido p {
                font-size: 1.2rem; /* Ajusta el texto */
            }
        }

        .btn-compra {
            background-color: #000;
            color: #fff;
            border-radius: 30px;
            padding: 10px 20px;
            font-weight: bold;


        }
        .btn-compra:hover {
            background-color: #333;
            color: #fff;
        }
















        .dinamica-section_0 {
            background-color: #000; /* Color madera oscuro */
            background-size: cover;
            background-position: center;
            color: #fff;
        }

         .dinamica-section {
            background-color: #4b2e1a; /* Color madera oscuro */
            background-image: url('madera.png'); /* Imagen de madera si la tienes */
            background-size: cover;
            background-position: center;
            color: #fff;
        }
        .dinamica-section_1 {
            background-color: rgb(239, 206, 103);
            background-size: cover;
            background-position: center;
            color: #000;
        }
        .dinamica-section_2 {
            background-color: #000;
            background-size: cover;
            background-position: center;
            color: #fff;
        }

        .dinamica-title {
            font-weight: 800;
            font-size: 2rem;
        }

        .dinamica-subtitle {
            font-weight: 700;
            font-size: 1.5rem;
        }

        .dinamica-text {
            font-size: 1.125rem;
            line-height: 1.6;
        }

        .btn-participa {
            background-color: #f7931e;
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-weight: 800;
            font-size: 1.1rem;
            color: #fff;
            transition: background-color 0.3s ease;
        }

        .btn-participa:hover {
            background-color: #e67e00;
        }

         .personajes-img_0 {
                width: 80%;       /* Ocupa todo el ancho disponible */
                max-width: 700px;  /* Ajusta este valor según el tamaño deseado */
                height: auto;      /* Mantiene la proporción */
                display: block;
                margin: 0 auto;    /* Centra la imagen horizontalmente */
            }

          .personajes-img {
                width: 50%;       /* Ocupa todo el ancho disponible */
                max-width: 700px;  /* Ajusta este valor según el tamaño deseado */
                height: auto;      /* Mantiene la proporción */
                display: block;
                margin: 0 auto;    /* Centra la imagen horizontalmente */
            }

        /* 🌐 Responsivo para móviles */
        @media (max-width: 768px) {
            .dinamica-title {
                font-size: 1.5rem;
            }

            .dinamica-subtitle {
                font-size: 1.25rem;
            }

            .btn-participa {
                width: 100%;
                padding: 12px;
                font-size: 1rem;
            }

            .personajes-img {
                width: 100%;
                margin: 0 auto;
            }
        }

