/* Estilos específicos para projeto em desenvolvimento */
.construction-banner {
    background: linear-gradient(135deg, #7f5af0 0%, #2cb67d 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(44, 182, 125, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 182, 125, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(44, 182, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(44, 182, 125, 0);
    }
}

.construction-icon {
    font-size: 1.5rem;
}

.progress-container {
    margin: 30px 0;
}

.progress-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7f5af0, #2cb67d);
    border-radius: 5px;
    width: 40%;
    /* Ajuste este valor conforme o progresso */
    transition: width 0.5s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.github-activity {
    background-color: rgba(127, 90, 240, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    border-left: 3px solid var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--card-bg);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.timeline-content {
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card.planned {
    opacity: 0.7;
    filter: grayscale(30%);
}

.feature-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-done {
    background-color: rgba(44, 182, 125, 0.2);
    color: #2cb67d;
}

.status-in-progress {
    background-color: rgba(127, 90, 240, 0.2);
    color: #7f5af0;
}

.status-planned {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.contribute-box {
    background: linear-gradient(135deg, rgba(127, 90, 240, 0.1) 0%, rgba(44, 182, 125, 0.1) 100%);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    border: 1px dashed var(--primary-color);
}