/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Averta', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 60px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #024ddf;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand .logo {
    height: 30px;
}

.navbar-menu {
    display: flex;
    gap: 30px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.navbar-menu a:hover {
    opacity: 0.8;
}

/* Order Bar */
.order-bar {
    background-color: #024ddf;
    color: white;
    padding: 15px 0;
    border-bottom: 1px solid #0056b3;
}

.order-detail {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.order-detail .thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
}

.order-detail .info h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.order-detail .info span {
    font-size: 14px;
    opacity: 0.9;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.event-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Event Header */
.event-header {
    position: relative;
}

.event-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.event-info {
    padding: 40px;
}

.event-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #024ddf;
    margin-bottom: 10px;
}

.event-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.event-location {
    font-size: 16px;
    color: #888;
    margin-bottom: 30px;
}

.event-schedule {
    margin-bottom: 30px;
}

.event-schedule h3 {
    font-size: 20px;
    color: #024ddf;
    margin-bottom: 15px;
}

.event-schedule ul {
    list-style: none;
    padding-left: 0;
}

.event-schedule li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.event-schedule li:last-child {
    border-bottom: none;
}

/* Ticket Types */
.ticket-types {
    margin-bottom: 40px;
}

.ticket-types h3 {
    font-size: 24px;
    color: #024ddf;
    margin-bottom: 20px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ticket-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-card:hover {
    border-color: #024ddf;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(2, 77, 223, 0.15);
}

.ticket-card.featured {
    border-color: #024ddf;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.ticket-card h4 {
    font-size: 20px;
    color: #024ddf;
    margin-bottom: 10px;
}

.ticket-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.ticket-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #024ddf;
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #024ddf 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 77, 223, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 77, 223, 0.4);
}

/* Event Details */
.event-details {
    background: #f8f9fa;
    padding: 40px;
}

.details-content h3 {
    font-size: 28px;
    color: #024ddf;
    margin-bottom: 20px;
}

.details-content h4 {
    font-size: 20px;
    color: #024ddf;
    margin: 25px 0 15px 0;
}

.details-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.details-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.details-content li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: #1f262d;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #024ddf;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .main-container {
        padding: 15px;
    }
    
    .event-info {
        padding: 25px;
    }
    
    .event-info h2 {
        font-size: 28px;
    }
    
    .ticket-grid {
        grid-template-columns: 1fr;
    }
    
    .event-details {
        padding: 25px;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-info,
.ticket-card,
.details-content {
    animation: fadeInUp 0.6s ease-out;
}

.ticket-card:nth-child(2) {
    animation-delay: 0.1s;
}

.ticket-card:nth-child(3) {
    animation-delay: 0.2s;
}



/* Ticket Options in Sector Card */
.ticket-options {
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f2f5;
}

.ticket-item:last-child {
    border-bottom: none;
}

.ticket-name {
    font-weight: 600;
    color: #333;
    flex-grow: 1;
}

.ticket-price {
    font-weight: 700;
    color: #024ddf;
    margin-right: 15px;
}

.ticket-item .quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ticket-item .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
    border-radius: 50%;
    background: #e9ecef;
    color: #024ddf;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.ticket-item .qty-btn:hover {
    background: #d0d8e0;
}

.ticket-item .ticket-qty {
    width: 40px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
}

/* Override default quantity-selection styles for new ticket options */
.quantity-selection {
    display: none; /* Hide the old quantity selection */
}

.total-section {
    margin-top: 30px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #024ddf;
}

.total-breakdown {
    margin-bottom: 15px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f5;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item.total {
    font-size: 18px;
    font-weight: 700;
    color: #024ddf;
    border-top: 2px solid #024ddf;
    padding-top: 15px;
    margin-top: 15px;
}

.info-icon {
    font-size: 14px;
    color: #024ddf;
    margin-left: 5px;
    cursor: pointer;
}

.info-tooltip {
    visibility: hidden;
    width: 150px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.info-icon:hover .info-tooltip {
    visibility: visible;
    opacity: 1;
}




.calendar-day.past-date {
    background: #f0f0f0;
    color: #b0b0b0;
    cursor: not-allowed;
}



.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
    width: 120px;
}



.logo-text {
    color: white;
    font-size: 40px;
    font-weight: bold;
    text-transform: none;
    font-style: italic;
    font-family: 'Averta', 'Arial', sans-serif;
}



.order-detail .thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-right: 15px;
}

.order-detail .info h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.order-detail .info span {
    font-size: 14px;
    opacity: 0.9;
}



.logo-image {
    height: 30px; /* Adjust as needed */
    width: auto;
}

