/* Estilos básicos */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Estilos para el contenedor de las imágenes del slider */
.slider-container {
    display: flex;
    justify-content: center;
    gap: 10px; /* Espacio entre las imágenes */
    margin-bottom: 20px;
}

.slider-image {
    width: 150px; /* Tamaño reducido de las imágenes */
    height: auto;
    border-radius: 10px;
    object-fit: cover; /* Para ajustar la imagen sin deformarla */
}

/* Contenedor de los boletos */
.ticket-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Espacio entre los boletos */
}

.ticket {
    width: 200px; /* Ancho de cada ticket */
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.ticket img {
    width: 100%; /* Ajusta las imágenes al ancho del contenedor */
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px; /* Espacio entre la imagen y el texto */
}

.price {
    font-size: 16px;
    margin-bottom: 5px;
}

.discount {
    font-size: 14px;
    color: #e74c3c;
    font-weight: bold;
}
