static void imprimirticket()
        {
            double total = 0;

            seleccionsala = Pelicula.Find(sala => sala.Sala == opcion);
            if (seleccionsala.Sala == 1)
            {
                Console.SetCursorPosition(21, 2);
                Console.WriteLine(seleccionsala.Nombre, ColorTranslator.FromHtml("#FF0000"));
                Console.SetCursorPosition(3, 2);
                Console.WriteLine($"Sala {seleccionsala.Sala}", ColorTranslator.FromHtml("#FFFFFF"));
                total  = BoletoN * 2.25;
                total += BoletoA * 4.25;
                total += BoletoAM * 3.25;
                Console.SetCursorPosition(18, 5);
                Console.WriteLine($"Total a pagar: {total.ToString("c2")}");
            }
            if (seleccionsala.Sala == 2)
            {
                Console.SetCursorPosition(21, 2);
                Console.WriteLine(seleccionsala.Nombre, ColorTranslator.FromHtml("#FF4081"));
                Console.SetCursorPosition(3, 2);
                Console.WriteLine($"Sala {seleccionsala.Sala}", ColorTranslator.FromHtml("#FFFFFF"));
                total  = BoletoN * 2.25;
                total += BoletoA * 4.25;
                total += BoletoAM * 3.25;
                Console.SetCursorPosition(18, 5);
                Console.WriteLine($"Total a pagar: {total.ToString("c2")}");
            }
            if (seleccionsala.Sala == 3)
            {
                Console.SetCursorPosition(21, 2);
                Console.WriteLine(seleccionsala.Nombre, ColorTranslator.FromHtml("#7C4DFF"));
                Console.SetCursorPosition(3, 2);
                Console.WriteLine($"Sala {seleccionsala.Sala}", ColorTranslator.FromHtml("#FFFFFF"));
                total  = BoletoN * 2.25;
                total += BoletoA * 4.25;
                total += BoletoAM * 3.25;
                Console.SetCursorPosition(18, 5);
                Console.WriteLine($"Total a pagar: {total.ToString("c2")}");
            }
            if (seleccionsala.Sala == 4)
            {
                Console.SetCursorPosition(21, 2);
                Console.WriteLine(seleccionsala.Nombre, ColorTranslator.FromHtml("#FFC107"));
                Console.SetCursorPosition(3, 2);
                Console.WriteLine($"Sala {seleccionsala.Sala}", ColorTranslator.FromHtml("#FFFFFF"));
                total  = BoletoN * 2.25;
                total += BoletoA * 4.25;
                total += BoletoAM * 3.25;
                Console.SetCursorPosition(18, 5);
                Console.WriteLine($"Total a pagar: {total.ToString("c2")}");
            }
        }
        public static void SeleccionPelicula()
        {
            bool condicion;

            do
            {
                Salas();
                ImprimirMenu();
                Console.SetCursorPosition(0, 27);
                Console.WriteLine("Escoja la pelicula que desea ver: ");
                condicion = int.TryParse(Console.ReadLine(), out opcion);
                Console.Clear();
            } while (condicion == false || opcion <= 0 || opcion > 4);

            seleccionsala = Pelicula.Find(sala => sala.Sala == opcion);
            horarios(opcion);
        }