.agenda-container {
    min-height: 100vh;
}

.agenda-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e55a2b 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.agenda-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.agenda-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.agenda-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Próximo Evento Banner */
.proximo-evento-banner {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #dee2e6;
}

.evento-destaque {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.evento-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.evento-destaque h2 {
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

.evento-detalhes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.evento-detalhes span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.evento-detalhes i {
    margin-right: 0.5rem;
    color: var(--primary-orange);
}

.evento-acoes {
    display: flex;
    gap: 1rem;
}

/* Filtros */
.agenda-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-form {
    display: flex;
    gap: 1rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* Grid de Eventos */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.evento-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.evento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.evento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.evento-categoria {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.evento-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-agendado { background: #e3f2fd; color: #1976d2; }
.status-ao_vivo { background: #ffebee; color: #d32f2f; }
.status-concluido { background: #e8f5e8; color: #388e3c; }
.status-cancelado { background: #f3e5f5; color: #7b1fa2; }
.status-adiado { background: #fff3e0; color: #f57c00; }

.evento-content {
    padding: 1.5rem;
}

.evento-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.evento-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.evento-content h3 a:hover {
    color: var(--primary-orange);
}

.evento-datetime {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.evento-datetime span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge-hoje {
    background: var(--primary-orange);
    color: white;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.evento-detalhes {
    margin-bottom: 1rem;
}

.detalhe-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detalhe-item .label {
    font-weight: 600;
    color: var(--text-muted);
}

.detalhe-item .valor {
    color: var(--text-dark);
}

.evento-descricao {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.evento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.evento-plataformas {
    display: flex;
    gap: 0.5rem;
}

.plataforma {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.plataforma.twitch { background: #9146ff; }
.plataforma.youtube { background: #ff0000; }

.evento-destaque-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffc107;
    color: #212529;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Botões */
.btn-twitch {
    background: #9146ff;
    color: white;
    border: none;
}

.btn-youtube {
    background: #ff0000;
    color: white;
    border: none;
}

.btn-live {
    background: #dc3545;
    color: white;
    border: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Countdown */
.countdown-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 768px) {
    .agenda-stats {
        gap: 1rem;
    }
    
    .evento-destaque {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .agenda-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-form {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .eventos-grid {
        grid-template-columns: 1fr;
    }
    
    .evento-datetime {
        flex-direction: column;
        gap: 0.5rem;
    }
}
