/* Rodapé Correios - Estilo Oficial */
footer {
    background: url('https://rastreamento.correios.com.br/core/templates/bunker/img/bg-amarelo.svg') no-repeat bottom right;
    background-size: 425px 120px;
    background-color: #FFE600;
    padding: 40px 0;
    margin-top: 50px;
    font-family: 'Roboto', sans-serif;
}

.recipiente.largura-maxima {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
    text-align: left;
}

.rodape-links {
    flex: 1;
    min-width: 280px;
}

.rodape-links h2 {
    color: #003157;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.lista-icone {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-icone li {
    margin-bottom: 15px;
}

.lista-icone a {
    color: #003157;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
}

.lista-icone a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.icones-link {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.lista-icone span {
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
    .recipiente.largura-maxima {
        flex-direction: column;
        gap: 30px;
    }
    
    .rodape-links {
        min-width: 100%;
        text-align: left;
    }
    
    .rodape-links h2 {
        text-align: left;
        font-size: 22px;
    }
    
    .lista-icone a {
        justify-content: flex-start;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 0;
    }
    
    .recipiente.largura-maxima {
        padding: 0 15px;
        gap: 25px;
    }
    
    .rodape-links h2 {
        font-size: 20px;
    }
    
    .lista-icone a {
        font-size: 14px;
    }
    
    .icones-link {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}

/* Copyright */
.copyright {
    text-align: center;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    width: 100%;
}

/* Regras específicas removidas para evitar conflitos */

