/* Página de Reciclagem - Estilos Adicionais */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/galpao-001.jpeg');
    background-size: cover;
    background-position: center;
    /* background-color: #41b873; */
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
}

.mission {
    padding: 4rem 0;
    background-color: #f1f8e9;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.history {
    padding: 4rem 0;
    background-color: white;
}

.history h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline:before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #27ae60;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    padding: 10px 15px;
    background-color: #27ae60;
    color: white;
    border-radius: 30px;
    position: absolute;
    top: 15px;
    z-index: 1;
    font-weight: bold;
    text-align: center;
    width: 80px;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -120px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -120px;
}

.timeline-content {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.values {
    padding: 4rem 0;
    background-color: #f1f8e9;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.operation {
    padding: 4rem 0;
    background-color: white;
}

.operation h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.operation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.operation-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.operation-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background-color: #f1f8e9;
    padding: 2rem;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: bold;
}

.team-cta {
    padding: 4rem 0;
    background-color: #27ae60;
    color: white;
    text-align: center;
}

.team-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.team-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .mission,
    .history,
    .values,
    .operation,
    .team-cta {
        padding: 3rem 0;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-timeline:before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: 0;
        right: auto;
    }
    
    .operation-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    
    .operation-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 150px;
    }
}
