body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('/images/Boletos/Fondo-horizontal.svg');
    color: #333;
}

.contenedor {
    max-width: 900px;
    margin: auto;
    padding: 30px 20px;
    text-align: center;
}
        .boton-regresar {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: #2e7d32;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            text-decoration: none;
            transition: background-color 0.3s ease;
            z-index: 1000;
        }

        .boton-regresar:hover {
            background-color: #1b5e20;
        }
        
header h1 {
    font-size: 2.5rem;
    color: #145A32;
    margin-bottom: 10px;
}

.subtitulo {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.boleto-principal {
    background-color: rgb(255, 255, 255,0.3);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.boleto-principal h2 {
    font-size: 1.8rem;
    color: #117A65;
}

.precio {
    font-size: 1.4rem;
    margin: 10px 0 20px;
    color: #444;
}

.boleto-principal button {
    background-color: #2e8b57;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boleto-principal button:hover {
    background-color: #246b46;
}

.paquete {
    background-color: rgb(255, 255, 255,0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
}

.paquete h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.paquete ul {
    list-style-type: none;
    padding: 0;
}

.paquete li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.paquete li::before {
    content: "🌿";
    position: absolute;
    left: 0;
    top: 0;
}

.ver-carrito {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #8b0000;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.ver-carrito:hover {
    background-color: #a40000;
}

@media screen and (max-width: 768px) {
    .imagen-boleto {
        max-height: 200px;
    }

    .paquete {
        text-align: center;
    }
}
