/* 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;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.step-number {
    background-color: #27ae60;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

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

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

.materials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.heading-icon-recycle {
    width: 10em;
    height: 10em;
    margin-right: 0.35rem;
}

.material-category {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.material-category h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.material-category ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.material-category ul li {
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.delivery-info {
    padding: 4rem 0;
    background-color: #f1f8e9;
    text-align: center;
}

.delivery-info h2 {
    margin-bottom: 3rem;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.option {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cta {
    margin-top: 2rem;
}

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

    .recycling-process,
    .accepted-materials,
    .recycling-tips,
    .delivery-info {
        padding: 3rem 0;
    }

    .process-steps,
    .materials-list,
    .tips-grid,
    .delivery-options {
        grid-template-columns: minmax(0, 1fr);
    }
}
