/* Tickets Page Styles */

/* Header específico para página de ingressos */
.btn-ingressos.active {
    background-color: #e55a2b;
    transform: scale(1.05);
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    color: #495057;
    font-weight: 500;
    font-size: 14px;
}

/* Main Content */
.tickets-main {
    background-color: #f5f1eb;
    min-height: 80vh;
    padding: 30px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tickets-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Product Info */
.product-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.product-info h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
}

.product-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.pricing-info {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.price-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.important-info {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.important-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 10px;
}

.accessibility-info {
    background-color: #fff3e0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.accessibility-info a {
    color: #ff6b35;
    text-decoration: none;
}

.accessibility-info a:hover {
    text-decoration: underline;
}

/* Purchase Process */
.purchase-process {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.purchase-process h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Step Container */
.step-container {
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.step-container.active {
    border-color: #ff6b35;
    background-color: #fff8f5;
}

.step-container.hidden {
    display: none;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    background-color: #ff6b35;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Calendar */
.calendar-container {
    max-width: 350px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background-color: #f8f9fa;
    border-color: #ff6b35;
}

#currentMonth {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.calendar-grid {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f8f9fa;
}

.calendar-weekdays span {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    color: #6c757d;
    border-right: 1px solid #e9ecef;
}

.calendar-weekdays span:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    padding: 12px;
    text-align: center;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.calendar-day:hover {
    background-color: #fff8f5;
}

.calendar-day.available {
    color: #333;
    font-weight: 500;
}

.calendar-day.available:hover {
    background-color: #ff6b35;
    color: white;
}

.calendar-day.selected {
    background-color: #ff6b35;
    color: white;
    font-weight: 600;
}

.calendar-day.unavailable {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: #ccc;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 12px 8px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot:hover {
    border-color: #ff6b35;
    background-color: #fff8f5;
}

.time-slot.selected {
    border-color: #ff6b35;
    background-color: #ff6b35;
    color: white;
}

/* Ticket Types */
.ticket-types {
    space-y: 15px;
}

.ticket-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ticket-type:hover {
    border-color: #ff6b35;
    background-color: #fff8f5;
}

.ticket-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.ticket-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.ticket-info small {
    color: #6c757d;
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    background: white;
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background-color: #ff6b35;
    color: white;
}

.quantity {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
}

/* Purchase Summary */
.purchase-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.summary-line span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.btn-continue {
    width: 100%;
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-continue:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-continue:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.tickets-footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ff6b35;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tickets-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .purchase-process {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ticket-type {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

