/* ========================================
   STATUS DO PROJETO
   ======================================== */

/* Container de Status */
.status-container {
    margin-top: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-blue);
}

.status-header {
    text-align: center;
    margin-bottom: 2rem;
}

.status-header h3 {
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.status-header p {
    color: var(--gray);
    font-size: var(--font-base);
}

/* Grid de Status */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.status-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.status-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.status-icon-wrapper {
    flex-shrink: 0;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.status-icon.complete {
    background: #27ae60;
}

.status-icon.progress {
    background: #f39c12;
}

.status-icon.pending {
    background: #95a5a6;
}

.status-content h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-size: var(--font-base);
}

.status-content p {
    font-size: var(--font-sm);
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* Próximos Marcos */
.next-milestones {
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f4f8;
    border-radius: var(--radius-lg);
    text-align: center;
}

.next-milestones p {
    font-size: var(--font-sm);
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

.next-milestones strong {
    color: var(--primary-blue);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

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

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 700;
    z-index: 1;
}

.timeline-marker.complete {
    background: #27ae60;
    border-color: #27ae60;
    color: white;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    font-size: var(--font-sm);
    line-height: 1.6;
    margin: 0;
}

.timeline-date {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .status-container {
        padding: 1.5rem;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: var(--font-sm);
    }
}
