/* * ARQUIVO: root/assets/css/coleta.css
 * DESCRIÇÃO: Estilos exclusivos para a página de Coleta de Lixo Eletrônico
 * VERSÃO: Fase 4
 */

/* =========================================
   1. Estrutura da Página e Hero Section
   ========================================= */

/* Ajuste fino para o container principal caso não herde do global */
.coleta-main-container {
    padding-top: 20px;
    padding-bottom: 60px;
    background-color: #f9f9f9; /* Fundo leve para destacar o conteúdo branco */
}

/* Cabeçalho da página (Título e Subtítulo) */
.coleta-header {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.coleta-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.coleta-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Destaque em verde para palavras chave */
.text-eco {
    color: #478ac9;
    font-weight: 600;
}

/* =========================================
   2. Grid de Itens Aceitos (Cards)
   ========================================= */

.coleta-items-section {
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Pequena linha decorativa abaixo do título */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #478ac9;
    margin: 10px auto 0 auto;
}

/* Grid Responsivo */
.coleta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 15px;
}

/* Card Individual do Item */
.coleta-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coleta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #27ae60;
}

/* Ícone dentro do card (Usaremos emojis ou ícones de fonte se disponível, aqui configurado para texto grande) */
.coleta-card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.coleta-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

/* =========================================
   3. Seção Informativa (Por que reciclar?)
   ========================================= */

.coleta-info-section {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.coleta-info-content {
    max-width: 900px;
    margin: 0 auto;
}

.coleta-info-content h2 {
    color: #478ac9;
    margin-bottom: 20px;
}

.coleta-info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* =========================================
   4. Seção de Ação / Localização
   ========================================= */

.coleta-action-section {
    text-align: center;
    padding: 0 20px 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.btn-whatsapp-coleta {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-whatsapp-coleta:hover {
    background-color: #1ebc57;
    text-decoration: none;
    color: white;
}

/* =========================================
   5. Responsividade
   ========================================= */

@media (max-width: 768px) {
    .coleta-header h1 {
        font-size: 2rem;
    }
    
    .coleta-grid {
        grid-template-columns: 1fr; /* Um card por linha no mobile */
    }
}