/* Estilos específicos para Tu Billete */

body.page-tu-billete {
    background: #E5E5E5 url('../assets/img/uploads/bg-billet.jpg') no-repeat top 130px center !important;
    background-size: contain !important;
}

.page-tu-billete .header-top {
    background: #fff !important;
}

.page-tu-billete .inner-page-content {
    background: transparent;
    padding: 60px 0 40px;
}

/* Using global .main-container from custom.css */

.page-tu-billete h1 { 
    font-weight: 300; 
    font-size: 26px; 
    color: #575756; 
    border-bottom: 1px solid #e5e5e5; 
    margin-bottom: 15px; 
    padding-bottom: 10px; 
    text-transform: none;
}

.page-tu-billete .accordion h3.accordion-title, 
.page-tu-billete .invoice-title { 
    font-weight: 400; 
    font-size: 20px; 
    color: #5D004A; 
    border-top: 1px solid #e5e5e5; 
    border-bottom: 1px solid #e5e5e5; /* Both borders to close the feel if alone or last */
    padding: 18px 0; 
    margin: 0; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.page-tu-billete .accordion h3.accordion-title::after { 
    content: '\203A'; 
    font-size: 24px; 
    color: #ccc; 
    transform: rotate(90deg); 
    transition: transform 0.3s; 
}

.page-tu-billete .accordion h3.accordion-title[aria-expanded='true']::after { 
    transform: rotate(-90deg); 
    color: #5D004A; 
}

.page-tu-billete .accordion-content { 
    display: none; 
    padding: 10px 0 30px 0; 
    font-size: 16px; 
    color: #575756; 
    line-height: 1.6;
}

.page-tu-billete .accordion h3.accordion-title[aria-expanded='true'] + .accordion-content { 
    display: block; 
}

.page-tu-billete .qr-image {
    padding: 2px;
    border: 1px solid #e7e7e7;
    margin: 15px auto;
    display: block;
}

.page-tu-billete .invoice-title { 
    border-top: none; /* Already handled above or avoid double border if consecutive */
    margin-top: -1px; /* Overlap borders if they are close */
}

.page-tu-billete .invoice-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.page-tu-billete .invoice-title a::after {
    content: '\203A'; 
    font-size: 24px; 
    color: #ccc; 
    transform: rotate(0deg); /* No rotation for non-accordion links */
}

/* Relying on global custom.css */

@media screen and (max-width: 768px) {
    
    body.page-tu-billete {
        background-position: top 100px center !important;
    }
}
