.section-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--cor-texto-principal);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--cor-texto-secundario);
    font-size: 1.1rem;
}

.badge {
    background-color: var(--cor-fundo-suave);
    color: var(--cor-primaria);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* Badge Verde Específico para seção de Reciclagem */
.badge-green {
    background-color: #dcfce7; /* Verde bem claro */
    color: #166534; /* Verde escuro */
}

/* --- SEÇÃO: Como Funciona (Steps) --- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 2px solid var(--cor-fundo-suave);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--cor-primaria);
    position: relative;
    box-shadow: var(--sombra-suave);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--cor-primaria);
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--cor-texto-principal);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--cor-texto-secundario);
    line-height: 1.5;
}

/* --- SEÇÃO: CTA (Faixa Verde) --- */
.cta-banner {
    background-color: var(--cor-primaria);
    color: #fff;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin: 40px 0;
    border-radius: 12px;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Botão Branco da CTA */
.btn-white-cta {
    background-color: #fff;
    color: var(--cor-primaria);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-white-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    background-color: var(--cor-fundo-suave);
}

/* --- SEÇÃO: O que descartar (Cards) --- */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.waste-card {
    background: #fff;
    border: 1px solid var(--cor-borda);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waste-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-card);
    border-color: transparent;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px; /* Quadrado com pontas arredondadas igual ao print */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* CORES DOS ÍCONES (Ajustadas para melhor visibilidade) */
.icon-blue { 
    color: #2563eb; /* Azul forte */
    background-color: #dbeafe; /* Azul claro */
} 

.icon-red { 
    color: #dc2626; /* Vermelho forte */
    background-color: #fee2e2; /* Vermelho claro */
}  

.icon-green { 
    color: #16a34a; /* Verde forte */
    background-color: #dcfce7; /* Verde claro */
} 

/* CORREÇÃO DO METAL: Amarelo mais escuro para aparecer no fundo branco */
.icon-yellow { 
    color: #ca8a04; /* Amarelo Ouro Escuro (Yellow 600) */
    background-color: #fef9c3; /* Amarelo Suave Visível (Yellow 100) */
}

.waste-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--cor-texto-principal);
    font-weight: 700;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--cor-texto-secundario);
}

.check-list li i {
    color: var(--cor-primaria); /* Check verde */
    font-size: 0.9rem;
}

/* --- SEÇÃO: Patrocinadores Ajustada --- */
.sponsors-grid {
    display: flex; 
    justify-content: center;
    padding: 20px 0;
}

.sponsor-item {
    background-color: var(--cor-fundo-cinza);
    height: 100px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    color: #4b4d51;
    font-size: 1.2rem;
    transition: all 0.3s;
}

/* Destaque Wyden */
.wyden-highlight {
    border: 2px solid transparent;
}

.wyden-highlight:hover {
    background-color: #fff;
    color: #d32f2f; /* Vermelho da marca Wyden */
    box-shadow: var(--sombra-card);
    border-color: #e5e7eb;
}

/* =========================================
   RESPONSIVIDADE (Desktop)
   ========================================= */
@media (min-width: 768px) {
    /* 3 Colunas nos Passos */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Linha tracejada/sólida conectando os passos */
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px; /* Alinhado ao centro do ícone (80px / 2) */
        right: -50%; /* Estica até a metade do próximo card */
        width: 100%;
        height: 2px;
        background-color: var(--cor-borda);
        z-index: -1;
    }

    /* CTA Horizontal */
    .cta-banner {
        flex-direction: row;
        justify-content: space-between;
        padding: 60px 80px;
        text-align: left;
        border-radius: 12px;
        max-width: 1200px;
        margin: 60px auto;
    }

    /* 4 Colunas para os Cards de Lixo */
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

