/* ARQUIVO: public/css/style_Ingressos.css */
/* Página de Ingressos - CAAC Arena Cataratas */

/* ============================================ */
/* FUNDO DINÂMICO */
/* ============================================ */

.ingressos-body {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)), 
                url('/public/img/fundo.jpg');
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

body.ingressos-body.bg-street-focus {
    background-position: 15% center !important;
}

body.ingressos-body.bg-offroad-focus {
    background-position: 85% center !important;
}

/* ============================================ */
/* CONTAINER E UTILITÁRIOS */
/* ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 69, 0, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color, #ff4500);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-tag.muted {
    background: rgba(255,255,255,0.05);
    color: #666;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.section-header h2 span {
    color: var(--primary-color, #ff4500);
}

.section-header p {
    color: #aaa;
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

.ingressos-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.ingressos-hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid var(--primary-color, #ff4500);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color, #ff4500);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--primary-color, #ff4500), #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* ============================================ */
/* GRID DE INGRESSOS */
/* ============================================ */

.ingressos-grid-section {
    padding: 60px 0;
}

.ingressos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ingresso-card {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ingresso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ingresso-card.featured {
    border: 2px solid var(--primary-color, #ff4500);
    transform: scale(1.02);
}

.ingresso-card.vip {
    background: linear-gradient(135deg, rgba(255,69,0,0.15), rgba(0,0,0,0.6));
}

.ingresso-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #ff4500);
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

.ingresso-icon {
    font-size: 3rem;
    color: var(--primary-color, #ff4500);
    margin-bottom: 20px;
}

.ingresso-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.ingresso-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.ingresso-price small {
    font-size: 0.8rem;
    color: #888;
}

.ingresso-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0;
}

.ingresso-features li {
    padding: 8px 0;
    color: #ccc;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingresso-features li i {
    color: #28a745;
    width: 20px;
}

.btn-comprar {
    width: 100%;
    padding: 14px;
    background: var(--primary-color, #ff4500);
    border: none;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-comprar:hover {
    background: #e03e00;
    transform: scale(1.02);
}

.btn-comprar:active {
    transform: scale(0.98);
}

/* ============================================ */
/* PRÓXIMOS EVENTOS */
/* ============================================ */

.eventos-com-ingressos {
    padding: 60px 0;
    background: rgba(0,0,0,0.3);
}

.eventos-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.evento-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px 25px;
    transition: 0.2s;
}

.evento-item:hover {
    background: rgba(30, 30, 30, 0.8);
}

.evento-data {
    text-align: center;
    min-width: 60px;
}

.evento-dia {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color, #ff4500);
    line-height: 1;
}

.evento-mes {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.evento-info {
    flex: 1;
}

.evento-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.evento-info p {
    font-size: 0.75rem;
    color: #aaa;
}

.evento-preco {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.btn-evento {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--primary-color, #ff4500);
    border-radius: 30px;
    color: var(--primary-color, #ff4500);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-evento:hover {
    background: var(--primary-color, #ff4500);
    color: #fff;
}

/* ============================================ */
/* FAQ */
/* ============================================ */

.ingressos-faq {
    padding: 60px 0 80px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.faq-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-item i {
    font-size: 2rem;
    color: var(--primary-color, #ff4500);
    margin-bottom: 15px;
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.faq-item p {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.5;
}

/* ============================================ */
/* RESPONSIVO */
/* ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .ingressos-grid {
        grid-template-columns: 1fr;
    }
    
    .evento-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .evento-info {
        width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .ingresso-card {
        padding: 20px 15px;
    }
    
    .evento-item {
        flex-direction: column;
    }
}